@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

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

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%); }

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%); }

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%); }

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%); }

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity; }

.fade-in.mui-enter.mui-enter-active {
  opacity: 1; }

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity; }

.fade-out.mui-leave.mui-leave-active {
  opacity: 0; }

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0; }

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0; }

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0; }

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0; }

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0; }

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0; }

.slow {
  transition-duration: 750ms !important; }

.fast {
  transition-duration: 250ms !important; }

.linear {
  transition-timing-function: linear !important; }

.ease {
  transition-timing-function: ease !important; }

.ease-in {
  transition-timing-function: ease-in !important; }

.ease-out {
  transition-timing-function: ease-out !important; }

.ease-in-out {
  transition-timing-function: ease-in-out !important; }

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  transition-delay: 300ms !important; }

.long-delay {
  transition-delay: 700ms !important; }

.shake {
  animation-name: shake-7; }

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%); } }

.spin-cw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn); }
  100% {
    transform: rotate(0); } }

.spin-ccw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(1turn); } }

.wiggle {
  animation-name: wiggle-7deg; }

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    transform: rotate(0); } }

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms; }

.infinite {
  animation-iteration-count: infinite; }

.slow {
  animation-duration: 750ms !important; }

.fast {
  animation-duration: 250ms !important; }

.linear {
  animation-timing-function: linear !important; }

.ease {
  animation-timing-function: ease !important; }

.ease-in {
  animation-timing-function: ease-in !important; }

.ease-out {
  animation-timing-function: ease-out !important; }

.ease-in-out {
  animation-timing-function: ease-in-out !important; }

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  animation-delay: 300ms !important; }

.long-delay {
  animation-delay: 700ms !important; }

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* 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-.
     */
figcaption,
figure {
  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 */ }

/**
     * Add the correct display in IE.
     */
main {
  display: block; }

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

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

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0; }

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

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

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

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

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

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #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: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
     * Show the overflow in IE.
     */
button {
  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 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible; }

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

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
     * 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 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  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; }

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block; }

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

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block; }

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

.foundation-mq {
  font-family: "small=0em&medium=52.3125em&large=75em&xlarge=87.5em"; }

html {
  box-sizing: border-box;
  font-size: 95%; }

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

body {
  margin: 0;
  padding: 0;
  background: #F5F5F5;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #030303;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 6px; }

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 6px; }

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 6px;
  background: transparent;
  line-height: 1; }
  [data-whatinput='mouse'] button {
    outline: 0; }

pre {
  overflow: auto; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 77.63158rem;
  margin-right: auto;
  margin-left: auto; }
  .row::before, .row::after {
    display: table;
    content: ' '; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row .row {
    margin-right: -0.65789rem;
    margin-left: -0.65789rem; }
    @media print, screen and (min-width: 52.3125em) {
      .row .row {
        margin-right: -0.98684rem;
        margin-left: -0.98684rem; } }
    @media print, screen and (min-width: 75em) {
      .row .row {
        margin-right: -0.98684rem;
        margin-left: -0.98684rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row:not(.expanded) .row {
    max-width: none; }
  .row.gutter-small > .column, .row.gutter-small > .columns {
    padding-right: 0.65789rem;
    padding-left: 0.65789rem; }
  .row.gutter-medium > .column, .row.gutter-medium > .columns {
    padding-right: 0.98684rem;
    padding-left: 0.98684rem; }
  .row.gutter-large > .column, .row.gutter-large > .columns {
    padding-right: 0.98684rem;
    padding-left: 0.98684rem; }
  .row.gutter-xlarge > .column, .row.gutter-xlarge > .columns {
    padding-right: 0.98684rem;
    padding-left: 0.98684rem; }

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.65789rem;
  padding-left: 0.65789rem; }
  @media print, screen and (min-width: 52.3125em) {
    .column, .columns {
      padding-right: 0.98684rem;
      padding-left: 0.98684rem; } }
  @media print, screen and (min-width: 75em) {
    .column, .columns {
      padding-right: 0.98684rem;
      padding-left: 0.98684rem; } }
  @media screen and (min-width: 87.5em) {
    .column, .columns {
      padding-right: 0.98684rem;
      padding-left: 0.98684rem; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.33333%; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.66667%; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.28571%; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0; }

.small-collapse .row {
  margin-right: 0;
  margin-left: 0; }

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.65789rem;
  padding-left: 0.65789rem; }

.small-centered {
  margin-right: auto;
  margin-left: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0; }

@media print, screen and (min-width: 52.3125em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.98684rem;
    padding-left: 0.98684rem; }
  .medium-centered {
    margin-right: auto;
    margin-left: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

@media print, screen and (min-width: 75em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.98684rem;
    padding-left: 0.98684rem; }
  .large-centered {
    margin-right: auto;
    margin-left: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

.column-block {
  margin-bottom: 1.31579rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 52.3125em) {
    .column-block {
      margin-bottom: 1.97368rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }
  @media print, screen and (min-width: 75em) {
    .column-block {
      margin-bottom: 1.97368rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }
  @media screen and (min-width: 87.5em) {
    .column-block {
      margin-bottom: 1.97368rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.7;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 100%;
  line-height: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #dfe3e8; }

h1 {
  font-size: 1.57895rem;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h2 {
  font-size: 1.31579rem;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h4 {
  font-size: 1.18421rem;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h5 {
  font-size: 1.11842rem;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h6 {
  font-size: 1.05263rem;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 0.5rem; }

@media print, screen and (min-width: 52.3125em) {
  h1 {
    font-size: 2.63158rem; }
  h2 {
    font-size: 1.97368rem; }
  h3 {
    font-size: 1.57895rem; }
  h4 {
    font-size: 1.31579rem; }
  h5 {
    font-size: 1.05263rem; }
  h6 {
    font-size: 1.05263rem; } }

@media print, screen and (min-width: 75em) {
  h1 {
    font-size: 3.61842rem; }
  h2 {
    font-size: 2.63158rem; }
  h3 {
    font-size: 1.57895rem; }
  h4 {
    font-size: 1.31579rem; }
  h5 {
    font-size: 1.05263rem; }
  h6 {
    font-size: 1.05263rem; } }

a {
  line-height: inherit;
  color: #1483CE;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #1171b1; }
  a img {
    border: 0; }

hr {
  clear: both;
  max-width: 77.63158rem;
  height: 0;
  margin: 1.31579rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #dfe3e8;
  border-left: 0; }

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.7; }

li {
  font-size: inherit; }

ul {
  margin-left: 1.25rem;
  list-style-type: disc; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0 0 1rem;
  padding: 0.59211rem 1.31579rem 0 1.25rem;
  border-left: 1px solid #FD7A23; }
  blockquote, blockquote p {
    line-height: 1.7;
    color: #FD7A23; }

cite {
  display: block;
  font-size: 1.18421rem;
  color: #637381; }
  cite:before {
    content: "— "; }

abbr {
  border-bottom: 1px dotted #030303;
  color: #030303;
  cursor: help; }

figure {
  margin: 0; }

code {
  padding: 0.13158rem 0.32895rem 0.06579rem;
  border: 1px solid #dfe3e8;
  background-color: #F4F4F4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #030303; }

kbd {
  margin: 0;
  padding: 0.13158rem 0.26316rem 0;
  background-color: #F4F4F4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #030303;
  border-radius: 6px; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #637381; }

.lead {
  font-size: 118.75%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

@media print, screen and (min-width: 52.3125em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media print, screen and (min-width: 75em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #637381;
    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; }
  .print-break-inside {
    page-break-inside: auto; } }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.56579rem;
  margin: 0 0 1.05263rem;
  padding: 0.52632rem;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: inset 0 1px 2px rgba(3, 3, 3, 0.1);
  font-family: inherit;
  font-size: 1.05263rem;
  font-weight: normal;
  color: #030303;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: 1px solid #637381;
    background-color: #FFFFFF;
    box-shadow: 0 0 5px #dfe3e8;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #dfe3e8; }

input::placeholder,
textarea::placeholder {
  color: #dfe3e8; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #F4F4F4;
  cursor: not-allowed; }

[type='submit'],
[type='button'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 6px; }

input[type='search'] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1.05263rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.52632rem;
  margin-right: 1.05263rem;
  margin-bottom: 0; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
    cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.52632rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.92105rem;
  font-weight: normal;
  line-height: 1.8;
  color: #030303; }
  label.middle {
    margin: 0 0 1.05263rem;
    padding: 0.59211rem 0; }

.help-text {
  margin-top: -0.52632rem;
  font-size: 0.85526rem;
  font-style: italic;
  color: #030303; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1.05263rem; }
  .input-group > :first-child {
    border-radius: 6px 0 0 6px; }
  .input-group > :last-child > * {
    border-radius: 0 6px 6px 0; }

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #dfe3e8;
  background: #F4F4F4;
  color: #030303;
  text-align: center;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.63158rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button,
  .input-group-button label {
    height: 2.63158rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.05263rem; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

legend {
  max-width: 100%;
  margin-bottom: 0.52632rem; }

.fieldset {
  margin: 1.18421rem 0;
  padding: 1.31579rem;
  border: 1px solid #dfe3e8; }
  .fieldset legend {
    margin: 0;
    margin-left: -0.19737rem;
    padding: 0 0.19737rem;
    background: #F5F5F5; }

select {
  height: 2.56579rem;
  margin: 0 0 1.05263rem;
  padding: 0.52632rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background-color: #FFFFFF;
  font-family: inherit;
  font-size: 1.05263rem;
  line-height: normal;
  color: #030303;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2899, 115, 129%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.05263rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.57895rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:focus {
    outline: none;
    border: 1px solid #637381;
    background-color: #FFFFFF;
    box-shadow: 0 0 5px #dfe3e8;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  select:disabled {
    background-color: #F4F4F4;
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  border-color: #FEFEFE;
  background-color: white; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #FEFEFE; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #FEFEFE; }

.is-invalid-label {
  color: #FEFEFE; }

.form-error {
  display: none;
  margin-top: -0.52632rem;
  margin-bottom: 1.05263rem;
  font-size: 0.78947rem;
  font-weight: bold;
  color: #FEFEFE; }
  .form-error.is-visible {
    display: block; }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #FD7A23;
  color: #FFFFFF; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #f36202;
    color: #FFFFFF; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.025rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #1483CE;
    color: #030303; }
    .button.primary:hover, .button.primary:focus {
      background-color: #1069a5;
      color: #030303; }
  .button.secondary {
    background-color: #767676;
    color: #FFFFFF; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #5e5e5e;
      color: #FFFFFF; }
  .button.success {
    background-color: #3adb76;
    color: #030303; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #030303; }
  .button.warning {
    background-color: #ffae00;
    color: #030303; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #030303; }
  .button.alert {
    background-color: #FEFEFE;
    color: #030303; }
    .button.alert:hover, .button.alert:focus {
      background-color: #cbcbcb;
      color: #030303; }
  .button.hollow {
    border: 1px solid #1483CE;
    color: #1483CE; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #0a4267;
      color: #0a4267; }
    .button.hollow.primary {
      border: 1px solid #1483CE;
      color: #1483CE; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0a4267;
        color: #0a4267; }
    .button.hollow.secondary {
      border: 1px solid #767676;
      color: #767676; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3b3b3b;
        color: #3b3b3b; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #FEFEFE;
      color: #FEFEFE; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #7f7f7f;
        color: #7f7f7f; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
      background-color: #1483CE;
      color: #FFFFFF; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #1483CE;
        color: #030303; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #767676;
        color: #FFFFFF; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #030303; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #030303; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #FEFEFE;
        color: #030303; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #FFFFFF transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em; }
  .button.dropdown.hollow::after {
    border-top-color: #FD7A23; }
  .button.dropdown.hollow.primary::after {
    border-top-color: #1483CE; }
  .button.dropdown.hollow.secondary::after {
    border-top-color: #767676; }
  .button.dropdown.hollow.success::after {
    border-top-color: #3adb76; }
  .button.dropdown.hollow.warning::after {
    border-top-color: #ffae00; }
  .button.dropdown.hollow.alert::after {
    border-top-color: #FEFEFE; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

.accordion {
  margin-left: 0;
  background: transparent;
  list-style-type: none; }

.accordion-item:first-child > :first-child {
  border-radius: 6px 6px 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 6px 6px; }

.accordion-title {
  position: relative;
  display: block;
  padding: 1.05rem 1rem 1.05rem 2.25rem;
  border: 0px solid #F4F4F4;
  border-bottom: 0;
  font-size: 0.78947rem;
  line-height: 1;
  color: #030303; }
  :last-child:not(.is-active) > .accordion-title {
    border-bottom: 0px solid #F4F4F4;
    border-radius: 0 0 6px 6px; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: transparent; }
  .accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: '+'; }
  .is-active > .accordion-title::before {
    content: '\2013'; }

.accordion-content {
  display: none;
  padding: 1rem;
  border: 0px solid #F4F4F4;
  border-bottom: 0;
  background-color: #F4F4F4;
  color: #030303; }
  :last-child > .accordion-content:last-child {
    border-bottom: 0px solid #F4F4F4; }

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none; }
  .breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' '; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    font-size: 0.72368rem;
    color: #030303;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      position: relative;
      top: 1px;
      margin: 0 0.75rem;
      opacity: 1;
      content: "/";
      color: #dfe3e8; }
  .breadcrumbs a {
    color: #1483CE; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #dfe3e8;
    cursor: not-allowed; }

.close-button {
  position: absolute;
  color: #637381;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #030303; }
  .close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1; }
  .close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 1.9rem 0rem 1rem 0;
    line-height: 1; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.55rem;
    display: inline-block; }
  .menu > li, .menu.horizontal > li {
    display: table-cell; }
  .menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.vertical > li {
    display: block; }
  @media print, screen and (min-width: 52.3125em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.medium-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.medium-vertical > li {
      display: block; } }
  @media print, screen and (min-width: 75em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.large-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple li {
    display: inline-block;
    vertical-align: top;
    line-height: 1; }
  .menu.simple a {
    padding: 0; }
  .menu.simple li {
    margin-left: 0;
    margin-right: 0rem; }
  .menu.simple.align-right li {
    margin-right: 0;
    margin-left: 0; }
  .menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.55rem; }
  .menu.icon-top.vertical a > span {
    margin: auto; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    background: transparent;
    color: #637381; }
  .menu.menu-bordered li {
    border: 1px solid #F4F4F4; }
    .menu.menu-bordered li:not(:first-child) {
      border-top: 0; }
  .menu.menu-hover li:hover {
    background-color: #0D6697; }

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 1.9rem 0rem 1rem 0;
  font-weight: bold;
  line-height: 1;
  color: inherit; }

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block;
    vertical-align: top; }

.no-js [data-responsive-menu] ul {
  display: none; }

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    box-shadow: 0 7px 0 #FFFFFF, 0 14px 0 #FFFFFF;
    content: ''; }
  .menu-icon:hover::after {
    background: #dfe3e8;
    box-shadow: 0 7px 0 #dfe3e8, 0 14px 0 #dfe3e8; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #030303;
    box-shadow: 0 7px 0 #030303, 0 14px 0 #030303;
    content: ''; }
  .menu-icon.dark:hover::after {
    background: #637381;
    box-shadow: 0 7px 0 #637381, 0 14px 0 #637381; }

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block; }
  .is-drilldown.animate-height {
    transition: height 0.5s; }

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #FFFFFF;
  transition: transform 0.15s linear; }
  .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%); }
  .is-drilldown-submenu.is-closing {
    transform: translateX(100%); }

.drilldown-submenu-cover-previous {
  min-height: 100%; }

.is-drilldown-submenu-parent > a {
  position: relative; }
  .is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1483CE;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1483CE transparent transparent;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  border-left-width: 0; }

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: block;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background-color: #F5F5F5;
  font-size: 1rem; }
  .dropdown-pane.is-open {
    visibility: visible; }

.dropdown-pane.tiny {
  width: 100px; }

.dropdown-pane.small {
  width: 200px; }

.dropdown-pane.large {
  width: 400px; }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #637381 transparent transparent;
  right: 5px;
  margin-top: -3px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #637381 transparent transparent; }

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #637381; }

@media print, screen and (min-width: 52.3125em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #637381 transparent transparent;
    right: 5px;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #637381 transparent transparent; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #637381; } }

@media print, screen and (min-width: 75em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #637381 transparent transparent;
    right: 5px;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #637381 transparent transparent; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #637381; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -6px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 250px;
  border: 1px solid #dfe3e8;
  background: #FFFFFF; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #637381 transparent transparent; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #637381; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1.05263rem;
  padding-bottom: 75%;
  overflow: hidden; }
  .responsive-embed iframe,
  .responsive-embed object,
  .responsive-embed embed,
  .responsive-embed video,
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .responsive-embed.widescreen,
  .flex-video.widescreen {
    padding-bottom: 56.25%; }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1483CE;
  color: #FFFFFF; }
  .label.primary {
    background: #1483CE;
    color: #030303; }
  .label.secondary {
    background: #767676;
    color: #FFFFFF; }
  .label.success {
    background: #3adb76;
    color: #030303; }
  .label.warning {
    background: #ffae00;
    color: #030303; }
  .label.alert {
    background: #FEFEFE;
    color: #030303; }

.media-object {
  display: block;
  margin-bottom: 1rem; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 52.25em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      display: block; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.is-off-canvas-open {
  overflow: hidden; }

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background: rgba(3, 3, 3, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }
  .js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible; }
  .js-off-canvas-overlay.is-closable {
    cursor: pointer; }
  .js-off-canvas-overlay.is-overlay-absolute {
    position: absolute; }
  .js-off-canvas-overlay.is-overlay-fixed {
    position: fixed; }

.off-canvas-wrapper {
  position: relative;
  overflow: hidden; }

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.8s ease;
  backface-visibility: hidden;
  background: #FFFFFF; }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.is-transition-overlap {
    z-index: 10; }
    .off-canvas.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(3, 3, 3, 0.7); }
  .off-canvas.is-open {
    transform: translate(0, 0); }

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  transition: transform 0.8s ease;
  backface-visibility: hidden;
  background: #FFFFFF; }
  [data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0; }
  .off-canvas-absolute.is-transition-overlap {
    z-index: 10; }
    .off-canvas-absolute.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(3, 3, 3, 0.7); }
  .off-canvas-absolute.is-open {
    transform: translate(0, 0); }

.position-left {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  overflow-y: auto; }
  .position-left.is-open ~ .off-canvas-content {
    transform: translateX(100%); }
  .position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(3, 3, 3, 0.7);
    content: " "; }
  .position-left.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-right {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  overflow-y: auto; }
  .position-right.is-open ~ .off-canvas-content {
    transform: translateX(-100%); }
  .position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(3, 3, 3, 0.7);
    content: " "; }
  .position-right.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto; }
  .position-top.is-open ~ .off-canvas-content {
    transform: translateY(250px); }
  .position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(3, 3, 3, 0.7);
    content: " "; }
  .position-top.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto; }
  .position-bottom.is-open ~ .off-canvas-content {
    transform: translateY(-250px); }
  .position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(3, 3, 3, 0.7);
    content: " "; }
  .position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.off-canvas-content {
  transition: transform 0.8s ease;
  backface-visibility: hidden; }

@media print, screen and (min-width: 52.3125em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 100%; }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 100%; }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-top.reveal-for-medium ~ .off-canvas-content {
      margin-top: 100%; }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-bottom.reveal-for-medium ~ .off-canvas-content {
      margin-bottom: 100%; } }

@media print, screen and (min-width: 75em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 100%; }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 100%; }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-top.reveal-for-large ~ .off-canvas-content {
      margin-top: 100%; }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-bottom.reveal-for-large ~ .off-canvas-content {
      margin-bottom: 100%; } }

.orbit {
  position: relative; }

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden; }

.orbit-slide {
  width: 100%; }
  .orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0; }

.orbit-figure {
  margin: 0; }

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0; }

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(3, 3, 3, 0.5);
  color: #FFFFFF; }

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #FFFFFF; }
  [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0; }
  .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(3, 3, 3, 0.5); }

.orbit-previous {
  left: 0; }

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

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center; }
  [data-whatinput='mouse'] .orbit-bullets {
    outline: 0; }
  .orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #dfe3e8; }
    .orbit-bullets button:hover {
      background-color: #637381; }
    .orbit-bullets button.is-active {
      background-color: #637381; }

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' '; }
  .pagination::after {
    clear: both; }
  .pagination li {
    margin-right: 0.06579rem;
    border-radius: 6px;
    font-size: 1.18421rem;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media print, screen and (min-width: 52.3125em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    display: block;
    padding: 0.19737rem 0.65789rem;
    border-radius: 6px;
    color: #030303; }
    .pagination a:hover,
    .pagination button:hover {
      background: #F4F4F4; }
  .pagination .current {
    padding: 0.19737rem 0.65789rem;
    background: #FD7A23;
    color: #FFFFFF;
    cursor: default; }
  .pagination .disabled {
    padding: 0.19737rem 0.65789rem;
    color: #dfe3e8;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    padding: 0.19737rem 0.65789rem;
    content: '\2026';
    color: #030303; }

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab'; }

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb'; }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #FFFFFF;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #FFFFFF;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 6px;
  background-color: #1483CE;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #116faf; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%); }

.sticky-container {
  position: relative; }

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

body.is-reveal-open {
  overflow: hidden; }

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(244, 244, 244, 0.95);
  overflow-y: scroll; }

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #dfe3e8;
  border-radius: 0;
  background-color: #FFFFFF;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media print, screen and (min-width: 52.3125em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 52.3125em) {
    .reveal {
      width: 700px;
      max-width: 77.63158rem; } }
  @media print, screen and (min-width: 52.3125em) {
    .reveal .reveal {
      right: auto;
      left: auto;
      margin: 0 auto; } }
  .reveal.collapse {
    padding: 0; }
  @media print, screen and (min-width: 52.3125em) {
    .reveal.tiny {
      width: 30%;
      max-width: 77.63158rem; } }
  @media print, screen and (min-width: 52.3125em) {
    .reveal.small {
      width: 50%;
      max-width: 77.63158rem; } }
  @media print, screen and (min-width: 52.3125em) {
    .reveal.large {
      width: 90%;
      max-width: 77.63158rem; } }
  .reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 52.25em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      max-width: none;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.92105rem;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0; }

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 6px;
  background: #dfe3e8;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 6px;
    background: #FFFFFF;
    transition: all 0.25s ease-out;
    content: ''; }
  input:checked ~ .switch-paddle {
    background: #1483CE; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny {
  height: 1.5rem; }
  .switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.65789rem; }
  .switch.tiny .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem; }
  .switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem; }

.switch.small {
  height: 1.75rem; }
  .switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.78947rem; }
  .switch.small .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem; }
  .switch.small input:checked ~ .switch-paddle::after {
    left: 2rem; }

.switch.large {
  height: 2.5rem; }
  .switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1.05263rem; }
  .switch.large .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 2rem;
    height: 2rem; }
  .switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem; }

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 6px; }
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f2f2f2;
    background-color: #FFFFFF; }
  table caption {
    padding: 0.52632rem 0.65789rem 0.65789rem;
    font-weight: bold; }
  table thead {
    background: #f9f9f9;
    color: #030303; }
  table tfoot {
    background: #f2f2f2;
    color: #030303; }
  table thead tr,
  table tfoot tr {
    background: transparent; }
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding: 0.52632rem 0.65789rem 0.65789rem;
    font-weight: bold;
    text-align: left; }
  table tbody th,
  table tbody td {
    padding: 0.52632rem 0.65789rem 0.65789rem; }
  table tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f2f2f2; }
  table.unstriped tbody {
    background-color: #FFFFFF; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f2f2f2;
      background-color: #FFFFFF; }

@media screen and (max-width: 74.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover thead tr:hover {
  background-color: #f4f4f4; }

table.hover tfoot tr:hover {
  background-color: #ededed; }

table.hover tbody tr:hover {
  background-color: #fafafa; }

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ededed; }

.table-scroll {
  overflow-x: auto; }
  .table-scroll table {
    width: auto; }

.tabs {
  margin: 0;
  border: 1px solid none;
  background: #dfe3e8;
  list-style-type: none; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' '; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #1483CE; }
  .tabs.primary > li > a {
    color: #030303; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #137cc4; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1rem 1rem;
    font-size: 1.05263rem;
    line-height: 1;
    color: #1483CE; }
    .tabs-title > a:hover {
      background: #0071BF;
      color: #1171b1; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #1483CE;
      color: #FFFFFF; }

.tabs-content {
  border: 1px solid none;
  border-top: 0;
  background: #F4F4F4;
  color: #030303;
  transition: all 0.5s ease; }

.tabs-content.vertical {
  border: 1px solid none;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 0rem; }
  .tabs-panel[aria-hidden="false"] {
    display: block; }

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(3, 3, 3, 0.2);
  line-height: 0; }

a.thumbnail {
  transition: box-shadow 200ms ease-out; }
  a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(20, 131, 206, 0.5); }
  a.thumbnail image {
    box-shadow: none; }

.title-bar {
  padding: 0.5rem;
  background: #030303;
  color: #FFFFFF; }
  .title-bar::before, .title-bar::after {
    display: table;
    content: ' '; }
  .title-bar::after {
    clear: both; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }

.title-bar-left {
  float: left; }

.title-bar-right {
  float: right;
  text-align: right; }

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold; }

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: none;
  font-weight: bold;
  cursor: help; }

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 1.25rem;
  border-radius: 6px;
  background-color: #222222;
  font-size: 100%;
  color: #FFFFFF; }
  .tooltip::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #222222;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #222222 transparent transparent;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #222222;
    top: 50%;
    bottom: auto;
    left: 100%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #222222 transparent transparent;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%); }

.top-bar {
  padding: 0.5rem 0; }
  .top-bar::before, .top-bar::after {
    display: table;
    content: ' '; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: #030303; }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media print, screen and (min-width: 52.3125em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 87.4375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.45rem 1rem 0 1rem; }
  .top-bar-title .menu-icon {
    bottom: 2px; }

.top-bar-left {
  float: left; }

.top-bar-right {
  float: right; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 52.25em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 52.3125em) {
  .show-for-small-only {
    display: none !important; } }

@media print, screen and (min-width: 52.3125em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 52.25em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 52.25em), screen and (min-width: 75em) {
  .show-for-medium-only {
    display: none !important; } }

@media print, screen and (min-width: 75em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 74.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 75em) and (max-width: 87.4375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 74.9375em), screen and (min-width: 87.5em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

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

.clearfix::before, .clearfix::after {
  display: table;
  content: ' '; }

.clearfix::after {
  clear: both; }

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

Stylesheet: Main Stylesheet

*************************************************/
#post-not-found {
  padding: 2rem; }

/*********************
GENERAL STYLES
*********************/
.material-icons {
  font-size: 16px;
  vertical-align: middle;
  padding-bottom: 0.2rem; }

blockquote {
  font-size: 1.85rem; }
  blockquote strong {
    font-size: 1.1rem; }

span.whiteborder {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 0.5rem; }

.button {
  font-weight: bold; }

.entry-content pre {
  margin-bottom: 1rem; }

.divvids {
  position: relative; }

.sticky.is-stuck {
  z-index: 0; }

.padzes {
  padding: 0 10%; }

.whitebg {
  background: #FFFFFF; }

.telsmartfadein.is-visible {
  opacity: 1;
  transform: translateY(0); }

.telsmartfadein {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.42, 0, 0.22, 0.96), opacity 0.3s cubic-bezier(0.42, 0, 0.22, 0.96);
  transition: transform 0.3s cubic-bezier(0.42, 0, 0.22, 0.96), opacity 0.3s cubic-bezier(0.42, 0, 0.22, 0.96), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.22, 0.96);
  transition-delay: 0.1s;
  z-index: 4; }

/*********************
LINK STYLE
*********************/
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/**/
/* elementor */
.elementor-section .elementor-container {
  width: 100%; }

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 strong, .h1 strong, h2 strong, .h2 strong, h3 strong, .h3 strong, h4 strong, .h4 strong, h5 strong, .h5 strong {
  font-weight: 900; }

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

h1, .h1 {
  font-weight: 600;
  line-height: 3.5rem; }

h2, .h2 {
  font-weight: 700; }

.page-title {
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem; }

#breadcrumbs {
  font-size: 0.85rem; }

.svg-inline--fa {
  margin: 3px 0 0 0.25rem; }

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
  list-style: none; }

.subnav .row {
  padding: 0.75rem 0.98684rem 0 0.98684rem; }
  .subnav .row h2 {
    font-size: 1.75rem;
    float: left;
    display: inline-block;
    color: #030303; }

.subnav .row:after {
  border-bottom: 1px solid rgba(34, 34, 34, 0.4);
  content: "";
  display: block; }

.flow-block.is-visible {
  opacity: 1;
  transform: translateY(0); }

.flow-block {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.42, 0, 0.22, 0.96), opacity 0.5s cubic-bezier(0.42, 0, 0.22, 0.96);
  transition: transform 0.5s cubic-bezier(0.42, 0, 0.22, 0.96), opacity 0.5s cubic-bezier(0.42, 0, 0.22, 0.96), -webkit-transform 0.5s cubic-bezier(0.42, 0, 0.22, 0.96);
  transition-delay: .2s;
  z-index: 4; }

#pageloader {
  height: 100vh;
  position: absolute;
  left: 0;
  top: 110px;
  z-index: 9999;
  width: 100%; }

#talen h4 {
  margin: 1rem 0 2rem 0; }

/*********************
HOOFDING FIXED
*********************/
@media print, screen and (min-width: 75em) {
  .home .top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999; }
  .home #content {
    margin-top: 100px; } }

.subnavfixed .subnav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  opacity: 0.95; }

.subnavfixed .subnav .row {
  padding-top: 0.50rem;
  padding-bottom: 0.25rem; }

.subnavfixed .subnav .row:after {
  border-bottom: none !important; }

.subnavfixed .homeblock {
  margin-top: 60px; }

/*********************
FOUNDATION STYLES
*********************/
.button.hollow {
  border: 2px solid; }

.button.hollow:hover {
  background: #0D6697;
  color: #FFFFFF; }

.tabs {
  border-bottom: 2px solid #dfe3e8; }

.tabs-title > a:hover {
  background: #dfe3e8;
  color: #1483CE; }

.tabstart a {
  background: #222222;
  color: #FFFFFF;
  color: #FFFFFF; }

.tooltip {
  max-width: 20rem !important;
  text-align: center; }

/*********************
CONTENT STYLES
*********************/
#content #inner-content {
  padding: 2rem 0;
  min-height: 650px; }

/* cta blocks */
#cta {
  padding: 5rem 0;
  font-size: 1.25rem; }
  #cta h3 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 3rem;
    margin-bottom: 1rem; }
  #cta a.button {
    margin-top: 1rem;
    color: #FFFFFF;
    padding: 1.25rem 1rem;
    font-weight: 600; }
  #cta a.button:after {
    font-family: typicons;
    content: "\e01a";
    padding-left: 1rem;
    font-size: 1.25rem; }

.logo-block {
  background: #FFFFFF;
  padding: 4rem 0; }

/*********************
TEMPLATES
*********************/
.error404 #content #inner-content {
  padding-bottom: 2px;
  background-color: #FFFFFF; }

/* standaard pagina v1 */
.page-template-template-page-fw1 #home-header, .page-template-default #home-header {
  padding: 0rem;
  background: #030303;
  background-repeat: no-repeat;
  background-position: center center; }
  .page-template-template-page-fw1 #home-header h1, .page-template-template-page-fw1 #home-header h2, .page-template-template-page-fw1 #home-header h3, .page-template-default #home-header h1, .page-template-default #home-header h2, .page-template-default #home-header h3 {
    color: #FFFFFF; }
  .page-template-template-page-fw1 #home-header .homeblock, .page-template-default #home-header .homeblock {
    padding: 10rem 0 10rem; }

/*********************
REFERENTIE MAPS
*********************/
.map-container h4 {
  text-align: center;
  padding: 2rem 0 1rem;
  font-weight: 500;
  text-transform: none; }

.map-container .address {
  color: #FD7A23;
  font-size: 1.5rem; }

.acf-map {
  width: 100%;
  height: 800px;
  border: #dfe3e8 solid 1px;
  margin: 20px 0; }
  .acf-map h4 {
    text-transform: capitalize;
    text-align: left;
    padding: 0; }

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important; }

.page-template-template-customers #home-header {
  padding: 12rem 0 20rem; }
  .page-template-template-customers #home-header h1 {
    color: #FFFFFF; }

.page-template-template-customers .reflist {
  padding: 1rem;
  border-bottom: 1px solid #dfe3e8; }
  .page-template-template-customers .reflist h4 {
    font-weight: 600; }
  .page-template-template-customers .reflist p {
    margin-bottom: 0; }

/*********************
REVIEWS
*********************/
#home-reviews {
  padding: 5rem 0;
  background: #FFFFFF;
  position: relative; }
  #home-reviews .bx-wrapper, #home-reviews .bx-viewport {
    height: 200px !important; }

.review-block {
  padding: 0;
  position: relative; }
  .review-block h5 {
    padding: 0.5rem 2rem 0 2rem;
    font-weight: 700;
    color: #222222; }

.review-text {
  background: #F4F4F4;
  border-radius: 6px;
  padding: 1.5rem 2rem;
  font-style: italic;
  font-size: 1.15rem;
  color: #637381;
  height: 145px; }

.speacharrow {
  position: absolute;
  right: 10px;
  bottom: 20px; }

.review-stars {
  color: #FFAE00;
  padding: 0 2rem; }
  .review-stars .svg-inline--fa {
    margin: 0.05rem;
    font-size: 0.8rem; }
  .review-stars .rw {
    font-size: 0.8rem;
    font-weight: bold; }
  .review-stars .facebook {
    color: #3b5998; }
  .review-stars .google {
    color: #d62d20; }

.review-stars-big {
  color: #FFAE00;
  margin-bottom: 2rem; }
  .review-stars-big .svg-inline--fa {
    margin: 0.05rem;
    font-size: 1.5rem; }
  .review-stars-big span {
    font-size: 1.5rem;
    margin-right: 1rem; }
  .review-stars-big .rw {
    font-size: 1.5rem;
    font-weight: bold; }

.facebookbg {
  background-color: #3b5998 !important;
  color: #FFFFFF; }

.facebookrow {
   margin-bottom: 2rem; }

.googlebg {
  background-color: #d62d20 !important;
  color: #FFFFFF; }

.googlerow {
  margin-top: 2rem; }

.googlerow h3, .facebookrow h3 {
  font-weight: 600; }

.reviewslider {
  overflow: hidden; }
  .reviewslider .slideblock {
    float: left; }

.facebookr a {
  color: #3b5998 !important; }

.facebookr a:hover {
  text-decoration: underline !important; }

.googler a {
  color: #d62d20 !important; }

.googler a:hover {
  text-decoration: underline; }

/**************/
/* VIDEO */
/**************/
.videoblocks {
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 2rem;
  color: #0071BF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .videoblocks .video {
    border-right: 1px solid #dfe3e8;
    border-bottom: 1px solid #dfe3e8;
    padding: 2rem 1rem;
    margin: 0rem;
    width: 33%; }
  .videoblocks .video:hover {
    cursor: pointer;
    background: #dfe3e8; }
  .videoblocks h4 {
    padding: 1.5rem 0.5rem; }
  .videoblocks .videoplay {
    height: 100px; }
  .videoblocks .video:nth-child(3n+3) {
    border-right: 0; }
  .videoblocks .video:nth-last-child(-n+3) {
    border-bottom: 0; }

.videoh3 {
  background: #0071BF;
  color: #FFFFFF;
  font-weight: 900;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem 0 0; }

.page-template-template-video #home-header {
  padding: 0rem;
  background-image: url("../images/itpacks-header-large.jpg");
  background-repeat: no-repeat;
  background-position: center bottom; }

.page-template-template-video #pagemenu li > a {
  color: #222222; }

.page-template-template-video .navbutton a {
  color: #FFFFFF !important; }

/**********************/
/* STANDAARD PAGINAS */
/*********************/
#page-header {
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden; }
  #page-header h1, #page-header h3 {
    color: #FFFFFF;
    z-index: 999;
    position: relative; }
  #page-header h1 {
    font-size: 3rem;
    letter-spacing: 0.2rem;
    line-height: 3.55rem;
    margin: 0rem 0 1rem; }
  #page-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0; }

/**********************/
/* PRIVACY POLICY */
/*********************/
.page-template-template-policy #home-header h1 {
  color: #FFFFFF; }

.page-template-template-policy h3 {
  font-weight: 700;
  color: #FD7A23; }

.page-template-template-policy h4 {
  font-weight: bold; }

.page-template-template-policy .tab-titles {
  padding: 1rem;
  background: #dfe3e8; }

.page-template-template-policy .tabs-panel {
  padding: 1rem;
  border: 1px solid #dfe3e8; }

.page-template-template-policy .tabs-title > a:hover {
  background: #F4F4F4; }

/*********************
POSTS STYLES
*********************/
.blog #home-header {
  padding: 4rem 0 4rem; }

.archive-grid h3 {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.25rem 0; }

.archive-grid h3 a {
  color: #030303; }

.archive-grid h3 a:hover {
  color: #1483CE; }

.archive-grid a img:hover {
  opacity: 0.7; }

.archive-grid .excerpt-read-more {
  display: none; }

.archive-grid article {
  height: 100%; }

.archive-grid .readmore:after {
  font-family: typicons;
  content: "\e01a";
  padding-left: 0.25rem; }

.singleblogcontent {
  background: #FFFFFF;
  padding: 0.75rem;
  margin-bottom: 3rem; }

#blog-content {
  background: #F4F4F4;
  padding: 1rem 3%; }
  #blog-content h2 {
    font-size: 1.75rem; }
  #blog-content h2 a {
    color: #030303; }
  #blog-content h2 a:hover {
    text-decoration: underline; }

.postmeta {
  margin-bottom: 1rem;
  overflow: hidden; }

.single-post h1 {
  font-size: 2.35rem;
  margin-bottom: 1rem !important; }

.single-post h2 {
  font-size: 1.65rem; }

.single-post h3 {
  font-size: 1.55rem; }

#sidebar1 .widget {
  margin-bottom: 1rem; }

.byline {
  font-size: 0.9rem;
  margin-bottom: 0rem; }
  .byline a {
    color: #637381; }

.comments-title {
  font-weight: bold; }

#blog-header {
  background: #FFFFFF;
  padding: 3rem 9%; }
  #blog-header h4 {
    margin-bottom: 2rem; }

.single h1 {
  margin-bottom: 2rem; }

.single .article-header {
  margin-bottom: 3rem; }

.single .entry-content {
  font-size: 1.20rem;
  margin-bottom: 3rem; }
  .single .entry-content p {
    line-height: 1.9rem; }
  .single .entry-content a {
    color: #1483CE;
    text-decoration: underline; }
  .single .entry-content a:hover {
    color: #FD7A23; }
  .single .entry-content h6.socialshare {
    font-style: italic !important; }

.single .attachment-blogimg {
  margin-bottom: 2rem; }

.single .related_posts {
  padding: 1rem;
  border: 1px solid #dfe3e8;
  margin-bottom: 2rem; }
  .single .related_posts h6 {
    font-weight: bold; }
  .single .related_posts a:hover {
    text-decoration: underline; }

.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content img {
  max-width: 100%;
  height: auto; }

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

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

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

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

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #FD7A23;
  color: #FFFFFF; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #f36202;
    color: #FFFFFF; }

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 3rem;
  display: block;
  clear: both;
  text-align: center; }

/*********************
SIDEBAR
*********************/
/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

#respond #reply-title {
  display: none; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  color: #FFFFFF; }

#inner-footer {
  background: #222222;
  padding: 3% 6%; }
  #inner-footer h4 {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1.25rem; }
  #inner-footer li {
    display: block; }
  #inner-footer a {
    color: #FFFFFF; }
  #inner-footer li a {
    padding: 0.5rem 0;
    margin: 0;
    font-weight: 300;
    display: block;
    border-bottom: none;
    font-size: 0.95rem;
    color: #FFFFFF;
    opacity: 0.85; }
  #inner-footer li a:hover {
    opacity: 1;
    color: #FFFFFF; }
  #inner-footer .textwidget {
    opacity: 0.7; }
  #inner-footer .menu .active > a {
    background: none; }

#outer-footer {
  background: #000;
  padding: 1% 6%;
  color: #dfe3e8; }

span#cn-notice-text {
  float: left;
  text-align: left; }

span#cn-notice-text p {
  font-size: 15px;
  margin-bottom: 0; }

.cookie-notice-container {
  padding: 1rem; }

.cookie-notice-container .cn-more-info {
  background: #0D6697; }

/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
/* grvaity forms */
.gform_body ul {
  list-style: none outside none;
  margin: 0; }
  .gform_body ul [type='text']:focus, .gform_body ul [type='password']:focus, .gform_body ul [type='date']:focus, .gform_body ul [type='datetime']:focus, .gform_body ul [type='datetime-local']:focus, .gform_body ul [type='month']:focus,
  .gform_body ul [type='week']:focus, .gform_body ul [type='email']:focus, .gform_body ul [type='number']:focus, .gform_body ul [type='search']:focus, .gform_body ul [type='tel']:focus, .gform_body ul [type='time']:focus,
  .gform_body ul [type='url']:focus, .gform_body ul [type='color']:focus, .gform_body ul textarea:focus {
    border: 2px solid #C9E1CB; }

form h2 {
  font-size: 1.15rem;
  margin-top: 1rem;
  display: table; }

.red {
  color: #0071BF;
  font-size: 0.9rem; }

h2.gsection_title {
  color: #0071BF !important; }

.gform_wrapper {
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #dfe3e8; }

.gform_wrapper .top_label div.ginput_container {
  margin-top: 0px !important; }

.validation_error {
  text-align: center;
  padding: 1rem 0;
  border-top: 2px dotted #1483CE;
  border-bottom: 2px dotted #1483CE;
  color: #1483CE;
  font-weight: bold;
  margin-bottom: 1rem; }

.gfield_label, .gform_button {
  font-weight: bold;
  font-size: 1rem !important;
  margin-top: 0.75rem; }

.ginput_container_radio label {
  font-size: 1rem; }

.gf_third {
  float: left;
  width: 32%;
  margin-right: 1%; }

.gf_third .ginput_container_time {
  float: left;
  width: 44%;
  margin-right: 1%; }

.gf_third .ginput_container_time i, .gf_repeater_title {
  display: none; }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'],
[type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  margin-bottom: 0.5rem;
  border: 2px solid #dfe3e8;
  box-shadow: none; }

[type='file'], [type='checkbox'], [type='radio'] {
  margin: 0 0 0.5rem; }

.validation_message {
  color: #FD7A23;
  margin-bottom: 1rem;
  border-bottom: 1px solid #FD7A23;
  font-style: italic;
  display: inline-block; }

@media only screen and (min-width: 641px) {
  div.ginput_container_name span {
    width: 48%;
    float: left;
    margin-right: 2%; } }

.ui-datepicker table {
  width: 100%; }

.ui-datepicker-header {
  background: #222222;
  color: #FFFFFF; }

.ui-datepicker-title {
  text-align: center;
  font-size: 15px; }

.ui-datepicker-prev {
  float: left;
  cursor: pointer;
  background-position: center -30px; }

.ui-datepicker-next {
  float: right;
  cursor: pointer;
  background-position: center 0px; }

.ui-datepicker thead {
  background-color: #222222;
  /*border-bottom: 1px solid #bbb;*/ }

.ui-datepicker th {
  background-color: #222222;
  text-transform: uppercase;
  font-size: 8pt;
  color: #FFFFFF;
  /*text-shadow: 1px 0px 0px #fff;*/
  /*filter: dropshadow(color=#fff, offx=1, offy=0);*/ }

.ui-datepicker tbody td {
  padding: 0;
  /*border-right: 1px solid #808080;*/ }

.ui-datepicker tbody td:last-child {
  border-right: 0px; }

.ui-datepicker a {
  text-decoration: none;
  color: #FFFFFF; }

.ui-datepicker td span, .ui-datepicker td a {
  display: inline-block;
  /*font-weight: bold;*/
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #FFFFFF;
  /*text-shadow: 1px 1px 0px #fff;*/
  /*filter: dropshadow(color=#fff, offx=1, offy=1);*/ }

#ui-datepicker-div {
  background: #030303; }

.ui-datepicker-calendar tbody, .ui-datepicker-calendar tr {
  background: #030303 !important;
  border: none; }

.ui-datepicker-calendar .ui-state-default {
  background: #222222;
  color: #FFFFFF;
  height: 20px;
  width: 20px; }

.ui-datepicker-title select {
  width: 48%; }

.ui-datepicker-calendar .ui-state-hover {
  background: #0071BF;
  color: #FFFFFF; }

.ui-datepicker-calendar .ui-state-active {
  background: #FD7A23;
  color: #FFFFFF;
  position: relative;
  margin: -1px; }

.ui-datepicker-unselectable .ui-state-default {
  background: #222222;
  color: #dfe3e8; }

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

Stylesheet: Navigation

*************************************************/
.top-bar {
  padding: 0;
  height: 105px;
  background: #FFFFFF; }
  .top-bar .title-area {
    z-index: 1; }
  .top-bar a:hover {
    color: #637381; }
  .top-bar ul {
    margin-bottom: 0; }
  .top-bar i {
    font-size: 24px; }
  .top-bar button {
    font-size: 1.35rem; }
  .top-bar .current-page-ancestor a {
    color: #637381; }

.top-bar-sub {
  background: #030303; }
  .top-bar-sub a {
    color: #FFFFFF; }

.top-bar-left {
  margin-right: 1.45rem; }

#top-bar-logo {
  margin-top: 10px; }

.menu > li > a {
  margin: 0 1rem;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0.05rem;
  font-size: 1.05rem; }

/* child menu li */
ul.submenu {
  padding: 1rem 0; }

.submenu > li > a {
  padding: 0.75rem 1rem;
  border-bottom: none;
  font-size: 1.1rem;
  margin: 0;
  text-transform: none;
  color: #0D6697; }

.submenu > li a:hover {
  border-bottom: none;
  color: #0D6697; }

.submenu > li.active a, .submenu > li a {
  border-bottom: none !important; }

.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
  margin-top: 3px; }

.is-dropdown-submenu {
  box-shadow: 0 5px 30px 5px rgba(69, 79, 91, 0.2);
  border-radius: 6px;
  border: none; }

.dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
  z-index: 9999; }

li.mdienst a {
  font-size: 1.25rem; }

li.mdienst p {
  font-size: 0.9rem;
  color: #637381;
  margin-bottom: 0; }

.topbarmenu {
  margin-left: 0; }
  .topbarmenu li {
    list-style: none;
    padding: 0.30rem 0.55rem;
    display: inline-block;
    font-size: 0.85rem; }
  .topbarmenu svg {
     margin-left: 1.5rem; }
  .topbarmenu a:hover {
    text-decoration: underline;
    color: #FFFFFF; }
  .topbarmenu .lang {
    padding: 0.3rem 0 0.4rem 0.3rem; }

.flags a {
  font-size: 2rem !important;
  margin-top: 1rem; }

.is-dropdown-submenu-parent a::after {
  top: 49%; }

/* mega menu */
.mega-menu-item-type-widget a {
  text-decoration: none;
  display: grid;
  position: relative;
  top: 0;
  width: 100%;
  height: 100%; }

.mega-menu-item-type-widget .arrowright:after {
  font-family: typicons;
  content: "\e01b";
  padding-left: 0.5rem; }

.mega-menu-item-type-widget a:hover .arrowright:after {
  padding-left: 0.75rem; }

.mega-sub-menu {
  width: 350px !important; }
  .mega-sub-menu a {
    margin-bottom: 10px;
    transition: 0.45s;
    padding: 4px 10px; }
    .mega-sub-menu a h6 {
      color: #030303;
      margin: 0;
      padding: 0;
      font-weight: bold; }
  .mega-sub-menu a:hover span {
    text-decoration: underline; }
  .mega-sub-menu span {
    font-size: 0.8rem; }
  .mega-sub-menu h5 {
    padding: 0.75rem 0 0.5rem 10px;
    margin: 0;
    text-transform: uppercase;
    color: #FD7A23;
    font-size: 0.6rem;
    letter-spacing: 0.1rem; }

#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu {
  width: 330px; }

#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu.mega-menu-item {
  position: relative !important; }

.mega-sub-menu a:hover {
  transform: translate(-4px, 0px);
  border-right: 3px solid #FD7A23; }

div.menuarrow {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #dddddd;
  width: 0px;
  height: 0;
  position: absolute;
  top: -35px;
  left: 0px; }

.imgprod {
  width: 20px;
  height: auto;
  position: absolute;
  left: -24px;
  top: 8px; }

.aantaljobs {
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center; }
  .aantaljobs span {
    background-color: #0D6697;
    border-radius: 100%;
    top: 18px;
    width: 20px;
    height: 20px;
    position: absolute;
    color: #FFFFFF;
    left: -20px;
    top: 5px; }

.mobvac {
  position: relative; }

/* mobiele navigatie - off-canvas */
.mobbttn, .mobbttn-close {
  position: absolute;
  right: 20px;
  top: 45px;
  color: #030303; }

.callbttn {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #FFFFFF;
  font-size: 1.4rem; }

.position-right {
  width: 100%;
  transform: translateX(100%); }

.moblogo {
  margin-top: 10px;
  float: left; }

#off-canvas {
  padding: 0.5rem 1rem; }
  #off-canvas .top-bar {
    background: #FFFFFF; }
    #off-canvas .top-bar ul {
      background: #FFFFFF;
      margin-top: 1rem; }
    #off-canvas .top-bar a {
      color: #030303; }
    #off-canvas .top-bar .lang {
      float: left;
      padding: 0.5rem;
      font-size: 1rem; }
    #off-canvas .top-bar .lang a {
      color: #222222;
      font-weight: bold;
      padding: 1rem 1rem 0 0rem; }
    #off-canvas .top-bar li.lang {
      display: inline-block;
      padding: 0; }
  #off-canvas .menu li a {
    border-bottom: 1px solid #637381;
    padding: 1.25em 0rem;
    margin: 0 1rem; }
  #off-canvas .menu li li a {
    padding: 0.75rem 0; }
  #off-canvas ul.submenu {
    padding: 0.25rem 0 0.25rem 1.5rem; }
  #off-canvas .is-accordion-submenu-parent > a::after {
    border-color: #030303 transparent transparent; }

#menu-mobiele-navigatie .menu-item-has-children > a:after {
  content: '\f140';
  display: inline-block;
  font-family: dashicons;
  float: right;
  font-size: 1.5rem; }

/** sub header */
#pagemenu {
  float: right; }
  #pagemenu ul {
    margin-top: 0.5rem; }
  #pagemenu li > a {
    padding: 0.4rem 0;
    color: #FFFFFF;
    font-size: 0.9rem; }
  #pagemenu a:hover {
    color: #dfe3e8; }
  #pagemenu .current_page_item a {
    opacity: 0.5; }

.navbutton {
  background: #1483CE;
  color: #FFFFFF;
  padding: 0.1rem;
  border-radius: 0.2rem; }

.off-canvas-list ul {
  margin-left: 0; }
  .off-canvas-list ul li a {
    border-bottom: 0px; }
  .off-canvas-list ul .dropdown {
    margin-left: 20px; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  #pageloader {
    padding-top: 85px; }
  .top-bar {
    height: 85px; }
  #top-bar-logo {
    margin-top: 5px; }
    #top-bar-logo svg {
      height: 45px;
      width: auto; }
  .topbarmenu li {
    font-size: 0.8rem; }
  #smartnavbtttn {
    position: relative;
    top: 0.75rem;
    right: 1.25rem;
    float: right;
    font-size: 1.25rem;
    z-index: 999999999; }
  #pagemenu {
    position: absolute;
    padding: 4rem 0 2rem;
    background: #FFFFFF;
    width: 100%;
    z-index: 999998;
    transition: all 1.5s ease; }
  #menu-it-packs {
    clear: both;
    float: left;
    margin: 0;
    padding-bottom: 1rem;
    width: 100%; }
    #menu-it-packs li a {
      padding: 1rem 0;
      margin-left: 1rem;
      display: block;
      border-bottom: 1px solid #F4F4F4; }
  .turn180 {
    transform: rotate(180deg); }
  .subnavopen .subnav h2 {
    color: #030303 !important; }
  .subnavopen #home-header #smartnavbtttn {
    color: #030303; }
  .subnavopen #pagemenu li {
    display: block; }
  .subnavopen #pagemenu li > a {
    color: #030303;
    text-align: left;
    padding: 1rem 0; }
  .subnavopen #pagemenu a {
    border-bottom: 1px solid #dfe3e8; }
  .subnavopen #pagemenu a:hover {
    color: #222222; }
  .subnav .row {
    padding: 0rem; }
    .subnav .row h2 {
      font-size: 1.5rem;
      z-index: 999999;
      padding: 0.75rem 0 0 1rem;
      position: relative; }
  .subnavfixed .subnav .row {
    padding-top: 0;
    padding-bottom: 0; }
  .navbutton {
    background: none; } }

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

Stylesheet: Main Stylesheet for small screens

*************************************************/
/*********************
GENERAL STYLES
*********************/
@media screen and (max-width: 52.25em) {
  body {
    font-size: 0.9rem; }
  .page-title {
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem; }
  blockquote {
    font-size: 1.1rem; }
  h1, .h1 {
    line-height: 2.00rem; }
  h2, .h2 {
    font-weight: 700; }
  /*********************
NAVIGATION STYLES
*********************/
  /*********************
CONTENT STYLES
*********************/
  #content #inner-content {
    padding: 1.25rem 3%; }
  #cta {
    padding: 3rem 0;
    font-size: 1.1rem; }
    #cta h3 {
      font-size: 2rem;
      line-height: 2rem;
      margin-bottom: 1rem; }
    #cta a.button {
      margin-top: 1rem;
      color: #FFFFFF;
      padding: 1rem 0.75rem;
      font-weight: 600; }
    #cta a.button:after {
      font-size: 1rem; }
  /*********************
POST STYLES
*********************/
  .single .entry-content {
    font-size: 1.05rem; }
  .single h1 {
    font-size: 2rem; }
  .single h2 {
    font-size: 1.55rem; }
  .single h3 {
    font-size: 1.4rem;
    font-weight: bold; }
  .single header.article-header img {
    height: auto;
    width: 100%; }
  .socialshare {
    float: left;
    margin-top: 0.5rem;
    clear: both; }
    .socialshare img {
      width: 25px !important;
      height: 25px !important; }
  /*********************
TEMPLATES
*********************/
  /* standaard pagina v1 */
  .page-template-template-page-fw1 #home-header .homeblock, .page-template-default #home-header .homeblock {
    padding: 4rem 0 3rem; }
  .videoh3 {
    font-size: 1.5rem; }
  .videoblocks .video {
    width: 100%; }
  /*********************
SMART TELEFONIE
*********************/
  #home-header {
    text-align: left;
    font-size: 1.25rem; }
  /**************/
  /* IT Packs */
  /**************/
  /**************/
  /* REFRENTIES */
  /**************/
  .page-template-template-referenties h1 {
    font-size: 1.5rem; }
  .page-template-template-referenties h2 {
    margin-top: 1rem; }
  .page-template-template-referenties header.article-header {
    padding: 30px 0 60px; }
  /* bxslider */
  .bx-wrapper .bx-next {
    right: -10px !important; }
  .bx-wrapper .bx-prev {
    left: -10px !important; }
  .slideblock {
    width: 300px !important; }
  .review-text {
    font-size: 1rem;
    padding: 1.5rem 1rem; }
  .givepad {
    padding: 10px 10px; }
    .givepad .bx-viewport {
      margin-left: 30px; }
  /*********************
FOOTER
*********************/
  #inner-footer h4 {
    margin-top: 1rem; }
  .outer-footer-menu li {
    float: left; }
  .outer-footer-menu li a {
    color: #FFFFFF;
    padding: 0rem 0.5rem 0 0; }
  /* END SMALL BREAKPOINT */ }

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

Stylesheet: Main Stylesheet for VERY  breaksmall screens

*************************************************/
@media only screen and (max-width: 470px) {
  .blogwoofers h2 a {
    font-size: 1.1rem; }
  .blogwoofers article:first-child h2 a {
    font-size: 1.3rem; }
  .blogwoofers article {
    width: 100%; }
  .blogwoofers article:nth-child(2) {
    margin-right: 0%; }
  /* END VERY SMALL BREAKPOINT */ }

@media (min-width: 570px) {
  .position-right {
    width: 50% !important; } }

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

Stylesheet: Main Stylesheet for small screens

*************************************************/
/*********************
GENERAL STYLES
*********************/
@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  h1, .h1 {
    line-height: 3rem; }
  h2, .h2 {
    font-weight: 700; }
  /*********************
NAVIGATION STYLES
*********************/
  .mobbttn, .mobbttn-close {
    top: 22px; }
  /*********************
HOMEPAGINA
*********************/
  .blockwoofers article {
    width: 48%; }
  .hoofdfoto {
    height: 200px;
    width: auto; }
  /*********************
CONTENT STYLES
*********************/
  #content #inner-content {
    padding: 3rem 2%; }
  /*********************
TEMPLATES
*********************/
  /**************/
  /* REFRENTIES */
  /**************/
  .page-template-template-referenties h1 {
    font-size: 2rem; }
  .page-template-template-referenties header.article-header {
    padding: 60px 0 120px; }
  /* END SMALL BREAKPOINT */ }

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

Stylesheet: Main Stylesheet for small screens

*************************************************/
/*********************
GENERAL STYLES
*********************/
@media screen and (min-width: 75em) and (max-width: 87.4375em) {
  /*********************
HOMEPAGINA
*********************/
  #home-banner {
    padding: 2rem 5%; }
    #home-banner h1 {
      font-size: 1.75rem; }
  /*********************
CONTENT STYLES
*********************/
  #content #inner-content {
    padding: 3rem 5%; }
  /* END SMALL BREAKPOINT */ }

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

Stylesheet: Homepage

*************************************************/
#home-header {
  padding: 14rem 0 25rem;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  #home-header h1, #home-header h3 {
    color: #222222; }
  #home-header h3 {
    font-size: 1.5rem; }

.texthomeheader {
  position: relative;
  z-index: 999; }

.titelonderfoto {
  padding: 8rem 4rem; }
  .titelonderfoto h2 {
    font-weight: 400;
    padding-bottom: 2rem; }

.page-template-template-home #home-header {
  background-image: url("../images/telsmart-hoofding-2.jpg"); }

.socialreviews {
  background: #FFFFFF;
  overflow: hidden;
  font-size: 1.25rem; }
  .socialreviews .half {
    float: left;
    width: 50%;
    padding: 2rem;
    text-align: center; }
  .socialreviews .svg-inline--fa {
    color: #FFAE00; }
  .socialreviews span {
    font-weight: bold;
    margin-left: 1rem; }

.facebookr {
  color: #3b5998; }

.googler {
  color: #d62d20; }

.block-diensten a {
  color: #FFFFFF; }
  .block-diensten a .black {
    color: #222222; }

.block-diensten .half {
  text-align: center; }

.block-diensten .vol {
  text-align: left; }
  .block-diensten .vol .dienstinfo {
    padding-left: 10%;
    position: relative; }
  .block-diensten .vol .hoofdfoto {
    position: absolute;
    bottom: 0;
    right: 20%; }

.block-diensten h2 {
  font-size: 3rem;
  position: relative;
  padding-top: 60px;
  display: inline-block; }
  .block-diensten h2 .diensticon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto; }

.block-diensten h4 {
  margin-bottom: 1rem; }

.block-diensten h4:after {
  font-family: typicons;
  content: "\e049";
  padding-left: 0.5rem; }

.block-diensten .dienstinfo {
  padding: 6rem 0;
  margin: 1rem 0.25rem 1rem 0.25rem;
  overflow: hidden; }

.block-diensten .dienstinfo img.hoofdfoto {
  transition: all 0.3s ease-in-out; }

.block-diensten .dienstinfo:hover img.hoofdfoto {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out; }

.home-abouts {
  background: #FFFFFF;
  padding: 4rem 0; }

.orangeline {
  height: 2px;
  width: 0px;
  margin: 0 auto;
  background: #FD7A23;
  transition-delay: 2s;
  transition: all 0.3s ease-in-out; }

.linegrow {
  width: 140px; }

.klantencijfers {
  padding: 4rem 0;
  margin: 0rem 0 1rem; }
  .klantencijfers h6 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 0.75rem; }
  .klantencijfers h4 {
    color: #FD7A23;
    padding: 0 1rem 0 0.5rem;
    clear: both;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    line-height: 1.2; }

h3.titellogo {
  font-size: 1.1rem;
  margin-bottom: 1rem; }

/*********************
MEDIUM
*********************/
@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  #home-banner {
    padding: 2rem 2%; }
  #home-header {
    padding: 12rem 0 18rem;
    background-image: url("../images/telsmart-hoofding-1-medium.jpg"); }
    #home-header h3 {
      font-size: 1.25rem; }
  .titelonderfoto {
    padding: 4rem; }
    .titelonderfoto h2 {
      font-size: 2rem; }
  .block-diensten h2 {
    font-size: 2rem; }
  .block-diensten .dienstinfo {
    margin: 1rem 0rem 0.5rem 0rem; }
  .block-diensten .vol .hoofdfoto {
    right: 0%; } }

/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  #home-header {
    text-align: center;
    padding: 2rem 0 18rem;
    background-image: url("../images/telsmart-hoofding-1-small.jpg");
    font-size: 1rem; }
    #home-header h3 {
      font-size: 1.1rem;
      line-height: 1.2; }
    #home-header h1 {
      letter-spacing: 0; }
  .home #home-header {
    background-image: url("../images/telsmart-hoofding-1-small.jpg") !important; }
  .titelonderfoto {
    padding: 2rem 1rem; }
    .titelonderfoto h2 {
      font-size: 1.45rem; }
  .socialreviews {
    background: #FFFFFF;
    overflow: hidden;
    font-size: 1rem;
    padding: 1rem; }
    .socialreviews .half {
      width: 100%;
      padding: 0.5rem;
      text-align: left; }
    .socialreviews span {
      margin-left: 0.5rem; }
  .block-diensten .dienstinfo {
    padding: 2rem; }
  .block-diensten h2 {
    font-size: 2rem;
    padding-top: 45px; }
  .block-diensten .diensticon {
    height: 40px;
    width: auto; }
  .block-diensten .vol {
    text-align: center; }
    .block-diensten .vol .hoofdfoto {
      position: relative;
      right: 0;
      left: 0; }
  .linegrow {
    width: 70px; }
  .home-abouts {
    padding: 0 1rem; }
  .klantencijfers {
    padding: 2rem 0;
    margin: 0rem 0 1rem; }
    .klantencijfers h6 {
      text-transform: uppercase;
      font-size: 0.6rem;
      letter-spacing: 0rem; }
    .klantencijfers h4 {
      color: #FD7A23;
      padding: 0 1rem 0 0.5rem;
      clear: both;
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1; } }

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

Stylesheet: IT Packs Start

*************************************************/
.page-template-template-itpacks .bgitpack, .page-template-template-itpacks .subnav {
  background: #030303; }

.page-template-template-itpacks #home-header {
  padding: 0rem;
  background: #030303;
  background-image: url("../images/itpacks-header-large.jpg");
  background-repeat: no-repeat;
  background-position: center bottom; }
  .page-template-template-itpacks #home-header h1, .page-template-template-itpacks #home-header h2, .page-template-template-itpacks #home-header h3 {
    color: #FFFFFF; }
  .page-template-template-itpacks #home-header .homeblock {
    padding: 4rem 0 24rem; }

.page-template-template-itpacks .block-diensten .dienstinfo {
  padding: 6rem 0 0; }

.page-template-template-itpacks .block-diensten .vol .dienst-content {
  padding: 0rem 0 3rem 6rem; }

.page-template-template-itpacks .subnav .row:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.page-template-template-itpacks .subnav h2 {
  color: #FFFFFF; }

.page-template-template-itpacks .subnavfixed .subnav {
  background: #222222; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-itpacks #home-header {
    background: #030303;
    background-image: url("../images/itpacks-header-small.jpg");
    background-repeat: no-repeat;
    background-position: center bottom; }
    .page-template-template-itpacks #home-header .homeblock {
      padding: 3rem 0 10rem; }
  .page-template-template-itpacks #smartnavbtttn {
    color: #FFFFFF; }
  .page-template-template-itpacks #pagemenu {
    background: #222222; }
  .page-template-template-itpacks #pagemenu li a {
    border-bottom: 1px solid #030303;
    text-align: left; }
  .page-template-template-itpacks .subnavopen #home-header h2, .page-template-template-itpacks .subnavopen #smartnavbtttn, .page-template-template-itpacks .subnavopen li a {
    color: #FFFFFF !important; } }

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

Stylesheet: IT Security Service Pack

*************************************************/
.page-template-template-itpacks-security .bgsecurity, .page-template-template-itpacks-security .subnav {
  background: #EDABAB; }

.page-template-template-itpacks-security #home-header {
  padding: 0rem;
  background: #EDABAB;
  background-image: url("../images/itp-safety-afb.png");
  background-repeat: repeat-x;
  background-position: center bottom; }
  .page-template-template-itpacks-security #home-header h1, .page-template-template-itpacks-security #home-header h2, .page-template-template-itpacks-security #home-header h3 {
    color: #030303; }
  .page-template-template-itpacks-security #home-header .homeblock {
    padding: 4rem 0 20rem; }

.page-template-template-itpacks-security #pagemenu li > a {
  color: #030303; }

.page-template-template-itpacks-security #pagemenu a:hover {
  color: #637381; }

.page-template-template-itpacks-security .subnavfixed .subnav {
  background: #FFFFFF; }

.page-template-template-itpacks-security .navbutton a {
  color: #FFFFFF !important; }

.page-template-template-itpacks-security .block-hack {
  padding: 2rem 2rem; }
  .page-template-template-itpacks-security .block-hack h4 {
    font-weight: 600;
    padding: 0.75rem 0;
    position: relative; }
  .page-template-template-itpacks-security .block-hack h4:after {
    font-family: typicons;
    content: "\e0cf";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    color: #637381; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:hover h4:after {
    transition: 0.70s;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
    transform: rotate(180deg);
    opacity: 1;
    color: #FD7A23; }
  .page-template-template-itpacks-security .block-hack .column-block {
    margin-bottom: 0 !important; }
  .page-template-template-itpacks-security .block-hack .block-hack-info {
    padding: 4rem 2rem;
    border-bottom: 1px solid #dfe3e8;
    border-right: 1px solid #dfe3e8;
    height: 220px;
    position: relative;
    overflow: hidden; }
    .page-template-template-itpacks-security .block-hack .block-hack-info span {
      width: 100%;
      position: absolute;
      left: 0;
      text-align: center; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:hover {
    cursor: pointer;
    background: #FFFFFF; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-child(4n+4) {
    border-right: 0; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-last-child(-n+4) {
    border-bottom: 0; }

.page-template-template-itpacks-security .reveal {
  font-size: 1.25rem;
  padding: 4rem;
  box-shadow: 0px 0px 49px -15px rgba(0, 0, 0, 0.75); }
  .page-template-template-itpacks-security .reveal h4 {
    font-size: 2.5rem;
    font-weight: 600;
    padding: 0.25rem 0 0.75rem; }

.page-template-template-itpacks-security .titel-boven-hack {
  padding: 4rem 0 0; }
  .page-template-template-itpacks-security .titel-boven-hack h2 {
    font-size: 2.5rem;
    color: #CB143D; }

.page-template-template-itpacks-security #cta-security {
  font-size: 1.25rem;
  padding: 4rem 0;
  background: #FFFFFF; }
  .page-template-template-itpacks-security #cta-security li:before {
    color: #EDABAB; }

/*********************
MEDIUM
*********************/
@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  .page-template-template-itpacks-security .titel-boven-hack {
    padding: 3rem 0 0; }
    .page-template-template-itpacks-security .titel-boven-hack h2 {
      font-size: 2rem; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-child(4n+4) {
    border-right: 1px solid #dfe3e8; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-last-child(-n+4) {
    border-bottom: 1px solid #dfe3e8; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-child(3n+0) {
    border-right: 0; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-last-child(-n+2) {
    border-bottom: 0; } }

/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-itpacks-security #home-header {
    background-position: center 120px; }
    .page-template-template-itpacks-security #home-header .homeblock {
      padding: 3rem 0 8rem; }
  .page-template-template-itpacks-security .titel-boven-hack {
    padding: 2rem 0 0; }
    .page-template-template-itpacks-security .titel-boven-hack h2 {
      font-size: 1.5rem; }
  .page-template-template-itpacks-security .block-hack .block-hack-info {
    padding: 3rem 1rem; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-child(4n+4) {
    border-right: 1px solid #dfe3e8; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-last-child(-n+4) {
    border-bottom: 1px solid #dfe3e8; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-child(2n+0) {
    border-right: 0; }
  .page-template-template-itpacks-security .block-hack .block-hack-info:nth-last-child(-n+2) {
    border-bottom: 0; }
  .page-template-template-itpacks-security #cta-security {
    padding: 2rem 0;
    font-size: 1rem; }
  .page-template-template-itpacks-security #menu-it-packs li a {
    text-align: left; } }

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

Stylesheet: Smart Telefonie

*************************************************/
.page-template-template-smarttelefonie .bgtelefonie {
  background: #C9E1CB; }

.page-template-template-smarttelefonie #home-header {
  padding: 0;
  font-size: 1.25rem;
  background-image: url("../images/tel-home-large.jpg"); }
  .page-template-template-smarttelefonie #home-header h1, .page-template-template-smarttelefonie #home-header h3 {
    padding-bottom: 1rem; }
  .page-template-template-smarttelefonie #home-header .homeblock {
    padding: 8rem 0; }
  .page-template-template-smarttelefonie #home-header .texthomeheader ul {
    margin: 0; }
  .page-template-template-smarttelefonie #home-header .texthomeheader li {
    list-style: none; }
  .page-template-template-smarttelefonie #home-header .texthomeheader li:before {
    font-family: typicons;
    content: "\e11e";
    padding-right: 1rem; }

.page-template-template-smarttelefonie #pagemenu li > a {
  color: #030303; }

.page-template-template-smarttelefonie #pagemenu a:hover {
  color: #637381; }

.page-template-template-smarttelefonie .subnavfixed .subnav {
  background: #FFFFFF; }

.page-template-template-smarttelefonie .navbutton a {
  color: #FFFFFF !important; }

.page-template-template-smarttelefonie #tel-formules {
  font-size: 1.25rem;
  background-image: url("../images/tel-formules-large.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  padding: 8rem 0 34rem; }
  .page-template-template-smarttelefonie #tel-formules h2 {
    font-size: 3.5rem; }
  .page-template-template-smarttelefonie #tel-formules h3 {
    padding: 0rem 0 1.5rem; }
  .page-template-template-smarttelefonie #tel-formules ul, .page-template-template-smarttelefonie #tel-formules li {
    list-style: none;
    margin: 0;
    position: relative; }
  .page-template-template-smarttelefonie #tel-formules li {
    padding: 0.1rem 0 0.1rem 1.5rem; }
  .page-template-template-smarttelefonie #tel-formules li:before {
    font-family: typicons;
    content: "\e0cf";
    padding-right: 1rem;
    position: absolute;
    left: 0; }

.page-template-template-smarttelefonie #tel-calout-one {
  padding: 4rem 0;
  font-size: 1.25rem; }
  .page-template-template-smarttelefonie #tel-calout-one h2 {
    font-size: 3rem;
    margin-bottom: 2rem; }
  .page-template-template-smarttelefonie #tel-calout-one ul, .page-template-template-smarttelefonie #tel-calout-one li {
    list-style: none;
    margin: 0;
    position: relative; }
  .page-template-template-smarttelefonie #tel-calout-one li {
    padding: 0.25rem 0 0.25rem 1.5rem; }
  .page-template-template-smarttelefonie #tel-calout-one li:before {
    font-family: typicons;
    content: "\e11e";
    padding-right: 1rem;
    position: absolute;
    left: 0; }
  .page-template-template-smarttelefonie #tel-calout-one .button {
    color: #FFFFFF; }
  .page-template-template-smarttelefonie #tel-calout-one .bx-wrapper {
    background: #FFFFFF; }

.page-template-template-smarttelefonie #tel-voordelen {
  background: #FFFFFF;
  font-size: 1.25rem; }
  .page-template-template-smarttelefonie #tel-voordelen .voordeel-info {
    padding: 6rem 6rem;
    background: #FFFFFF; }
  .page-template-template-smarttelefonie #tel-voordelen h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    padding-bottom: 2rem; }
  .page-template-template-smarttelefonie #tel-voordelen .indev-voordeel {
    min-height: 600px;
    position: relative; }
  .page-template-template-smarttelefonie #tel-voordelen .voordeel-foto {
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 600px;
    position: relative; }
  .page-template-template-smarttelefonie #tel-voordelen ul {
    margin: 0; }
  .page-template-template-smarttelefonie #tel-voordelen li {
    list-style: none; }
  .page-template-template-smarttelefonie #tel-voordelen li:before {
    font-family: typicons;
    content: "\e11e";
    padding-right: 1rem; }

.page-template-template-smarttelefoniefeatures h2 {
  font-size: 2rem;
  color: #030303; }

.page-template-template-smarttelefoniefeatures #home-header {
  padding: 0rem 0; }
  .page-template-template-smarttelefoniefeatures #home-header h1 {
    margin: 3rem 0 1rem; }

.page-template-template-smarttelefoniefeatures #pagemenu li > a {
  color: #030303; }

.page-template-template-smarttelefoniefeatures #pagemenu a:hover {
  color: #637381; }

.page-template-template-smarttelefoniefeatures .subnavfixed .subnav {
  background: #FFFFFF; }

.page-template-template-smarttelefoniefeatures .navbutton a {
  color: #FFFFFF !important; }

.page-template-template-smarttelefoniefeatures #tel-voordelen {
  color: #637381;
  font-size: 1.1rem;
  margin-bottom: 4rem; }
  .page-template-template-smarttelefoniefeatures #tel-voordelen h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1rem 0 0.25rem 0;
    color: #030303; }

/*********************
MEDIUM
*********************/
@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  .page-template-template-smarttelefonie #home-header {
    font-size: 1.15rem; }
    .page-template-template-smarttelefonie #home-header .homeblock {
      padding: 6rem 0; }
  .page-template-template-smarttelefonie #tel-formules {
    font-size: 1.15rem;
    padding: 6rem 0 26rem; }
    .page-template-template-smarttelefonie #tel-formules h2 {
      font-size: 2.5rem; }
    .page-template-template-smarttelefonie #tel-formules h3 {
      padding: 0rem 0 1rem;
      font-size: 1.25rem; }
  .page-template-template-smarttelefonie #tel-calout-one {
    padding: 6rem 0;
    font-size: 1.15rem; }
    .page-template-template-smarttelefonie #tel-calout-one h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem; }
  .page-template-template-smarttelefonie #tel-voordelen {
    font-size: 1rem; }
    .page-template-template-smarttelefonie #tel-voordelen .voordeel-info {
      padding: 4rem 1.5rem; }
    .page-template-template-smarttelefonie #tel-voordelen h3 {
      font-size: 1.5rem;
      padding-bottom: 1rem; }
    .page-template-template-smarttelefonie #tel-voordelen .voordeel-foto, .page-template-template-smarttelefonie #tel-voordelen .indev-voordeel {
      min-height: 450px; }
  .page-template-template-smarttelefoniefeatures #home-header {
    background: none;
    padding: 4rem 0; } }

/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-smarttelefonie #home-header {
    text-align: left;
    padding: 0rem 0 4rem;
    background-image: url("../images/tel-home-small.jpg");
    font-size: 1rem; }
    .page-template-template-smarttelefonie #home-header .homeblock {
      padding: 2rem 0 4rem; }
  .page-template-template-smarttelefonie #tel-formules {
    font-size: 1rem;
    background-image: url("../images/tel-formules-small.jpg");
    padding: 2rem 0 20rem; }
    .page-template-template-smarttelefonie #tel-formules h2 {
      font-size: 2rem; }
    .page-template-template-smarttelefonie #tel-formules h3 {
      padding: 0rem 0 1.5rem;
      font-size: 1.25rem; }
  .page-template-template-smarttelefonie #tel-calout-one {
    padding: 2rem 0;
    font-size: 1rem; }
    .page-template-template-smarttelefonie #tel-calout-one h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem; }
  .page-template-template-smarttelefonie #tel-voordelen {
    font-size: 1rem; }
    .page-template-template-smarttelefonie #tel-voordelen .voordeel-info {
      padding: 4rem 1rem;
      background: #FFFFFF; }
    .page-template-template-smarttelefonie #tel-voordelen h3 {
      font-size: 2rem;
      font-weight: 600;
      padding-bottom: 1rem; }
    .page-template-template-smarttelefonie #tel-voordelen .voordeel-foto {
      background-repeat: no-repeat;
      display: block;
      background-size: cover;
      overflow: hidden;
      min-height: 300px; }
  .page-template-template-smarttelefoniefeatures #home-header {
    background: none;
    padding: 0rem 0; }
  .page-template-template-smarttelefoniefeatures h2 {
    font-size: 1.5rem; }
  .page-template-template-smarttelefoniefeatures .navbutton a {
    color: #030303 !important; }
  .page-template-template-smarttelefonie .navbutton a {
    color: #030303 !important; } }

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

Stylesheet: IT Data Safety Pack

*************************************************/
.page-template-template-itpacks-data .bgdata, .page-template-template-itpacks-data .subnav {
  background: #180153; }

.page-template-template-itpacks-data #home-header {
  background: #180153;
  padding: 0rem; }
  .page-template-template-itpacks-data #home-header h1, .page-template-template-itpacks-data #home-header h2, .page-template-template-itpacks-data #home-header h3, .page-template-template-itpacks-data #home-header h4 {
    color: #FFFFFF; }
  .page-template-template-itpacks-data #home-header h1 {
    margin-bottom: 1.5rem; }

.page-template-template-itpacks-data .homeblock {
  padding: 4rem 0 10rem; }

.page-template-template-itpacks-data #smartnavbtttn {
  color: #FFFFFF; }

.page-template-template-itpacks-data .subnav .row:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25); }

.page-template-template-itpacks-data .subnav .row h2 {
  color: #FFFFFF; }

.page-template-template-itpacks-data #menu-it-packs li > a {
  color: #FFFFFF; }

.page-template-template-itpacks-data #menu-it-packs a:hover {
  color: #637381; }

.page-template-template-itpacks-data .subnavfixed .subnav {
  background: #222222; }

.page-template-template-itpacks-data #data-content {
  padding: 4rem 0;
  background: #FFFFFF;
  font-size: 1.15rem; }
  .page-template-template-itpacks-data #data-content h4 {
    font-weight: 700;
    font-size: 1.75rem; }

.page-template-template-itpacks-data .dsp-promotie {
  padding: 2rem;
  border: 4px solid #FD7A23;
  clear: both; }
  .page-template-template-itpacks-data .dsp-promotie h4 {
    font-weight: 700;
    color: #1483CE; }
  .page-template-template-itpacks-data .dsp-promotie h6 {
    font-size: 0.8rem;
    color: #C9E1CB;
    font-weight: 700; }

.page-template-template-itpacks-data .dsp-iconen {
  margin: 3rem 0; }
  .page-template-template-itpacks-data .dsp-iconen h2 {
    padding: 2rem 0; }
  .page-template-template-itpacks-data .dsp-iconen h4 {
    font-weight: 600;
    margin-top: 0.5rem; }
  .page-template-template-itpacks-data .dsp-iconen .icons {
    margin: 3rem 0; }

#videoblock {
  margin: -12rem auto 0rem auto;
  box-shadow: 0px 0px 19px 3px #e0e0e0; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-itpacks-data .dsp-iconen {
    margin: 1rem 0; }
    .page-template-template-itpacks-data .dsp-iconen .icons {
      margin: 1rem 0; }
  .subnavopen .subnav h2 {
    color: #030303 !important; }
  .subnavopen #smartnavbtttn {
    color: #030303; }
  .subnavopen #menu-it-packs li > a {
    color: #030303;
    text-align: left; }
  .subnavopen #menu-it-packs a:hover {
    color: #222222; } }

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

Stylesheet: IT Security Service Pack

*************************************************/
.page-template-template-itpacks-office {
  background: #FFFFFF; }
  .page-template-template-itpacks-office .bgsecurity, .page-template-template-itpacks-office .subnav {
    background: #E66D6D; }
  .page-template-template-itpacks-office #home-header {
    padding: 0rem;
    margin-bottom: 2rem;
    background: #E66D6D;
    background-image: url("../images/telsmart-office-large.png");
    background-repeat: no-repeat;
    background-position: center bottom; }
    .page-template-template-itpacks-office #home-header h1, .page-template-template-itpacks-office #home-header h3 {
      color: #FFFFFF; }
    .page-template-template-itpacks-office #home-header .homeblock {
      padding: 4rem 0 20rem; }
  .page-template-template-itpacks-office .subnav h2 {
    color: #030303; }
  .page-template-template-itpacks-office #pagemenu li > a {
    color: #030303; }
  .page-template-template-itpacks-office #pagemenu a:hover {
    color: #637381; }
  .page-template-template-itpacks-office #office-content {
    padding: 5rem 0; }
  .page-template-template-itpacks-office .subnavfixed .subnav {
    background: #FFFFFF; }
  .page-template-template-itpacks-office .navbutton a {
    color: #FFFFFF !important; }
  .page-template-template-itpacks-office #office-content {
    background-image: url("../images/telsmart-office-packs-large.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; }
  .page-template-template-itpacks-office .office-packs .columns {
    background: rgba(255, 255, 255, 0.89);
    padding: 1.5rem;
    box-shadow: 0px 0px 21px -1px rgba(0, 0, 0, 0.33);
    border-radius: 0.5rem; }
  .page-template-template-itpacks-office .office-packs h3 {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
    margin: 1rem 0 1.5rem 0; }
  .page-template-template-itpacks-office .office-packs li {
    list-style: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F4F4F4; }
  .page-template-template-itpacks-office .office-packs .opack-bestellen {
    margin: 2rem 0 0 0; }
    .page-template-template-itpacks-office .office-packs .opack-bestellen .button {
      color: #FFFFFF; }
    .page-template-template-itpacks-office .office-packs .opack-bestellen .button:after {
      font-family: typicons;
      content: "\e049";
      padding-left: 0.5rem; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-itpacks-office #home-header {
    background-image: url("../images/telsmart-office-small.png"); }
    .page-template-template-itpacks-office #home-header .homeblock {
      padding: 2rem 0 14rem; } }

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

Stylesheet: IT Security Service Pack

*************************************************/
.page-template-template-itpacks-connectiviteit .bgsecurity, .page-template-template-itpacks-connectiviteit .subnav {
  background: #6dd2e6; }

.page-template-template-itpacks-connectiviteit #home-header {
  padding: 1.5rem;
  background: #6dd2e6;
  background-image: url("../images/connectiviteit-large.png");
  background-position: bottom center;
  background-repeat: no-repeat; }
  .page-template-template-itpacks-connectiviteit #home-header h1, .page-template-template-itpacks-connectiviteit #home-header h2, .page-template-template-itpacks-connectiviteit #home-header h3 {
    color: #FFFFFF; }
  .page-template-template-itpacks-connectiviteit #home-header .homeblock {
    padding: 2rem 0 22rem; }

.page-template-template-itpacks-connectiviteit #menu-it-packs li > a {
  color: #030303; }

.page-template-template-itpacks-connectiviteit #menu-it-packs a:hover {
  color: #637381; }

.page-template-template-itpacks-connectiviteit #connectiviteit-content {
  padding: 4rem 0;
  font-size: 1.25rem; }
  .page-template-template-itpacks-connectiviteit #connectiviteit-content h3 {
    font-weight: 600;
    margin-bottom: 2rem; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-itpacks-connectiviteit #home-header {
    background-image: url("../images/connectiviteit-small.png"); }
    .page-template-template-itpacks-connectiviteit #home-header .homeblock {
      padding: 2rem 0 10rem; }
  .page-template-template-itpacks-connectiviteit #connectiviteit-content {
    font-size: 1.1rem; } }

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

Stylesheet: Over TelSmart

*************************************************/
.page-template-template-telsmart-over #home-header {
  padding: 0;
  background-image: url("../images/telsmart-bedrijfscultuur.jpg");
  background-position: top center; }
  .page-template-template-telsmart-over #home-header h1 {
    color: #FFFFFF; }
  .page-template-template-telsmart-over #home-header h2, .page-template-template-telsmart-over #home-header #smartnavbtttn {
    color: #FFFFFF; }
  .page-template-template-telsmart-over #home-header .homeblock {
    padding: 14rem 0 40rem; }

.page-template-template-telsmart-over .subnav .row:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.page-template-template-telsmart-over .subnavfixed .subnav {
  background: #222222; }

.page-template-template-telsmart-over .bedrijfscultuur {
  background: #0071BF;
  color: #FFFFFF;
  margin: 0 auto;
  width: 65%;
  max-width: 750px;
  padding: 4rem;
  text-align: center;
  margin-top: -18rem;
  z-index: 99;
  position: relative; }
  .page-template-template-telsmart-over .bedrijfscultuur h3 {
    font-size: 2.25rem;
    font-weight: 600;
    padding-bottom: 1rem; }
  .page-template-template-telsmart-over .bedrijfscultuur .button {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #FFFFFF; }
  .page-template-template-telsmart-over .bedrijfscultuur .button:hover {
    opacity: 0.85; }
  .page-template-template-telsmart-over .bedrijfscultuur .button:after {
    font-family: typicons;
    content: "\e049";
    padding-left: 0.5rem; }

.page-template-template-telsmart-over .bx-wrapper, .page-template-template-telsmart-over .bx-viewport {
  height: 220px !important; }

.page-template-template-telsmart-over .teamtelsmart {
  padding: 3rem 0; }

.page-template-template-telsmart-over .slider {
  background: none; }

.page-template-template-telsmart-over .finalwords {
  padding: 2rem;
  font-size: 1.25rem; }

.teamtestimonials {
  padding: 4rem 0; }
  .teamtestimonials .employee-row {
    background-repeat: no-repeat;
    background-size: cover; }
  .teamtestimonials .employee {
    margin: 16rem 0;
    background: #FFFFFF;
    padding: 4rem 4rem;
    font-size: 1.15rem;
    opacity: 0.92; }

.slogan {
  padding: 2rem 0 4rem;
  position: relative; }
  .slogan h4 {
    font-size: 2.5rem;
    font-style: italic; }
  .slogan .telquote {
    font-size: 3rem; }
  .slogan .button {
    margin-top: 2rem; }
  .slogan a.button {
    color: #FFFFFF; }

/**** teampagina ***/
.page-template-template-telsmart-team #home-header {
  padding: 0;
  background-image: url("../images/telsmart-denktank.jpg");
  background-position: top center; }
  .page-template-template-telsmart-team #home-header h1, .page-template-template-telsmart-team #home-header h3 {
    color: #FFFFFF; }
  .page-template-template-telsmart-team #home-header h2, .page-template-template-telsmart-team #home-header #smartnavbtttn {
    color: #FFFFFF; }
  .page-template-template-telsmart-team #home-header .homeblock {
    padding: 6rem 0 16rem; }

.page-template-template-telsmart-team .subnav .row:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.page-template-template-telsmart-team .subnavfixed .subnav {
  background: #222222; }

.page-template-template-telsmart-team .ditistelsmart {
  padding: 4rem 0; }
  .page-template-template-telsmart-team .ditistelsmart h4 {
    margin: 0.25rem 0 0 0;
    font-weight: 600; }
  .page-template-template-telsmart-team .ditistelsmart h5 {
    font-size: 0.95rem; }

/**** referentie pagina ***/
.page-template-template-customers #home-header {
  padding: 0;
  background-position: top center; }
  .page-template-template-customers #home-header h1, .page-template-template-customers #home-header h3 {
    color: #FFFFFF; }
  .page-template-template-customers #home-header h2, .page-template-template-customers #home-header #smartnavbtttn {
    color: #FFFFFF; }
  .page-template-template-customers #home-header .homeblock {
    padding: 6rem 0 16rem; }

.page-template-template-customers .subnav .row:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.page-template-template-customers .subnavfixed .subnav {
  background: #222222; }

/**************/
/* VACATURES */
/**************/
.post-type-archive-vacatures #home-header {
  padding: 0;
  background-image: url("../images/telsmart-vacatures.jpg");
  background-position: top center; }
  .post-type-archive-vacatures #home-header h1, .post-type-archive-vacatures #home-header h3 {
    color: #FFFFFF; }
  .post-type-archive-vacatures #home-header h2, .post-type-archive-vacatures #home-header #smartnavbtttn {
    color: #FFFFFF; }
  .post-type-archive-vacatures #home-header .homeblock {
    padding: 6rem 0 16rem; }

.post-type-archive-vacatures .subnavfixed .subnav {
  background: #222222; }

.post-type-archive-vacatures .video {
  width: 50%;
  min-height: 400px;
  margin-top: -12rem;
  z-index: 999;
  position: relative; }
  .post-type-archive-vacatures .video a {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%; }

.post-type-archive-vacatures #inner-content {
  background: #FFFFFF;
  margin-top: 2rem;
  margin-bottom: 2rem; }

.post-type-archive-vacatures .vacature {
  padding: 2rem;
  float: left;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  width: 100%; }
  .post-type-archive-vacatures .vacature h3 a {
    font-weight: 700;
    color: #222222; }

.post-type-archive-vacatures [class~='vacature']:last-of-type {
  border-bottom: none; }

.post-type-archive-vacatures .locatie {
  margin-top: 1rem; }

.post-type-archive-vacatures .locatie svg {
  margin-right: 0.5rem;
  color: #637381; }

/*** single vacature ***/
.single-vacatures h1 {
  font-size: 3rem; }

.single-vacatures #home-header {
  padding: 0; }

.single-vacatures #vacature {
  padding: 2rem; }

.single-vacatures #pagemenu li > a {
  color: #222222; }

.single-vacatures h1:after {
  content: "";
  margin-top: 2rem;
  background: #FD7A23;
  height: 2px;
  width: 100px;
  display: table; }

.single-vacatures .subnavfixed .subnav {
  background: #FFFFFF; }

.single-vacatures .navbutton a {
  color: #FFFFFF !important; }

.single-vacatures #main {
  border-right: 1px solid #dfe3e8; }

.single-vacatures .cta-vacatures {
  margin-left: 1.25rem;
  margin-top: 2rem;
  border: 1px solid #dfe3e8; }
  .single-vacatures .cta-vacatures .textblok {
    padding: 1rem; }

.joblist a {
  color: #222222; }

.joblist a:hover {
  color: #1483CE; }

.joblist h4 {
  padding: 0;
  margin: 0;
  font-weight: 600; }

.joblist li {
  list-style: none;
  padding: 1rem 0;
  border-bottom: 1px solid #dfe3e8; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-telsmart-over #home-header {
    padding: 0;
    background-image: url("../images/telsmart-bedrijfscultuur-small.jpg"); }
    .page-template-template-telsmart-over #home-header .homeblock {
      padding: 2rem 0 20rem; }
  .page-template-template-telsmart-over .bedrijfscultuur {
    max-width: 500px;
    width: 90%;
    padding: 1rem;
    text-align: left;
    margin-top: -10rem; }
    .page-template-template-telsmart-over .bedrijfscultuur h3 {
      font-size: 1.75rem; }
    .page-template-template-telsmart-over .bedrijfscultuur .button {
      font-size: 1.5rem;
      color: #FFFFFF;
      border-color: #FFFFFF;
      margin-top: 1rem; }
    .page-template-template-telsmart-over .bedrijfscultuur .button:hover {
      opacity: 0.7; }
  .page-template-template-telsmart-over .teamtestimonials {
    padding: 2rem 0; }
    .page-template-template-telsmart-over .teamtestimonials .employee {
      margin: 0;
      background: #FFFFFF;
      padding: 4rem 4rem;
      font-size: 1.15rem;
      opacity: 0.92; }
  .page-template-template-telsmart-over .subnavopen #home-header #smartnavbtttn {
    color: #030303; }
  .slogan {
    padding: 1.5rem; }
    .slogan h4 {
      font-size: 1.5rem; }
  .page-template-template-telsmart-team #home-header {
    padding: 0;
    background-image: url("../images/telsmart-denktank.jpg"); }
    .page-template-template-telsmart-team #home-header .homeblock {
      padding: 2rem 0 8rem; }
  .page-template-template-telsmart-team .ditistelsmart {
    padding: 2rem 0; }
    .page-template-template-telsmart-team .ditistelsmart h5 {
      font-size: 0.85rem; }
  .page-template-template-telsmart-team .subnavopen .subnav h2 {
    color: #030303 !important; }
  .page-template-template-telsmart-team .subnavopen #home-header #smartnavbtttn {
    color: #030303; }
  .page-template-template-telsmart-team .subnavopen #pagemenu li > a {
    color: #030303;
    text-align: left;
    padding: 1rem 0; }
  .page-template-template-telsmart-team .subnavopen #pagemenu a {
    border-bottom: 1px solid #dfe3e8; }
  .page-template-template-telsmart-team .subnavopen #pagemenu a:hover {
    color: #222222; }
  .post-type-archive-vacatures #home-header {
    background-image: url("../images/telsmart-vacatures-small.jpg"); }
    .post-type-archive-vacatures #home-header .homeblock {
      padding: 3rem 0 8rem; }
  .post-type-archive-vacatures .subnavopen #home-header #smartnavbtttn {
    color: #030303; }
  .post-type-archive-vacatures .video {
    width: 90%;
    min-height: 200px;
    margin-top: -8rem; }
  .single-vacatures #home-header {
    background: none; }
  .single-vacatures h1 {
    font-size: 1.8rem; }
  .single-vacatures #content .large-4 {
    background: #dfe3e8; }
  .single-vacatures #main {
    border-right: none; } }

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

Stylesheet: IT Packs Start

*************************************************/
.page-template-template-support .clearform {
  clear: both; }

.page-template-template-support .bgitpack {
  background: #030303; }

.page-template-template-support #home-header {
  padding: 0rem;
  background-image: url("../images/support-header-large.jpg");
  background-repeat: no-repeat;
  background-position: center top; }
  .page-template-template-support #home-header h1, .page-template-template-support #home-header h3 {
    color: #222222; }
  .page-template-template-support #home-header .homeblock {
    padding: 6rem 0 30rem; }

.page-template-template-support .subnav .row:after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4); }

.page-template-template-support .subnav h2 {
  color: #222222; }

.page-template-template-support .support-block {
  margin-top: 2rem; }
  .page-template-template-support .support-block .columns {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1rem;
    border-radius: 6px; }
  .page-template-template-support .support-block svg {
    font-size: 4rem; }
  .page-template-template-support .support-block h2 {
    font-weight: 700;
    margin: 1rem 0;
    font-size: 1.75rem; }
  .page-template-template-support .support-block h6 {
    font-size: 1.1rem; }
  .page-template-template-support .support-block .button {
    background: #1483CE;
    box-shadow: 0 3px 0 #0D6697;
    margin: 1.5rem 0; }
  .page-template-template-support .support-block .button:hover {
    opacity: 0.92; }

.page-template-template-support .status {
  padding: 1.5rem;
  margin-top: 1.5rem;
  background: #6dd2e6; }
  .page-template-template-support .status a {
    text-decoration: underline;
    color: #030303;
    font-weight: 700; }
  .page-template-template-support .status p {
    margin-bottom: 0; }
  .page-template-template-support .status a:hover {
    color: #FFFFFF; }

.page-template-template-support .support-products {
  padding: 4rem 0; }
  .page-template-template-support .support-products img {
    height: 60px;
    width: auto;
    margin-bottom: 0.75rem; }
  .page-template-template-support .support-products a {
    color: #030303;
    position: absolute;
    top: 25%;
    left: 0;
    right: 0; }
  .page-template-template-support .support-products a:hover {
    text-decoration: underline; }
  .page-template-template-support .support-products .column-block {
    margin-bottom: 0 !important; }
  .page-template-template-support .support-products .block-hack-info {
    padding: 2rem 1rem;
    margin: 1rem;
    position: relative;
    overflow: hidden;
    height: 200px;
    border: 1px solid #dfe3e8; }
    .page-template-template-support .support-products .block-hack-info span {
      width: 100%;
      position: absolute;
      left: 0;
      text-align: center; }
    .page-template-template-support .support-products .block-hack-info h4 {
      font-size: 1.15rem; }
  .page-template-template-support .support-products .block-hack-info:hover {
    cursor: pointer;
    background: #FFFFFF; }
  .page-template-template-support .support-products .block-hack-info:nth-child(4n+4) {
    border-right: 0; }
  .page-template-template-support .support-products .block-hack-info:nth-last-child(-n+4) {
    border-bottom: 0; }

.page-template-template-support .sorry-status-bar {
  display: none; }

.sorry-status-bar {
  border-left: 3px solid #CB143D;
  padding: 1rem 0;
  background: #FFFFFF;
  margin-bottom: 3rem; }
  .sorry-status-bar img {
    margin-right: 1rem; }

.okay {
  border-left: 3px solid #C9E1CB; }

.problem {
  border-left: 3px solid #CB143D; }

.statusok, .statusnok {
  display: none; }

.statusok img, .statusnok img {
  height: 14px;
  width: auto;
  margin-right: 0.25rem; }

/* support producten */
.page-template-template-supportproducts h1 {
  font-size: 2.75rem;
  line-height: 1.15; }

.page-template-template-supportproducts #home-header {
  padding: 0rem;
  background-repeat: no-repeat;
  background-position: center top; }
  .page-template-template-supportproducts #home-header h3 {
    color: #222222; }
  .page-template-template-supportproducts #home-header h1 {
    color: #FFFFFF; }
  .page-template-template-supportproducts #home-header .homeblock {
    padding: 16rem 0 20rem; }

.page-template-template-supportproducts .subnav .row:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.page-template-template-supportproducts .subnav h2 {
  color: #FFFFFF; }

.page-template-template-supportproducts .subnav #smartnavbtttn {
  color: #FFFFFF; }

.page-template-template-supportproducts .support-products {
  padding: 2rem 0;
  border-bottom: 1px solid #dfe3e8; }
  .page-template-template-supportproducts .support-products a {
    display: block; }
  .page-template-template-supportproducts .support-products img {
    height: 60px;
    opacity: 0.7;
    width: auto;
    margin-bottom: 0.5rem; }
  .page-template-template-supportproducts .support-products a:hover p {
    text-decoration: underline; }
  .page-template-template-supportproducts .support-products a:hover img {
    opacity: 1; }
  .page-template-template-supportproducts .support-products p:after {
    font-family: typicons;
    content: "\e049";
    padding-left: 0.5rem; }

.page-template-template-supportproducts .faq-products {
  background: #FFFFFF;
  padding: 4rem 0; }
  .page-template-template-supportproducts .faq-products h2 {
    margin-bottom: 2rem; }
  .page-template-template-supportproducts .faq-products .columns {
    margin-bottom: 2rem; }

/* accordeon FAQ module */
.headerbold {
  font-weight: bold; }

.accordion-title, .is-active .accordion-title {
  font-size: 1rem; }

.accordion li.is-active a.accordion-title {
  font-weight: bold; }

.accordion-item {
  border-bottom: 1px solid #dfe3e8; }

.accordion-title::before {
  left: 1rem;
  right: auto;
  color: #0D6697;
  font-size: 1.2rem;
  font-family: typicons;
  content: "\e049"; }

.is-active > .accordion-title::before {
  font-family: typicons;
  content: "\e049"; }

.accordion-content p {
  margin-bottom: 0 !important; }

.search-faqs {
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 2rem 0; }
  .search-faqs .search-field, .search-faqs .search-submit {
    margin: 0 !important;
    height: 3.5rem; }
  .search-faqs .search-field {
    width: 80%;
    float: left;
    border: none; }
  .search-faqs .search-submit {
    width: 20%;
    float: right;
    background: #0D6697; }
  .search-faqs .search-field:-ms-input-placeholder {
    color: #637381; }
  .search-faqs .search-field::placeholder {
    color: #637381; }

/*********************
SUPPORT PAGINA 2020
*********************/
.single-faqs .entry-content {
  font-size: 1.05rem; }

/* support homepagina */
.page-template-template-support-2019 .bgitpack {
  background: #030303; }

.page-template-template-support-2019 #home-header {
  background-image: linear-gradient(180deg, #ADA0FF 0%, #F5F5F5 100%);
  padding: 0rem; }
  .page-template-template-support-2019 #home-header h1, .page-template-template-support-2019 #home-header h3 {
    color: #222222; }
  .page-template-template-support-2019 #home-header .homeblock {
    padding: 4rem 0 10rem; }

.page-template-template-support-2019 .telsmart-diensten {
  margin-top: -2rem;
  position: relative;
  margin-bottom: 3rem; }

.page-template-template-support-2019 .status {
  padding: 1.5rem;
  margin-top: 1.5rem;
  background: #6dd2e6; }
  .page-template-template-support-2019 .status a {
    text-decoration: underline;
    color: #030303;
    font-weight: 700; }
  .page-template-template-support-2019 .status p {
    margin-bottom: 0; }
  .page-template-template-support-2019 .status a:hover {
    color: #FFFFFF; }

.page-template-template-support-2019 .support-products {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .page-template-template-support-2019 .support-products img {
    width: 32px;
    height: auto;
    margin-bottom: 0.75rem; }
  .page-template-template-support-2019 .support-products a {
    color: #030303;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.25rem 1rem;
    border: 1px solid #dfe3e8;
    margin: 0.6rem 1.2rem 0.6rem 0; }
  .page-template-template-support-2019 .support-products a:hover {
    text-decoration: underline;
    background: #FFFFFF; }
  .page-template-template-support-2019 .support-products span {
    width: 100%; }
  .page-template-template-support-2019 .support-products img {
    margin-bottom: 0; }
  .page-template-template-support-2019 .support-products h4 {
    font-size: 0.95rem;
    margin-left: 1rem;
    margin-bottom: 0; }

.producttwo .support-products-row a {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%; }

.productfour .support-products-row a {
  -ms-flex-preferred-size: 22.5%;
  flex-basis: 22.5%; }

.support-products-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .support-products-row img {
    width: 32px;
    height: auto;
    margin-bottom: 0.75rem; }
  .support-products-row a {
    color: #030303;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.25rem 1rem;
    border: 1px solid #dfe3e8;
    margin: 0.6rem 1.2rem 0.6rem 0; }
  .support-products-row a:hover {
    text-decoration: underline;
    background: #FFFFFF; }
  .support-products-row span {
    width: 100%; }
  .support-products-row img {
    margin-bottom: 0; }
  .support-products-row h4 {
    font-size: 0.95rem;
    margin-left: 1rem;
    margin-bottom: 0; }

.telsmart-blue {
  border-left: 3px solid #FD7A23 !important; }

.telsmart-telefonie {
  border-left: 3px solid #C9E1CB !important; }

.telsmart-internet {
  border-left: 3px solid #6dd2e6 !important; }

.telsmart-security {
  border-left: 3px solid #EDABAB !important; }

.telsmart-continuity {
  border-left: 3px solid #180153 !important; }

.telsmart-productivity {
  border-left: 3px solid #E66D6D !important; }

.single-nogvragen {
  background-color: #dfe3e8;
  padding: 0.85rem;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 600; }

.nogvragen {
  background: #D0EBF3;
  padding: 2rem 1.25rem;
  margin-bottom: 4rem; }
  .nogvragen .button {
    background: #0D6697; }
  .nogvragen h3 {
    font-weight: bold; }

.supportnav {
  margin-left: 0;
  list-style: none;
  font-size: 0.9rem; }
  .supportnav li {
    padding: 0.25rem 0; }
  .supportnav a {
    color: #222222;
    text-decoration: underline; }
  .supportnav a:hover {
    color: #030303;
    text-decoration: none; }

.readmore {
  text-decoration: underline;
  margin: 1.5rem 0;
  display: block; }

button.helpful-pro.helpful-button, button.helpful-contra.helpful-button {
  max-width: 80px; }

@media screen and (max-width: 52.25em) {
  .page-template-template-support-2019 #home-header .homeblock {
    padding: 4rem 0; }
  .tax-cat_faq #home-header .homeblock {
    padding: 4rem 0; }
  .producttwo .support-products a, .productfour .support-products a {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important; } }

/*******/
/* supprt taxonomy category pagina */
.tax-cat_faq #home-header, .single-faqs #home-header {
  background-image: linear-gradient(180deg, #ADA0FF 0%, #F5F5F5 100%);
  padding: 0rem; }
  .tax-cat_faq #home-header h1, .tax-cat_faq #home-header h3, .single-faqs #home-header h1, .single-faqs #home-header h3 {
    color: #222222; }
  .tax-cat_faq #home-header .homeblock, .single-faqs #home-header .homeblock {
    padding: 4rem 0 10rem; }

.tax-cat_faq .otherq, .single-faqs .otherq {
  margin-bottom: 3rem; }

.tax-cat_faq .helpful, .single-faqs .helpful {
  border: none;
  padding: 1rem 0;
  margin: 0; }
  .tax-cat_faq .helpful .helpful-controls > div, .single-faqs .helpful .helpful-controls > div {
    width: auto; }
  .tax-cat_faq .helpful .helpful-controls > div > .helpful-button, .single-faqs .helpful .helpful-controls > div > .helpful-button {
    padding: 6px 30px;
    height: 26px; }
  .tax-cat_faq .helpful > .helpful-header > .helpful-headline, .single-faqs .helpful > .helpful-header > .helpful-headline {
    font-size: 1rem; }

@media screen and (max-width: 52.25em) {
  .tax-cat_faq #home-header .homeblock {
    padding: 4rem 0; } }

.single-faqs #home-header {
  background-image: linear-gradient(180deg, #ADA0FF 0%, #F5F5F5 100%);
  padding: 0rem; }
  .single-faqs #home-header .homeblock {
    padding: 4rem 0 6rem; }

.single-faqs .helpful > .helpful-content > .helpful-feedback-form > .helpful-button {
  padding: 0;
  height: 40px;
  max-height: 40px; }

.single-faqs .helpful-cancel {
  background: #dfe3e8 !important;
  color: #222222 !important; }

.single-faqs h1, .single-faqs h3 {
  color: #222222; }

.single-faqs h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem; }

.single-faqs .otherq {
  margin-bottom: 3rem; }

.single-faqs .faq-meta {
  font-size: 0.9rem; }

@media screen and (max-width: 52.25em) {
  .single-faqs #home-header .homeblock {
    padding: 4rem 0; } }

.search-results #home-header, .search-no-results #home-header {
  background-image: linear-gradient(180deg, #ADA0FF 0%, #F5F5F5 100%);
  padding: 0rem; }
  .search-results #home-header .homeblock, .search-no-results #home-header .homeblock {
    padding: 4rem 0 6rem; }

.helpful .helpful-controls {
  -ms-flex-direction: row !important;
  flex-direction: row !important; }

.page-id-2827 #home-header {
  background-image: linear-gradient(180deg, #ADA0FF 0%, #F5F5F5 100%) !important;
  padding: 0rem; }

.page-id-2827 .entry-content {
  margin-top: -8rem;
  z-index: 99999999;
  position: relative; }

/*********************
MEDIUM
*********************/
@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  .page-template-template-support #home-header .homeblock {
    padding: 6rem 0 20rem; } }

/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-support #home-header {
    background-image: url("../images/support-header-small.jpg"); }
    .page-template-template-support #home-header .homeblock {
      padding: 2rem 0 14rem; }
  .page-template-template-support .single-faqs .entry-content {
    font-size: 0.95rem; }
  .page-template-template-support .support-block {
    width: 90%;
    margin: 0 auto; }
    .page-template-template-support .support-block h2 {
      margin: 0 0 0.5rem;
      font-size: 1.25rem; }
    .page-template-template-support .support-block h6 {
      font-size: 1rem; }
    .page-template-template-support .support-block .columns {
      text-align: left !important;
      margin: 1rem 0; }
    .page-template-template-support .support-block img {
      float: left;
      height: 40px;
      width: auto; }
    .page-template-template-support .support-block .dienst-content {
      float: right;
      width: 75%; }
    .page-template-template-support .support-block .button {
      margin: 0.5rem 0 1rem 0;
      background: none;
      color: #1483CE;
      text-decoration: underline;
      box-shadow: none;
      padding: 0.5rem 0; }
  .page-template-template-supportproducts #home-header .homeblock {
    padding: 8rem 0 8rem; }
  .accordion-title, .is-active .accordion-title {
    font-size: 0.95rem; }
  .search-faqs {
    padding: 1rem; }
    .search-faqs .search-field, .search-faqs .search-submit {
      width: 100%;
      float: left;
      margin-bottom: 0.25rem !important; }
  .producttwo .support-products-row a, .productfour .support-products-row a {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
  .page-id-2827 .entry-content {
    margin-top: 0; } }

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

Stylesheet: IT Security Service Pack

*************************************************/
.page-template-template-gdpr .bgsecurity, .page-template-template-gdpr .subnav {
  background: #003399; }

.page-template-template-gdpr #home-header {
  padding: 1.5rem;
  background: #003399;
  background-image: url("../images/gdpr-large.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat; }
  .page-template-template-gdpr #home-header h1, .page-template-template-gdpr #home-header h2, .page-template-template-gdpr #home-header h3 {
    color: #FFFFFF; }
  .page-template-template-gdpr #home-header .homeblock {
    padding: 2rem 0 14rem; }

.page-template-template-gdpr #menu-it-packs li > a {
  color: #030303; }

.page-template-template-gdpr #menu-it-packs a:hover {
  color: #637381; }

.page-template-template-gdpr #gdpr-content {
  padding: 4rem 0;
  font-size: 1.25rem; }
  .page-template-template-gdpr #gdpr-content h3 {
    font-weight: 600;
    margin-bottom: 2rem; }

/*********************
MEDIUM
*********************/
/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-gdpr #home-header {
    background-image: url("../images/gdpr-small.jpg"); }
    .page-template-template-gdpr #home-header .homeblock {
      padding: 2rem 0 5rem; }
  .page-template-template-gdpr #gdpr-content {
    font-size: 1.1rem; } }

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

Stylesheet: Smart Telefonie

*************************************************/
.page-template-template-landing .bgtelefonie {
  background: #FFFFFF; }

.page-template-template-landing #startdiv {
  padding: 3rem 0;
  background: #FFFFFF; }
  .page-template-template-landing #startdiv .button {
    color: #FFFFFF; }

.page-template-template-landing h1 {
  margin-bottom: 1.5rem; }

.page-template-template-landing .button.large {
  font-size: 1.3rem; }

.page-template-template-landing .orangeheader {
  color: #FD7A23;
  font-weight: bold; }

.page-template-template-landing #tel-calout-one {
  text-align: center;
  padding: 4rem 0;
  font-size: 1.25rem; }
  .page-template-template-landing #tel-calout-one h2 {
    font-size: 3rem;
    margin-bottom: 2rem; }
  .page-template-template-landing #tel-calout-one ul {
    width: 50%;
    margin: 0 auto !important;
    text-align: left; }
  .page-template-template-landing #tel-calout-one ul, .page-template-template-landing #tel-calout-one li {
    list-style: none;
    margin: 0;
    position: relative; }
  .page-template-template-landing #tel-calout-one li {
    padding: 0.25rem 0 0.25rem 1.5rem; }
  .page-template-template-landing #tel-calout-one li:before {
    font-family: typicons;
    content: "\e11e";
    padding-right: 1rem;
    position: absolute;
    left: 0;
    color: #FD7A23; }
  .page-template-template-landing #tel-calout-one .button {
    color: #FFFFFF; }
  .page-template-template-landing #tel-calout-one .bx-wrapper {
    background: #FFFFFF; }

.page-template-template-landing #tel-voordelen {
  background: #FFFFFF;
  font-size: 1.25rem; }
  .page-template-template-landing #tel-voordelen .voordeel-info {
    padding: 6rem 6rem;
    background: #FFFFFF; }
  .page-template-template-landing #tel-voordelen h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    padding-bottom: 2rem; }
  .page-template-template-landing #tel-voordelen .indev-voordeel {
    min-height: 600px;
    position: relative; }
  .page-template-template-landing #tel-voordelen .voordeel-foto {
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 600px;
    position: relative; }
  .page-template-template-landing #tel-voordelen ul {
    margin: 0; }
  .page-template-template-landing #tel-voordelen li {
    list-style: none; }
  .page-template-template-landing #tel-voordelen li:before {
    font-family: typicons;
    content: "\e11e";
    padding-right: 1rem; }

.page-template-template-landing .featured-testimonials {
  background: #FFFFFF;
  padding: 3rem 0; }
  .page-template-template-landing .featured-testimonials .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .page-template-template-landing .featured-testimonials .testimonial {
    margin-bottom: 2rem; }
    .page-template-template-landing .featured-testimonials .testimonial img {
      height: 70px;
      border-radius: 100%;
      margin-right: 1rem;
      float: left; }
    .page-template-template-landing .featured-testimonials .testimonial p {
      padding-top: 0.5rem;
      margin-bottom: 0; }

.page-template-template-landing .tekst-onder-getuigenissen {
  font-size: 1rem;
  padding: 2rem 0; }
  .page-template-template-landing .tekst-onder-getuigenissen .button {
    color: #FFFFFF; }

/*********************
MEDIUM
*********************/
@media screen and (min-width: 52.3125em) and (max-width: 74.9375em) {
  .page-template-template-landing #home-header {
    font-size: 1.15rem; }
    .page-template-template-landing #home-header .homeblock {
      padding: 6rem 0; }
  .page-template-template-landing #tel-formules {
    font-size: 1.15rem;
    padding: 6rem 0 26rem; }
    .page-template-template-landing #tel-formules h2 {
      font-size: 2.5rem; }
    .page-template-template-landing #tel-formules h3 {
      padding: 0rem 0 1rem;
      font-size: 1.25rem; }
  .page-template-template-landing #tel-calout-one {
    padding: 6rem 0;
    font-size: 1.15rem; }
    .page-template-template-landing #tel-calout-one h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem; }
  .page-template-template-landing #tel-voordelen {
    font-size: 1rem; }
    .page-template-template-landing #tel-voordelen .voordeel-info {
      padding: 4rem 1.5rem; }
    .page-template-template-landing #tel-voordelen h3 {
      font-size: 1.5rem;
      padding-bottom: 1rem; }
    .page-template-template-landing #tel-voordelen .voordeel-foto, .page-template-template-landing #tel-voordelen .indev-voordeel {
      min-height: 450px; }
  .page-template-template-smarttelefoniefeatures #home-header {
    background: none;
    padding: 4rem 0; } }

/*********************
SMALL
*********************/
@media screen and (max-width: 52.25em) {
  .page-template-template-landing #tel-calout-one {
    padding: 2rem 0;
    font-size: 1rem; }
    .page-template-template-landing #tel-calout-one h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem; }
    .page-template-template-landing #tel-calout-one ul, .page-template-template-landing #tel-calout-one li {
      padding: 0.15rem 1.25rem; }
    .page-template-template-landing #tel-calout-one ul {
      width: 100%;
      text-align: left; }
    .page-template-template-landing #tel-calout-one li:before {
      padding-right: 0.5rem; }
  .page-template-template-landing #tel-voordelen {
    font-size: 1rem; }
    .page-template-template-landing #tel-voordelen .voordeel-info {
      padding: 4rem 1rem;
      background: #FFFFFF; }
    .page-template-template-landing #tel-voordelen h3 {
      font-size: 2rem;
      font-weight: 600;
      padding-bottom: 1rem; }
    .page-template-template-landing #tel-voordelen .voordeel-foto {
      background-repeat: no-repeat;
      display: block;
      background-size: cover;
      overflow: hidden;
      min-height: 300px; }
  .page-template-template-smarttelefoniefeatures #home-header {
    background: none;
    padding: 0rem 0; }
  .page-template-template-smarttelefoniefeatures h2 {
    font-size: 1.5rem; }
  .page-template-template-smarttelefoniefeatures .navbutton a {
    color: #030303 !important; } }

/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  margin: 0 auto; }

.bx-wrapper img {
  max-width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto; }

.bxslider {
  margin: 0;
  padding: 0; }

ul.bxslider {
  list-style: none; }

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0); }

.bx-wrapper, .bx-viewport {
  height: 95px !important; }

/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%; }

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("../images/bx_loader.gif") center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000; }

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px; }

.bx-wrapper .bx-pager.bx-default-pager a {
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px; }

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000; }

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline; }

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0; }

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: -50px;
  background: url("../images/controls.png") no-repeat 0 -32px; }

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0; }

.bx-wrapper .bx-next {
  right: -50px;
  background: url("../images/controls.png") no-repeat -43px -32px; }

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0; }

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999; }

.bx-wrapper .bx-controls-direction a.disabled {
  display: none; }

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center; }

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url("../images/controls.png") -86px -11px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0; }

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url("../images/controls.png") -86px -44px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px; }

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%; }

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px; }

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; }

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px; }

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms; }

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms; }

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s; }

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s; }

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s; }

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s; }

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s; }

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s; }

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s; }

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s; }

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s; }

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s; }

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s; }

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s; }

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s; }

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s; }

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s; }

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s; }

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s; }

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s; }

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s; }

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s; }

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s; }

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s; }

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s; }

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s; }

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s; }

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s; }

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s; }

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s; }

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s; }

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s; }

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s; }

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s; }

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s; }

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s; }

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s; }

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s; }

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s; }

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s; }

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s; }

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s; }

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s; }

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s; }

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s; }

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s; }

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s; }

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s; }

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s; }

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s; }

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s; }

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s; }

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s; }

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s; }

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s; }

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s; }

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s; }

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s; }

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s; }

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s; }

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s; }

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s; }

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s; }

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s; }

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s; }

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s; }

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s; }

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s; }

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s; }

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s; }

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s; }

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s; }

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s; }

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s; }

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s; }

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s; }

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s; }

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s; }

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s; }

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s; }

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s; }

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s; }

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s; }

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s; }

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s; }

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s; }

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s; }

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s; }

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s; }

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s; }

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s; }

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s; }

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s; }

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s; }

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s; }

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s; }

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s; }

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s; }

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s; }

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s; }

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s; }

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s; }

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s; }

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s; }

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s; }

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s; }

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s; }

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s; }

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s; }

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s; }

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s; }

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s; }

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s; }

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s; }

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s; }

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s; }

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s; }

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s; }

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s; }

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s; }

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease; }

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in; }

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out; }

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out; }

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,transform; }

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translate(0); }

[data-aos=fade-up] {
  transform: translateY(100px); }

[data-aos=fade-down] {
  transform: translateY(-100px); }

[data-aos=fade-right] {
  transform: translate(-100px); }

[data-aos=fade-left] {
  transform: translate(100px); }

[data-aos=fade-up-right] {
  transform: translate(-100px, 100px); }

[data-aos=fade-up-left] {
  transform: translate(100px, 100px); }

[data-aos=fade-down-right] {
  transform: translate(-100px, -100px); }

[data-aos=fade-down-left] {
  transform: translate(100px, -100px); }

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity,transform; }

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1); }

[data-aos=zoom-in] {
  transform: scale(0.6); }

[data-aos=zoom-in-up] {
  transform: translateY(100px) scale(0.6); }

[data-aos=zoom-in-down] {
  transform: translateY(-100px) scale(0.6); }

[data-aos=zoom-in-right] {
  transform: translate(-100px) scale(0.6); }

[data-aos=zoom-in-left] {
  transform: translate(100px) scale(0.6); }

[data-aos=zoom-out] {
  transform: scale(1.2); }

[data-aos=zoom-out-up] {
  transform: translateY(100px) scale(1.2); }

[data-aos=zoom-out-down] {
  transform: translateY(-100px) scale(1.2); }

[data-aos=zoom-out-right] {
  transform: translate(-100px) scale(1.2); }

[data-aos=zoom-out-left] {
  transform: translate(100px) scale(1.2); }

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform; }

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translate(0); }

[data-aos=slide-up] {
  transform: translateY(100%); }

[data-aos=slide-down] {
  transform: translateY(-100%); }

[data-aos=slide-right] {
  transform: translateX(-100%); }

[data-aos=slide-left] {
  transform: translateX(100%); }

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform; }

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg); }

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg); }

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg); }

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0); }

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg); }

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0); }

/*# sourceMappingURL=aos.css.map*/
/******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

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

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    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; } }
