/*!
Theme Name: NF Base
Theme URI: -
Author: Tom Deser & Neue Formation GmbH
Author URI: http://www.tomdeser.de
Description: Description
Version: 0.6.0
License: -
License URI: -
Text Domain: nfbase
Tags: -

*/
/* variables */
/*Layout*/
/* typo */
/*breakpoint*/
/* main-nav */
/* this is only an estimation */
/* cursor */
/* animation */
/* mixins */
/* helper */
/* mixin: works with pixels only */
/* base */
/*--------------
  Hide on Breakpoints
--------------*/
@media only screen and (min-width: 767px) {
  .hide-sm-up {
    display: none !important;
  }
}
@media only screen and (max-width: 766.98px) {
  .hide-sm-down {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .hide-md-up {
    display: none !important;
  }
}
@media only screen and (max-width: 991.98px) {
  .hide-md-down {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .hide-lg-up {
    display: none !important;
  }
}
@media only screen and (max-width: 1023.98px) {
  .hide-lg-down {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .hide-xl-up {
    display: none !important;
  }
}
@media only screen and (max-width: 1199.98px) {
  .hide-xl-down {
    display: none !important;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  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
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 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 */
}

/**
 * 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 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

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

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

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* box-sizing: border-box */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* remove top margin */
h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p, li {
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
}

body:not(.wp-admin) {
  overflow-x: hidden;
}

body.user-is-tabbing *:focus {
  outline: 2px solid #7AACFE !important;
  /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color !important;
}

/* layout */
.main-content > *:first-child {
  padding-top: 120px;
}

.main-content > *:not(.wp-block-nf-blocks-row):not(.alignfull) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1200px) {
  .main-content > *:not(.wp-block-nf-blocks-row):not(.alignfull) {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .main-content > *:not(.wp-block-nf-blocks-row):not(.alignfull) {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .main-content > *:not(.wp-block-nf-blocks-row):not(.alignfull) {
    max-width: 700px;
  }
}

.no-text-deco {
  text-decoration: none;
}

/* utility */
.text-display {
  font-weight: 600;
  font-size: 32px;
}
@media screen and (min-width: 767px) {
  .text-display {
    font-size: calc( 32px + 24 * ((100vw - 767px) / 257));
  }
}
@media screen and (min-width: 1024px) {
  .text-display {
    font-size: 56px;
  }
}

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

/* forms & inputs */
input[type=text], input[type=email], textarea, select {
  padding: 12px;
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: none;
  outline: none;
}
input[type=text]:active, input[type=text]:focus, input[type=email]:active, input[type=email]:focus, textarea:active, textarea:focus, select:active, select:focus {
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.2);
}

input[type=submit] {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-color: #000;
  border: 1px solid #000;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  display: inline-block;
}
input[type=submit]::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.1;
  background-color: currentColor;
  transition: 0.5s all;
}
input[type=submit] .icon-forward, input[type=submit] .icon-back {
  transition: transform 0.3s;
}
input[type=submit]:hover::before {
  width: 100%;
  left: 0;
  right: unset;
}
input[type=submit]:hover .icon-back {
  transform: translateX(-5px);
}
input[type=submit]:hover .icon-forward {
  transform: translateX(5px);
}

/* lists */
ul {
  padding-left: 1.5em;
}

/* media */
img {
  height: auto;
}

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

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 700px;
  }
}

.container-full {
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.row {
  position: relative;
  display: block;
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.row::after {
  content: "";
  float: none;
  clear: both;
  display: table;
}

[class^=col-] {
  box-sizing: border-box;
  width: 100%;
  min-height: 1px;
  max-width: 100%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.col-1 {
  box-sizing: border-box;
  width: 8.3333333333%;
  min-height: 1px;
  max-width: 8.3333333333%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-1 {
  margin-left: 8.3333333333% !important;
}

.col-2 {
  box-sizing: border-box;
  width: 16.6666666667%;
  min-height: 1px;
  max-width: 16.6666666667%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-2 {
  margin-left: 16.6666666667% !important;
}

.col-3 {
  box-sizing: border-box;
  width: 25%;
  min-height: 1px;
  max-width: 25%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

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

.col-4 {
  box-sizing: border-box;
  width: 33.3333333333%;
  min-height: 1px;
  max-width: 33.3333333333%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-4 {
  margin-left: 33.3333333333% !important;
}

.col-5 {
  box-sizing: border-box;
  width: 41.6666666667%;
  min-height: 1px;
  max-width: 41.6666666667%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-5 {
  margin-left: 41.6666666667% !important;
}

.col-6 {
  box-sizing: border-box;
  width: 50%;
  min-height: 1px;
  max-width: 50%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

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

.col-7 {
  box-sizing: border-box;
  width: 58.3333333333%;
  min-height: 1px;
  max-width: 58.3333333333%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-7 {
  margin-left: 58.3333333333% !important;
}

.col-8 {
  box-sizing: border-box;
  width: 66.6666666667%;
  min-height: 1px;
  max-width: 66.6666666667%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-8 {
  margin-left: 66.6666666667% !important;
}

.col-9 {
  box-sizing: border-box;
  width: 75%;
  min-height: 1px;
  max-width: 75%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

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

.col-10 {
  box-sizing: border-box;
  width: 83.3333333333%;
  min-height: 1px;
  max-width: 83.3333333333%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-10 {
  margin-left: 83.3333333333% !important;
}

.col-11 {
  box-sizing: border-box;
  width: 91.6666666667%;
  min-height: 1px;
  max-width: 91.6666666667%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-11 {
  margin-left: 91.6666666667% !important;
}

.col-12 {
  box-sizing: border-box;
  width: 100%;
  min-height: 1px;
  max-width: 100%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.offset-12 {
  margin-left: 100% !important;
}

@media only screen and (min-width: 767px) {
  .col-sm-1 {
    box-sizing: border-box;
    width: 8.3333333333%;
    min-height: 1px;
    max-width: 8.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333% !important;
  }

  .col-sm-2 {
    box-sizing: border-box;
    width: 16.6666666667%;
    min-height: 1px;
    max-width: 16.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667% !important;
  }

  .col-sm-3 {
    box-sizing: border-box;
    width: 25%;
    min-height: 1px;
    max-width: 25%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-3 {
    margin-left: 25% !important;
  }

  .col-sm-4 {
    box-sizing: border-box;
    width: 33.3333333333%;
    min-height: 1px;
    max-width: 33.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333% !important;
  }

  .col-sm-5 {
    box-sizing: border-box;
    width: 41.6666666667%;
    min-height: 1px;
    max-width: 41.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667% !important;
  }

  .col-sm-6 {
    box-sizing: border-box;
    width: 50%;
    min-height: 1px;
    max-width: 50%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-6 {
    margin-left: 50% !important;
  }

  .col-sm-7 {
    box-sizing: border-box;
    width: 58.3333333333%;
    min-height: 1px;
    max-width: 58.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333% !important;
  }

  .col-sm-8 {
    box-sizing: border-box;
    width: 66.6666666667%;
    min-height: 1px;
    max-width: 66.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667% !important;
  }

  .col-sm-9 {
    box-sizing: border-box;
    width: 75%;
    min-height: 1px;
    max-width: 75%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-9 {
    margin-left: 75% !important;
  }

  .col-sm-10 {
    box-sizing: border-box;
    width: 83.3333333333%;
    min-height: 1px;
    max-width: 83.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333% !important;
  }

  .col-sm-11 {
    box-sizing: border-box;
    width: 91.6666666667%;
    min-height: 1px;
    max-width: 91.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667% !important;
  }

  .col-sm-12 {
    box-sizing: border-box;
    width: 100%;
    min-height: 1px;
    max-width: 100%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-sm-12 {
    margin-left: 100% !important;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-1 {
    box-sizing: border-box;
    width: 8.3333333333%;
    min-height: 1px;
    max-width: 8.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-1 {
    margin-left: 8.3333333333% !important;
  }

  .col-md-2 {
    box-sizing: border-box;
    width: 16.6666666667%;
    min-height: 1px;
    max-width: 16.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-2 {
    margin-left: 16.6666666667% !important;
  }

  .col-md-3 {
    box-sizing: border-box;
    width: 25%;
    min-height: 1px;
    max-width: 25%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-3 {
    margin-left: 25% !important;
  }

  .col-md-4 {
    box-sizing: border-box;
    width: 33.3333333333%;
    min-height: 1px;
    max-width: 33.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-4 {
    margin-left: 33.3333333333% !important;
  }

  .col-md-5 {
    box-sizing: border-box;
    width: 41.6666666667%;
    min-height: 1px;
    max-width: 41.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-5 {
    margin-left: 41.6666666667% !important;
  }

  .col-md-6 {
    box-sizing: border-box;
    width: 50%;
    min-height: 1px;
    max-width: 50%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-6 {
    margin-left: 50% !important;
  }

  .col-md-7 {
    box-sizing: border-box;
    width: 58.3333333333%;
    min-height: 1px;
    max-width: 58.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-7 {
    margin-left: 58.3333333333% !important;
  }

  .col-md-8 {
    box-sizing: border-box;
    width: 66.6666666667%;
    min-height: 1px;
    max-width: 66.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-8 {
    margin-left: 66.6666666667% !important;
  }

  .col-md-9 {
    box-sizing: border-box;
    width: 75%;
    min-height: 1px;
    max-width: 75%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-9 {
    margin-left: 75% !important;
  }

  .col-md-10 {
    box-sizing: border-box;
    width: 83.3333333333%;
    min-height: 1px;
    max-width: 83.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-10 {
    margin-left: 83.3333333333% !important;
  }

  .col-md-11 {
    box-sizing: border-box;
    width: 91.6666666667%;
    min-height: 1px;
    max-width: 91.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-11 {
    margin-left: 91.6666666667% !important;
  }

  .col-md-12 {
    box-sizing: border-box;
    width: 100%;
    min-height: 1px;
    max-width: 100%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-md-12 {
    margin-left: 100% !important;
  }
}
@media only screen and (min-width: 1024px) {
  .col-lg-1 {
    box-sizing: border-box;
    width: 8.3333333333%;
    min-height: 1px;
    max-width: 8.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333% !important;
  }

  .col-lg-2 {
    box-sizing: border-box;
    width: 16.6666666667%;
    min-height: 1px;
    max-width: 16.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667% !important;
  }

  .col-lg-3 {
    box-sizing: border-box;
    width: 25%;
    min-height: 1px;
    max-width: 25%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-3 {
    margin-left: 25% !important;
  }

  .col-lg-4 {
    box-sizing: border-box;
    width: 33.3333333333%;
    min-height: 1px;
    max-width: 33.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333% !important;
  }

  .col-lg-5 {
    box-sizing: border-box;
    width: 41.6666666667%;
    min-height: 1px;
    max-width: 41.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667% !important;
  }

  .col-lg-6 {
    box-sizing: border-box;
    width: 50%;
    min-height: 1px;
    max-width: 50%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-6 {
    margin-left: 50% !important;
  }

  .col-lg-7 {
    box-sizing: border-box;
    width: 58.3333333333%;
    min-height: 1px;
    max-width: 58.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333% !important;
  }

  .col-lg-8 {
    box-sizing: border-box;
    width: 66.6666666667%;
    min-height: 1px;
    max-width: 66.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667% !important;
  }

  .col-lg-9 {
    box-sizing: border-box;
    width: 75%;
    min-height: 1px;
    max-width: 75%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-9 {
    margin-left: 75% !important;
  }

  .col-lg-10 {
    box-sizing: border-box;
    width: 83.3333333333%;
    min-height: 1px;
    max-width: 83.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333% !important;
  }

  .col-lg-11 {
    box-sizing: border-box;
    width: 91.6666666667%;
    min-height: 1px;
    max-width: 91.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667% !important;
  }

  .col-lg-12 {
    box-sizing: border-box;
    width: 100%;
    min-height: 1px;
    max-width: 100%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-lg-12 {
    margin-left: 100% !important;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-1 {
    box-sizing: border-box;
    width: 8.3333333333%;
    min-height: 1px;
    max-width: 8.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333% !important;
  }

  .col-xl-2 {
    box-sizing: border-box;
    width: 16.6666666667%;
    min-height: 1px;
    max-width: 16.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667% !important;
  }

  .col-xl-3 {
    box-sizing: border-box;
    width: 25%;
    min-height: 1px;
    max-width: 25%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-3 {
    margin-left: 25% !important;
  }

  .col-xl-4 {
    box-sizing: border-box;
    width: 33.3333333333%;
    min-height: 1px;
    max-width: 33.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333% !important;
  }

  .col-xl-5 {
    box-sizing: border-box;
    width: 41.6666666667%;
    min-height: 1px;
    max-width: 41.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667% !important;
  }

  .col-xl-6 {
    box-sizing: border-box;
    width: 50%;
    min-height: 1px;
    max-width: 50%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-6 {
    margin-left: 50% !important;
  }

  .col-xl-7 {
    box-sizing: border-box;
    width: 58.3333333333%;
    min-height: 1px;
    max-width: 58.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333% !important;
  }

  .col-xl-8 {
    box-sizing: border-box;
    width: 66.6666666667%;
    min-height: 1px;
    max-width: 66.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667% !important;
  }

  .col-xl-9 {
    box-sizing: border-box;
    width: 75%;
    min-height: 1px;
    max-width: 75%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-9 {
    margin-left: 75% !important;
  }

  .col-xl-10 {
    box-sizing: border-box;
    width: 83.3333333333%;
    min-height: 1px;
    max-width: 83.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333% !important;
  }

  .col-xl-11 {
    box-sizing: border-box;
    width: 91.6666666667%;
    min-height: 1px;
    max-width: 91.6666666667%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667% !important;
  }

  .col-xl-12 {
    box-sizing: border-box;
    width: 100%;
    min-height: 1px;
    max-width: 100%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }

  .offset-xl-12 {
    margin-left: 100% !important;
  }
}
/* this stylesheet provides styles for the nf-blocks plugin */
.nfb-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1200px) {
  .nfb-container {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .nfb-container {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .nfb-container {
    max-width: 700px;
  }
}

.wp-block-nf-blocks-row {
  max-width: 100%;
}
.wp-block-nf-blocks-row.alignfull {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.wp-block-nf-blocks-row.alignfull > .nfb-container {
  max-width: 100%;
}

.main-content > .wp-block-nf-blocks-row:first-child {
  padding-top: 70px;
}

.wp-block-nf-blocks-box.has-padding-right {
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .wp-block-nf-blocks-box.has-padding-right {
    padding-right: 2rem;
  }
}
.wp-block-nf-blocks-box.has-padding-left {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .wp-block-nf-blocks-box.has-padding-left {
    padding-left: 2rem;
  }
}
.wp-block-nf-blocks-box.has-padding-top {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .wp-block-nf-blocks-box.has-padding-top {
    padding-top: 2rem;
  }
}
.wp-block-nf-blocks-box.has-padding-bottom {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .wp-block-nf-blocks-box.has-padding-bottom {
    padding-bottom: 2rem;
  }
}

/* animation */
/** 
  * This file contains reusable keyframes. 
  * Specific Keyframes might be inside component scss
  * files where it is used 
  */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* components */
/* _main-nav.scss*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.5rem;
  transition: 0.5s transform;
  line-height: 24px;
  /* headroom */
}
@media (max-width: 767px) {
  .navbar {
    padding: 1rem;
  }
}
.navbar::after {
  content: "";
  float: none;
  clear: both;
  display: table;
}
.navbar.headroom--not-top.headroom--unpinned:not(.open) {
  transform: translateY(-100%);
}
.navbar > .container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.admin-bar .navbar {
  top: 32px;
}

/* desktop menu */
.main-nav-desktop {
  margin: 0;
  padding: 0 1rem;
}
.main-nav-desktop ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.main-nav-desktop .menu-item, .main-nav-desktop .page-item {
  display: inline-block;
  position: relative;
  margin-right: 1rem;
  margin-left: 1rem;
  line-height: 24px;
}
@media (max-width: 992px) {
  .main-nav-desktop {
    display: none;
  }
}
.main-nav-desktop .menu-item-has-children {
  position: relative;
  box-sizing: border-box;
}
.main-nav-desktop .menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.main-nav-desktop .menu-item-has-children ul.open {
  opacity: 1;
  visibility: visible;
  height: auto !important;
}
.main-nav-desktop .menu-item-has-children > ul {
  position: relative;
  opacity: 0;
  visibility: hidden;
  list-style: none;
  border-radius: 0.5rem;
  margin: 0;
  color: #fff;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 1rem);
  width: 10rem;
  right: calc(50% - 5rem);
  z-index: 1;
  background-color: #000000;
  transform: translateY(0);
  transition: opacity 0.15s linear, transform 0.15s linear;
}
.main-nav-desktop .menu-item-has-children > ul > li {
  padding: 0.5rem 0;
}
.main-nav-desktop .menu-item-has-children > ul::before, .main-nav-desktop .menu-item-has-children > ul::after {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  bottom: 100%;
}
.main-nav-desktop .menu-item-has-children > ul::after {
  width: 1rem;
  background-color: inherit;
  left: calc(50% - .5rem);
  transform: rotate(45deg);
  top: -0.3rem;
}
.main-nav-desktop .menu-item-has-children .menu-dropdown-button {
  height: 1px;
  overflow: hidden;
  position: absolute;
  left: 100%;
  margin-left: 5px;
}
.main-nav-desktop .menu-item-has-children .menu-dropdown-button:focus {
  height: auto;
  overflow: visible;
}
.main-nav-desktop .menu-item-has-children .menu-dropdown-button::before {
  width: 0.5rem;
  height: 0.5rem;
}

@keyframes menuItemIn {
  0% {
    transform: translateY(1em);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes mainNavIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* menu-button */
.js-mobile-nav-btn, .js-expanded-nav-btn {
  position: relative;
  margin: -1rem;
  padding: 1rem;
  box-sizing: content-box;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  height: 24px;
  width: 24px;
  color: inherit;
}

@media (min-width: 992px) {
  .js-mobile-nav-btn {
    display: none;
  }
}

@media (max-width: 992px) {
  .js-expanded-nav-btn {
    display: none;
  }
}

.nav-icon {
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  height: 2px;
  width: 24px;
  color: inherit;
  background-color: transparent;
  /* three lines modifier */
  /* three dots modifier */
}
.nav-icon::before, .nav-icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentColor;
  transition: 0.5s transform;
  border-radius: inherit;
}
.nav-icon::before {
  bottom: 4px;
  left: 0;
}
.nav-icon::after {
  top: 4px;
  left: 0;
}
.nav-icon.has-three-lines {
  background-color: currentColor;
}
.nav-icon.has-three-lines::before {
  bottom: 6px;
}
.nav-icon.has-three-lines::after {
  top: 6px;
}
.nav-icon.has-three-dots {
  left: calc(50% - 1px);
  transform: rotate(90deg);
  width: 3px;
  height: 3px;
  background-color: currentColor;
  border-radius: 3px;
}
.nav-icon.has-three-dots::before {
  bottom: 8px;
}
.nav-icon.has-three-dots::after {
  top: 8px;
}

.open > .nav-icon {
  background-color: transparent;
  /* three lines modifier */
  /* three dots modifier */
}
.open > .nav-icon::before {
  transform: translateY(4px) rotate(45deg);
}
.open > .nav-icon::after {
  width: 100%;
  transform: translateY(-4px) rotate(-45deg);
}
.open > .nav-icon.has-three-lines::before {
  transform: translateY(6px) rotate(45deg);
}
.open > .nav-icon.has-three-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}
.open > .nav-icon.has-three-dots {
  width: 24px;
  left: unset;
  transform: rotate(0);
}
.open > .nav-icon.has-three-dots::before {
  transform: translateY(8px) rotate(45deg);
}
.open > .nav-icon.has-three-dots::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* menu-container */
.expanded-nav, .mobile-nav {
  display: none;
  position: fixed;
  background-color: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 1.5rem;
  animation: 0.5s mainNavIn;
  z-index: 9;
  overflow: auto;
}
.expanded-nav::-webkit-scrollbar, .mobile-nav::-webkit-scrollbar {
  width: 0 !important;
}
.expanded-nav.open, .mobile-nav.open {
  display: block;
}
.expanded-nav__container, .mobile-nav__container {
  padding-top: 8rem;
  padding-bottom: 8rem;
  margin: auto;
}
@media (max-width: 767px) {
  .expanded-nav__container, .mobile-nav__container {
    width: 100%;
  }
}
.expanded-nav__container ul, .mobile-nav__container ul {
  padding: 0;
}
.expanded-nav__container .menu, .mobile-nav__container .menu {
  vertical-align: middle;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.expanded-nav__container .menu-item, .expanded-nav__container .page_item, .mobile-nav__container .menu-item, .mobile-nav__container .page_item {
  animation: 1s menuItemIn cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: both;
  /*font-size: 5vw;*/
  font-weight: 600;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  line-height: 1.4;
  font-size: 32px;
}
.expanded-nav__container .menu-item:nth-child(1), .expanded-nav__container .page_item:nth-child(1), .mobile-nav__container .menu-item:nth-child(1), .mobile-nav__container .page_item:nth-child(1) {
  animation-delay: 0.05s;
}
.expanded-nav__container .menu-item:nth-child(2), .expanded-nav__container .page_item:nth-child(2), .mobile-nav__container .menu-item:nth-child(2), .mobile-nav__container .page_item:nth-child(2) {
  animation-delay: 0.1s;
}
.expanded-nav__container .menu-item:nth-child(3), .expanded-nav__container .page_item:nth-child(3), .mobile-nav__container .menu-item:nth-child(3), .mobile-nav__container .page_item:nth-child(3) {
  animation-delay: 0.15s;
}
.expanded-nav__container .menu-item:nth-child(4), .expanded-nav__container .page_item:nth-child(4), .mobile-nav__container .menu-item:nth-child(4), .mobile-nav__container .page_item:nth-child(4) {
  animation-delay: 0.2s;
}
.expanded-nav__container .menu-item:nth-child(5), .expanded-nav__container .page_item:nth-child(5), .mobile-nav__container .menu-item:nth-child(5), .mobile-nav__container .page_item:nth-child(5) {
  animation-delay: 0.25s;
}
.expanded-nav__container .menu-item:nth-child(6), .expanded-nav__container .page_item:nth-child(6), .mobile-nav__container .menu-item:nth-child(6), .mobile-nav__container .page_item:nth-child(6) {
  animation-delay: 0.3s;
}
.expanded-nav__container .menu-item:nth-child(7), .expanded-nav__container .page_item:nth-child(7), .mobile-nav__container .menu-item:nth-child(7), .mobile-nav__container .page_item:nth-child(7) {
  animation-delay: 0.35s;
}
.expanded-nav__container .menu-item:nth-child(8), .expanded-nav__container .page_item:nth-child(8), .mobile-nav__container .menu-item:nth-child(8), .mobile-nav__container .page_item:nth-child(8) {
  animation-delay: 0.4s;
}
.expanded-nav__container .menu-item:nth-child(9), .expanded-nav__container .page_item:nth-child(9), .mobile-nav__container .menu-item:nth-child(9), .mobile-nav__container .page_item:nth-child(9) {
  animation-delay: 0.45s;
}
.expanded-nav__container .menu-item:nth-child(10), .expanded-nav__container .page_item:nth-child(10), .mobile-nav__container .menu-item:nth-child(10), .mobile-nav__container .page_item:nth-child(10) {
  animation-delay: 0.5s;
}
.expanded-nav__container .menu-item:nth-child(11), .expanded-nav__container .page_item:nth-child(11), .mobile-nav__container .menu-item:nth-child(11), .mobile-nav__container .page_item:nth-child(11) {
  animation-delay: 0.55s;
}
.expanded-nav__container .menu-item:nth-child(12), .expanded-nav__container .page_item:nth-child(12), .mobile-nav__container .menu-item:nth-child(12), .mobile-nav__container .page_item:nth-child(12) {
  animation-delay: 0.6s;
}
.expanded-nav__container .menu-item:nth-child(13), .expanded-nav__container .page_item:nth-child(13), .mobile-nav__container .menu-item:nth-child(13), .mobile-nav__container .page_item:nth-child(13) {
  animation-delay: 0.65s;
}
.expanded-nav__container .menu-item:nth-child(14), .expanded-nav__container .page_item:nth-child(14), .mobile-nav__container .menu-item:nth-child(14), .mobile-nav__container .page_item:nth-child(14) {
  animation-delay: 0.7s;
}
.expanded-nav__container .menu-item:nth-child(15), .expanded-nav__container .page_item:nth-child(15), .mobile-nav__container .menu-item:nth-child(15), .mobile-nav__container .page_item:nth-child(15) {
  animation-delay: 0.75s;
}
.expanded-nav__container .menu-item:nth-child(16), .expanded-nav__container .page_item:nth-child(16), .mobile-nav__container .menu-item:nth-child(16), .mobile-nav__container .page_item:nth-child(16) {
  animation-delay: 0.8s;
}
.expanded-nav__container .menu-item:nth-child(17), .expanded-nav__container .page_item:nth-child(17), .mobile-nav__container .menu-item:nth-child(17), .mobile-nav__container .page_item:nth-child(17) {
  animation-delay: 0.85s;
}
.expanded-nav__container .menu-item:nth-child(18), .expanded-nav__container .page_item:nth-child(18), .mobile-nav__container .menu-item:nth-child(18), .mobile-nav__container .page_item:nth-child(18) {
  animation-delay: 0.9s;
}
.expanded-nav__container .menu-item:nth-child(19), .expanded-nav__container .page_item:nth-child(19), .mobile-nav__container .menu-item:nth-child(19), .mobile-nav__container .page_item:nth-child(19) {
  animation-delay: 0.95s;
}
.expanded-nav__container .menu-item:nth-child(20), .expanded-nav__container .page_item:nth-child(20), .mobile-nav__container .menu-item:nth-child(20), .mobile-nav__container .page_item:nth-child(20) {
  animation-delay: 1s;
}
.expanded-nav__container .menu-item:nth-child(21), .expanded-nav__container .page_item:nth-child(21), .mobile-nav__container .menu-item:nth-child(21), .mobile-nav__container .page_item:nth-child(21) {
  animation-delay: 1.05s;
}
.expanded-nav__container .menu-item:nth-child(22), .expanded-nav__container .page_item:nth-child(22), .mobile-nav__container .menu-item:nth-child(22), .mobile-nav__container .page_item:nth-child(22) {
  animation-delay: 1.1s;
}
.expanded-nav__container .menu-item:nth-child(23), .expanded-nav__container .page_item:nth-child(23), .mobile-nav__container .menu-item:nth-child(23), .mobile-nav__container .page_item:nth-child(23) {
  animation-delay: 1.15s;
}
.expanded-nav__container .menu-item:nth-child(24), .expanded-nav__container .page_item:nth-child(24), .mobile-nav__container .menu-item:nth-child(24), .mobile-nav__container .page_item:nth-child(24) {
  animation-delay: 1.2s;
}
.expanded-nav__container .menu-item:nth-child(25), .expanded-nav__container .page_item:nth-child(25), .mobile-nav__container .menu-item:nth-child(25), .mobile-nav__container .page_item:nth-child(25) {
  animation-delay: 1.25s;
}
.expanded-nav__container .menu-item:nth-child(26), .expanded-nav__container .page_item:nth-child(26), .mobile-nav__container .menu-item:nth-child(26), .mobile-nav__container .page_item:nth-child(26) {
  animation-delay: 1.3s;
}
.expanded-nav__container .menu-item:nth-child(27), .expanded-nav__container .page_item:nth-child(27), .mobile-nav__container .menu-item:nth-child(27), .mobile-nav__container .page_item:nth-child(27) {
  animation-delay: 1.35s;
}
.expanded-nav__container .menu-item:nth-child(28), .expanded-nav__container .page_item:nth-child(28), .mobile-nav__container .menu-item:nth-child(28), .mobile-nav__container .page_item:nth-child(28) {
  animation-delay: 1.4s;
}
.expanded-nav__container .menu-item:nth-child(29), .expanded-nav__container .page_item:nth-child(29), .mobile-nav__container .menu-item:nth-child(29), .mobile-nav__container .page_item:nth-child(29) {
  animation-delay: 1.45s;
}
.expanded-nav__container .menu-item:nth-child(30), .expanded-nav__container .page_item:nth-child(30), .mobile-nav__container .menu-item:nth-child(30), .mobile-nav__container .page_item:nth-child(30) {
  animation-delay: 1.5s;
}
.expanded-nav__container .menu-item:nth-child(31), .expanded-nav__container .page_item:nth-child(31), .mobile-nav__container .menu-item:nth-child(31), .mobile-nav__container .page_item:nth-child(31) {
  animation-delay: 1.55s;
}
.expanded-nav__container .menu-item:nth-child(32), .expanded-nav__container .page_item:nth-child(32), .mobile-nav__container .menu-item:nth-child(32), .mobile-nav__container .page_item:nth-child(32) {
  animation-delay: 1.6s;
}
.expanded-nav__container .menu-item:nth-child(33), .expanded-nav__container .page_item:nth-child(33), .mobile-nav__container .menu-item:nth-child(33), .mobile-nav__container .page_item:nth-child(33) {
  animation-delay: 1.65s;
}
.expanded-nav__container .menu-item:nth-child(34), .expanded-nav__container .page_item:nth-child(34), .mobile-nav__container .menu-item:nth-child(34), .mobile-nav__container .page_item:nth-child(34) {
  animation-delay: 1.7s;
}
.expanded-nav__container .menu-item:nth-child(35), .expanded-nav__container .page_item:nth-child(35), .mobile-nav__container .menu-item:nth-child(35), .mobile-nav__container .page_item:nth-child(35) {
  animation-delay: 1.75s;
}
.expanded-nav__container .menu-item:nth-child(36), .expanded-nav__container .page_item:nth-child(36), .mobile-nav__container .menu-item:nth-child(36), .mobile-nav__container .page_item:nth-child(36) {
  animation-delay: 1.8s;
}
.expanded-nav__container .menu-item:nth-child(37), .expanded-nav__container .page_item:nth-child(37), .mobile-nav__container .menu-item:nth-child(37), .mobile-nav__container .page_item:nth-child(37) {
  animation-delay: 1.85s;
}
.expanded-nav__container .menu-item:nth-child(38), .expanded-nav__container .page_item:nth-child(38), .mobile-nav__container .menu-item:nth-child(38), .mobile-nav__container .page_item:nth-child(38) {
  animation-delay: 1.9s;
}
.expanded-nav__container .menu-item:nth-child(39), .expanded-nav__container .page_item:nth-child(39), .mobile-nav__container .menu-item:nth-child(39), .mobile-nav__container .page_item:nth-child(39) {
  animation-delay: 1.95s;
}
.expanded-nav__container .menu-item:nth-child(40), .expanded-nav__container .page_item:nth-child(40), .mobile-nav__container .menu-item:nth-child(40), .mobile-nav__container .page_item:nth-child(40) {
  animation-delay: 2s;
}
.expanded-nav__container .menu-item:nth-child(41), .expanded-nav__container .page_item:nth-child(41), .mobile-nav__container .menu-item:nth-child(41), .mobile-nav__container .page_item:nth-child(41) {
  animation-delay: 2.05s;
}
.expanded-nav__container .menu-item:nth-child(42), .expanded-nav__container .page_item:nth-child(42), .mobile-nav__container .menu-item:nth-child(42), .mobile-nav__container .page_item:nth-child(42) {
  animation-delay: 2.1s;
}
.expanded-nav__container .menu-item:nth-child(43), .expanded-nav__container .page_item:nth-child(43), .mobile-nav__container .menu-item:nth-child(43), .mobile-nav__container .page_item:nth-child(43) {
  animation-delay: 2.15s;
}
.expanded-nav__container .menu-item:nth-child(44), .expanded-nav__container .page_item:nth-child(44), .mobile-nav__container .menu-item:nth-child(44), .mobile-nav__container .page_item:nth-child(44) {
  animation-delay: 2.2s;
}
.expanded-nav__container .menu-item:nth-child(45), .expanded-nav__container .page_item:nth-child(45), .mobile-nav__container .menu-item:nth-child(45), .mobile-nav__container .page_item:nth-child(45) {
  animation-delay: 2.25s;
}
.expanded-nav__container .menu-item:nth-child(46), .expanded-nav__container .page_item:nth-child(46), .mobile-nav__container .menu-item:nth-child(46), .mobile-nav__container .page_item:nth-child(46) {
  animation-delay: 2.3s;
}
.expanded-nav__container .menu-item:nth-child(47), .expanded-nav__container .page_item:nth-child(47), .mobile-nav__container .menu-item:nth-child(47), .mobile-nav__container .page_item:nth-child(47) {
  animation-delay: 2.35s;
}
.expanded-nav__container .menu-item:nth-child(48), .expanded-nav__container .page_item:nth-child(48), .mobile-nav__container .menu-item:nth-child(48), .mobile-nav__container .page_item:nth-child(48) {
  animation-delay: 2.4s;
}
.expanded-nav__container .menu-item:nth-child(49), .expanded-nav__container .page_item:nth-child(49), .mobile-nav__container .menu-item:nth-child(49), .mobile-nav__container .page_item:nth-child(49) {
  animation-delay: 2.45s;
}
.expanded-nav__container .menu-item:nth-child(50), .expanded-nav__container .page_item:nth-child(50), .mobile-nav__container .menu-item:nth-child(50), .mobile-nav__container .page_item:nth-child(50) {
  animation-delay: 2.5s;
}
@media screen and (min-width: 767px) {
  .expanded-nav__container .menu-item, .expanded-nav__container .page_item, .mobile-nav__container .menu-item, .mobile-nav__container .page_item {
    font-size: calc( 32px + 24 * ((100vw - 767px) / 257));
  }
}
@media screen and (min-width: 1024px) {
  .expanded-nav__container .menu-item, .expanded-nav__container .page_item, .mobile-nav__container .menu-item, .mobile-nav__container .page_item {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .expanded-nav__container .menu-item, .expanded-nav__container .page_item, .mobile-nav__container .menu-item, .mobile-nav__container .page_item {
    hyphens: auto;
  }
}
.expanded-nav__container .menu-item > a, .expanded-nav__container .page_item > a, .mobile-nav__container .menu-item > a, .mobile-nav__container .page_item > a {
  transition: 0.2s padding;
}
.expanded-nav__container .menu-item > a:hover, .expanded-nav__container .page_item > a:hover, .mobile-nav__container .menu-item > a:hover, .mobile-nav__container .page_item > a:hover {
  padding-left: 0.2em;
}
.expanded-nav__container .menu-item a, .expanded-nav__container .page_item a, .mobile-nav__container .menu-item a, .mobile-nav__container .page_item a {
  text-decoration: none;
  color: inherit;
}
.expanded-nav .menu-item-has-children > .sub-menu, .mobile-nav .menu-item-has-children > .sub-menu {
  padding-left: 0.5rem;
  height: 0;
  overflow: hidden;
  transition: 0.3s height;
}
.expanded-nav .menu-item-has-children > .sub-menu.open, .mobile-nav .menu-item-has-children > .sub-menu.open {
  height: auto;
  overflow: hidden;
}

/* completely disable menus on corresponding breakpoints */
@media (min-width: 992px) {
  .mobile-nav.open {
    display: none;
  }
}

@media (max-width: 992px) {
  .expanded-nav.open {
    display: none;
  }
}

.menu-dropdown-button {
  background-color: transparent;
  color: inherit;
  border: 0;
  outline: none;
  position: absolute;
  right: 0;
}
.menu-dropdown-button:before {
  content: "";
  display: inline-block;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  width: 1rem;
  height: 1rem;
  transition: 0.3s transform;
}
.menu-dropdown-button.open:before {
  transform: rotate(135deg);
}

/* brand */
.brand {
  position: relative;
  font-weight: 600;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
}
.brand img {
  max-width: 250px;
  height: auto;
}
.brand .custom-logo, .brand .custom-logo-on-dark {
  height: 32px;
  max-height: 50px;
  width: auto;
  vertical-align: top;
}
.brand .custom-logo-on-dark {
  position: absolute;
  left: 0;
  display: none;
}
.brand.open .custom-logo-on-dark {
  display: inline;
}
.brand__tagline {
  font-weight: 400;
  padding-left: 1.2em;
  margin-left: 0.8em;
  border-left: 1px solid currentColor;
}
@media (max-width: 767px) {
  .brand__tagline {
    display: none;
  }
}
.brand__link {
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
}

.navbar .brand {
  z-index: 999;
  margin-left: auto;
}

/* modifier variant logo left */
.navbar.navbar--menu-right > .container {
  flex-direction: row-reverse;
}
.navbar.navbar--menu-right .brand {
  margin-left: 0;
  margin-right: auto;
}

.navbar.navbar--brand-center .main-nav-desktop {
  margin-left: auto;
}
.navbar.navbar--brand-center .main-nav-desktop .menu li:last-child {
  margin-right: 0;
}
.navbar.navbar--brand-center .brand {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  flex-direction: column;
}
.navbar.navbar--brand-center .brand__tagline {
  margin: 0 0.5em;
  border-left: 0;
  font-size: 0.75rem;
}

.navbar .social-links {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
}
.navbar .social-links li {
  display: inline-block;
  margin: 0 0.5rem;
}

.page-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.page-footer .brand {
  float: left;
}

.footer-menu {
  list-style: none;
  padding: 0;
}
.footer-menu ul {
  list-style: none;
}

.footer-widget-area {
  padding: 2rem 0;
}

.footer-widget {
  box-sizing: border-box;
  width: 100%;
  min-height: 1px;
  max-width: 100%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 767px) {
  .footer-widget {
    box-sizing: border-box;
    width: 33.3333333333%;
    min-height: 1px;
    max-width: 33.3333333333%;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
  }
}

.comments-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 1200px) {
  .comments-wrapper {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .comments-wrapper {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .comments-wrapper {
    max-width: 700px;
  }
}

.comment {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 6rem;
}
.comment::after {
  content: "";
  float: none;
  clear: both;
  display: table;
}
.comment .reply {
  display: block;
  width: 100%;
}
.comment cite.fn {
  font-size: 1.5rem;
  font-weight: bold;
  font-style: normal;
  margin-bottom: 1rem;
  display: inline-block;
}

img.avatar {
  margin-right: 1rem;
  width: 5rem;
  height: auto;
  position: absolute;
  left: 0;
}

.comment-meta {
  font-size: 1rem;
  opacity: 0.5;
}

.comment-form-comment label {
  display: block;
}

/* gutenberg styles */
/* Styles for the Gutenberg Frontend & Editor */
/* Make the Block-Layout less narrow */
.wp-block {
  max-width: 100%;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

/* editor */
[data-align=full] .nfb-container {
  max-width: 100%;
}

.wp-block-image {
  margin: 0;
}
.wp-block-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.wp-block-media-text__media img {
  object-fit: cover;
}

.alignright {
  text-align: right;
}

.aligncenter {
  text-align: center;
}

.wp-block-button__link {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-color: "#000";
  border: 1px solid "#000";
  color: "#FFF";
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  display: inline-block;
}
.wp-block-button__link::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.1;
  background-color: currentColor;
  transition: 0.5s all;
}
.wp-block-button__link .icon-forward, .wp-block-button__link .icon-back {
  transition: transform 0.3s;
}
.wp-block-button__link:hover::before {
  width: 100%;
  left: 0;
  right: unset;
}
.wp-block-button__link:hover .icon-back {
  transform: translateX(-5px);
}
.wp-block-button__link:hover .icon-forward {
  transform: translateX(5px);
}

/*# sourceMappingURL=style.css.map */
