/******************************************************************
Project Name: Logic Starter
Author: Sten Anderson
******************************************************************/
/*********************
IMPORTING GLOBALS
These styles include the SCSS tools that need to be available globally
*********************/
/******************************************************************
SASS VARIABLES
Here is where we declare all our variables like colors, fonts,
base values, and defaults
******************************************************************/
/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*********************
RESPONSIVE BREAKPOINTS
*********************/
/*********************
SCALABLE UNITS
*********************/
/******************************************************************
SASS MIXINS
Useful mixins to keep things DRY

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

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

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

******************************************************************/
/*********************
IMPORTING BASE
These styles include the base to start building upon
*********************/
/******************************************************************
NORMALIZE.CSS v8.0.0
URL: http://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; }

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

/******************************************************************
BOOTSTRAP 3 GRID
URL: https://getbootstrap.com/docs/3.3/
******************************************************************/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px; }

@media (min-width: 768px) {
  .container {
    width: 760px; } }

@media (min-width: 992px) {
  .container {
    width: 980px; } }

@media (min-width: 1200px) {
  .container {
    width: 1180px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px; }

.row {
  margin-left: -20px;
  margin-right: -20px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

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

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

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

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

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

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

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

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

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

@font-face {
  font-family: 'ekkm-icons';
  src: url("../fonts/ekkm-icons.eot?pxxuc4");
  src: url("../fonts/ekkm-icons.eot?pxxuc4#iefix") format("embedded-opentype"), url("../fonts/ekkm-icons.ttf?pxxuc4") format("truetype"), url("../fonts/ekkm-icons.woff?pxxuc4") format("woff"), url("../fonts/ekkm-icons.svg?pxxuc4#ekkm-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ekkm-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-back:before {
  content: "\e900"; }

.icon-close:before {
  content: "\e901"; }

.icon-events:before {
  content: "\e903"; }

.icon-news:before {
  content: "\e904"; }

.icon-next:before {
  content: "\e906"; }

.icon-prev:before {
  content: "\e907"; }

.icon-search:before {
  content: "\e908"; }

.icon-home:before {
  content: "\e902"; }

.icon-pencil:before {
  content: "\e905"; }

.icon-image:before {
  content: "\e90d"; }

.icon-images:before {
  content: "\e90e"; }

.icon-music:before {
  content: "\e911"; }

.icon-film:before {
  content: "\e913"; }

.icon-book:before {
  content: "\e91f"; }

.icon-file-text:before {
  content: "\e926"; }

.icon-folder-open:before {
  content: "\e930"; }

.icon-phone:before {
  content: "\e942"; }

.icon-envelop:before {
  content: "\e945"; }

.icon-location:before {
  content: "\e947"; }

.icon-clock:before {
  content: "\e94e"; }

.icon-mobile:before {
  content: "\e958"; }

.icon-chat:before {
  content: "\e96d"; }

.icon-quotes-left:before {
  content: "\e977"; }

.icon-quotes-right:before {
  content: "\e978"; }

.icon-blocked:before {
  content: "\ea0e"; }

.icon-checkmark:before {
  content: "\ea10"; }

.icon-circle-up:before {
  content: "\ea41"; }

.icon-facebook:before {
  content: "\ea91"; }

.icon-twitter:before {
  content: "\ea96"; }

.icon-rss:before {
  content: "\ea9c"; }

.icon-youtube:before {
  content: "\ea9d"; }

.icon-skype:before {
  content: "\eac5"; }

.icon-search {
  position: absolute;
  bottom: 1px;
  left: -30px;
  font-size: 20px;
  font-weight: bold; }

.icon-news, .icon-events {
  position: absolute;
  bottom: -5px;
  left: -35px;
  font-size: 26px;
  font-weight: bold; }

i.gap-left {
  margin-left: 12px; }

i.gap-right {
  margin-right: 12px; }

/******************************************************************
GLOBAL BASE STYLES
Opinionated base styles to start building upon
******************************************************************/
* {
  box-sizing: border-box; }

HTML {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 100%; }

BODY {
  min-height: 100vh; }

::selection {
  background: #d6c633; }

A {
  color: #1f2a44;
  text-decoration: none;
  transition: all 0.2s ease; }
  A:hover {
    color: #c4b000;
    text-decoration: underline;
    transition: all 0.2s ease; }

H1, H2, H3, H4, H5 {
  color: #1f2a44; }

P {
  color: #1f2a44;
  line-height: 1.6; }

.entry-content UL {
  margin: 0 0 20px 0;
  list-style: none;
  padding-left: 60px; }
  .entry-content UL LI {
    margin-bottom: 8px;
    position: relative; }
    .entry-content UL LI:before {
      content: " ";
      width: 6px;
      height: 6px;
      position: absolute;
      top: 2px;
      left: -20px;
      border: 2px solid #c4b000;
      border-radius: 50%;
      background-color: transparent; }
  @media only screen and (max-width: 767px) {
    .entry-content UL {
      padding-left: 40px; } }

.entry-content OL {
  margin: 0 0 20px 0;
  list-style: none;
  padding-left: 60px;
  counter-reset: item; }
  .entry-content OL LI {
    margin-bottom: 8px;
    position: relative; }
    .entry-content OL LI:before {
      content: counter(item) ". ";
      counter-increment: item;
      font-weight: 600;
      position: absolute;
      left: -20px; }
  @media only screen and (max-width: 767px) {
    .entry-content OL {
      padding-left: 40px; } }

.entry-content LI > OL, .entry-content LI > UL {
  margin-top: 10px; }

.entry-content BLOCKQUOTE {
  margin-left: 40px;
  font-style: italic;
  color: #1f2a44;
  padding: 20px 20px 20px 60px;
  border-left: 4px solid #c4b000;
  position: relative;
  background: #ededed; }
  .entry-content BLOCKQUOTE::before {
    font-family: Arial;
    content: "\201C";
    color: #c4b000;
    font-size: 4em;
    position: absolute;
    left: 10px;
    top: 0px; }
  @media only screen and (max-width: 767px) {
    .entry-content BLOCKQUOTE {
      margin-left: 0;
      margin-right: 0; } }

.entry-content A {
  color: #c4b000; }

.entry-content IFRAME {
  max-width: 100%;
  border: 0; }
  @media only screen and (max-width: 767px) {
    .entry-content IFRAME {
      width: 100% !important; } }

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

/******************************************************************
TOOLS
Various helper classes to be used throughout the project
******************************************************************/
.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.affix {
  position: fixed; }

.disable-scroll {
  overflow: hidden; }

IMG.alignleft {
  display: inline;
  float: left;
  margin-right: 30px; }
  @media only screen and (max-width: 767px) {
    IMG.alignleft {
      display: block;
      float: none;
      margin: 0 auto; } }

IMG.alignright {
  display: inline;
  float: right;
  margin-left: 30px; }
  @media only screen and (max-width: 767px) {
    IMG.alignright {
      display: block;
      float: none;
      margin: 0 auto; } }

.no-padding-left {
  padding-left: 0px !important; }

.no-padding-right {
  padding-right: 0px !important; }

.no-padding-top {
  padding-top: 0px !important; }

.no-padding-bottom {
  padding-bottom: 0px !important; }

@media only screen and (min-width: 992px) {
  .section-no-padding-left {
    padding-left: 0px !important; } }

@media only screen and (min-width: 992px) {
  .section-no-padding-right {
    padding-right: 0px !important; } }

.section-no-padding-left-fluid {
  padding-left: 0 !important; }
  @media only screen and (max-width: 991px) {
    .section-no-padding-left-fluid {
      padding-left: 0px !important;
      padding-right: 0px !important; } }

.section-no-padding-right-fluid {
  padding-right: 0 !important; }
  @media only screen and (max-width: 991px) {
    .section-no-padding-right-fluid {
      padding-left: 0px !important;
      padding-right: 0px !important; } }

.msg-positive {
  color: #30a052; }

.msg-negative {
  color: #a03030; }

.alert-positive {
  background-color: #30a052;
  color: #fff;
  padding: 20px;
  margin: 10px 0;
  font-weight: 600;
  line-height: 1.4; }

.alert-negative {
  background-color: #a03030;
  color: #fff;
  padding: 20px;
  margin: 10px 0;
  font-weight: 600;
  line-height: 1.4; }

/*********************
IMPORTING UTILITIES
These styles include additional utility 
*********************/
.screen-reader-text {
  display: none;
  visibility: hidden;
  opacity: 0; }

/*********************
IMPORTING COMPONENTS
These styles include all reusable components of the site
Create new custom files for larger modular components such as modals etc
*********************/
/******************************************************************
BUTTON STYLES
All button styles, starts with a default baseline
******************************************************************/
.button {
  display: inline-block;
  position: relative;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  min-width: 120px;
  border-radius: 100px;
  text-align: center;
  border: 0;
  outline: 0;
  background-color: #1f2a44;
  transition: background-color 0.2s ease;
  cursor: pointer; }
  .button:hover, .button:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #c4b000;
    transition: background-color 0.2s ease; }

/******************************************************************
FORM STYLES
Styles for forms, both default and plugin-generated
******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #1f2a44;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #a03030;
    border-color: #a03030;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #a03030; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #30a052;
    border-color: #30a052;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #30a052; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #a3a3a3;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #2986c4; }

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

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

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

.acf-input {
  padding: 0 0 0 20px !important; }
  .acf-input input[type="text"], .acf-input input[type="email"], .acf-input SELECT, .acf-input TEXTAREA {
    max-width: 640px;
    background-color: #ededed;
    padding: 0 12px;
    margin-right: 0 !important;
    border-radius: 0; }
    .acf-input input[type="text"]:focus, .acf-input input[type="text"]:active, .acf-input input[type="email"]:focus, .acf-input input[type="email"]:active, .acf-input SELECT:focus, .acf-input SELECT:active, .acf-input TEXTAREA:focus, .acf-input TEXTAREA:active {
      background-color: #f5f5f5; }
  .acf-input TEXTAREA {
    padding: 12px; }

.acf-form {
  padding-right: 20px; }
  @media only screen and (max-width: 767px) {
    .acf-form {
      padding-right: 0px; } }

.acf-label {
  padding: 0 12px 0 0 !important; }

.acf-fields.-left > .acf-field:before {
  background: #fff; }

.acf-button {
  margin-left: 10px;
  color: #fff !important;
  padding: 6px 30px; }

.acf-form-submit .acf-button {
  margin-top: 20px;
  padding: 16px 50px; }

@media screen and (max-width: 768px) {
  .acf-label, .acf-input {
    padding-left: 0 !important;
    padding-right: 0 !important; } }

A.acf-icon:hover {
  text-decoration: none; }

A.acf-icon:before {
  bottom: 1px; }

.compat-field-media_category {
  display: none !important; }

.media-toolbar .attachment-filters {
  display: none !important; }

.media-toolbar #media-search-input {
  display: none !important; }

.media-sidebar .setting {
  display: none !important; }

.media-types-required-info {
  display: none !important; }

.term-list {
  list-style: none; }

/******************************************************************
TABLE STYLES
Styling for html tables
******************************************************************/
/******************************************************************
ELEMENTS
Misc. reusable elements 
******************************************************************/
/*********************
IMPORTING LAYOUT
These styles include the main layout of the site
This is where most of the work happens, file structure can be adjusted depending on what's more convenient to the specific project
*********************/
.header {
  position: relative;
  box-shadow: 0 0px 8px 3px rgba(0, 0, 0, 0.1);
  z-index: 100; }
  .header .top-navbar {
    width: 100%;
    min-height: 40px;
    padding: 18px 0;
    background: #1f2a44; }
    @media only screen and (max-width: 991px) {
      .header .top-navbar {
        display: none; } }
    .header .top-navbar .top-navbar-menu {
      float: right; }
      .header .top-navbar .top-navbar-menu .menu LI:last-child {
        margin-right: 0; }
      .header .top-navbar .top-navbar-menu .menu A {
        color: white;
        transition: all 0.2s ease; }
        .header .top-navbar .top-navbar-menu .menu A:hover {
          color: rgba(255, 255, 255, 0.8);
          transition: all 0.2s ease; }
  .header .main-navbar {
    width: 100%;
    min-height: 80px;
    padding: 10px 0;
    background: #fff; }
    .header .main-navbar .site-logo {
      display: inline-block;
      margin-right: 40px;
      max-width: 160px; }
      .header .main-navbar .site-logo:hover {
        text-decoration: none; }
      @media screen and (max-width: 1199px) {
        .header .main-navbar .site-logo {
          margin-right: 10px; } }
      .header .main-navbar .site-logo IMG {
        height: 100px; }
        @media only screen and (max-width: 991px) {
          .header .main-navbar .site-logo IMG {
            height: 72px; } }
    .header .main-navbar .main-navbar-menu {
      display: inline;
      vertical-align: top;
      /*
            .menu {
                LI {
                    A {
                        &:after {
                            content: '';
                            display: block;
                            width: 0;
                            height: 2px;
                            background: $theme-color02;
                            transition: width .3s;
                            
                        }
                        &:hover {
                            text-decoration: none;
                            &:after {
                                width: 100%;
                                //transition: width .3s;
                            }
                        }
                    }
                }
            } 
            */ }
      .header .main-navbar .main-navbar-menu #main-nav-menu {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        vertical-align: top;
        flex-wrap: wrap;
        height: 100px;
        overflow: hidden; }
        .header .main-navbar .main-navbar-menu #main-nav-menu A {
          color: #1f2a44;
          font-weight: 600;
          font-size: 16px; }
          .header .main-navbar .main-navbar-menu #main-nav-menu A:hover {
            color: #c4b000; }
        .header .main-navbar .main-navbar-menu #main-nav-menu .menu-item.current-menu-item A {
          text-decoration: underline; }
      @media only screen and (max-width: 991px) {
        .header .main-navbar .main-navbar-menu {
          display: none; } }
    .header .main-navbar .navbar-search {
      float: right;
      position: relative; }
      .header .main-navbar .navbar-search .header-search-button {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        vertical-align: top;
        height: 100px; }
        .header .main-navbar .navbar-search .header-search-button A {
          color: #1f2a44;
          font-weight: 600;
          font-size: 16px; }
          .header .main-navbar .navbar-search .header-search-button A:hover {
            color: #c4b000; }
      .header .main-navbar .navbar-search .header-search-section-container {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0; }
      .header .main-navbar .navbar-search .header-search-section {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        vertical-align: top;
        height: 100px; }
        .header .main-navbar .navbar-search .header-search-section .header-search-form {
          display: none; }
          .header .main-navbar .navbar-search .header-search-section .header-search-form .searchform {
            margin-top: 0px;
            padding-right: 0px; }
            .header .main-navbar .navbar-search .header-search-section .header-search-form .searchform .search-field {
              margin-bottom: 0px;
              background: #ededed;
              width: 320px;
              -webkit-appearance: none; }
              .header .main-navbar .navbar-search .header-search-section .header-search-form .searchform .search-field::placeholder {
                color: #666; }
            .header .main-navbar .navbar-search .header-search-section .header-search-form .searchform .search-submit {
              background-color: #1f2a44;
              transition: background-color 0.2s ease; }
              .header .main-navbar .navbar-search .header-search-section .header-search-form .searchform .search-submit:hover {
                cursor: pointer;
                background-color: #c4b000;
                transition: background-color 0.2s ease; }
      @media only screen and (max-width: 991px) {
        .header .main-navbar .navbar-search {
          display: none; } }
    .header .main-navbar .navbar-mobile-menu {
      display: inline-block;
      float: right;
      margin: 9px 0; }
      @media only screen and (min-width: 992px) {
        .header .main-navbar .navbar-mobile-menu {
          display: none; } }
      .header .main-navbar .navbar-mobile-menu .mobile-menu-toggle {
        outline: none; }
  .header .menu {
    padding: 0;
    margin: 0;
    display: inline;
    list-style-type: none; }
    .header .menu LI {
      display: inline;
      margin-right: 20px; }

.nav-search-button {
  position: relative;
  padding-left: 10px; }
  .nav-search-button:before {
    font-size: 20px;
    text-decoration: none;
    margin-right: 10px; }
  .nav-search-button:hover:before {
    text-decoration: none; }
  .nav-search-button .icon-search {
    left: -20px; }

.mobile-menu {
  padding-top: 100px;
  margin-top: -100px;
  background: #c4b000;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 90;
  overflow-y: auto;
  left: 100%;
  transition: all 0.2s ease; }
  .mobile-menu.is-active {
    left: 0%;
    transition: all 0.2s ease; }
  .mobile-menu .menu {
    list-style-type: none;
    padding: 0 20px; }
    .mobile-menu .menu .menu-item {
      margin-bottom: 12px;
      position: relative; }
      .mobile-menu .menu .menu-item A {
        position: relative;
        font-size: 16px;
        font-weight: 600;
        display: block;
        padding: 4px 20px 4px 0; }
      .mobile-menu .menu .menu-item.menu-item-has-children > A:after {
        content: " ";
        display: inline;
        width: 8px;
        height: 8px;
        border-bottom: 2px solid #1f2a44;
        border-right: 2px solid #1f2a44;
        position: absolute;
        right: 3px;
        margin: 2px;
        transform: rotate(45deg);
        transform-origin: 75% 75%;
        transition: transform 0.2s ease; }
      .mobile-menu .menu .menu-item.menu-item-has-children > A.open:after {
        transform: rotate(-135deg);
        transition: transform 0.2s ease; }
    .mobile-menu .menu .sub-menu {
      padding: 12px 0 0 30px;
      list-style: none;
      display: none; }

.mobile-main-menu {
  padding: 40px 0;
  background: #fff; }
  .mobile-main-menu .menu .menu-item.current-menu-item > A {
    text-decoration: underline; }

.mobile-sub-menu {
  padding: 40px 0;
  background: #c4b000;
  color: transparent; }
  .mobile-sub-menu .menu .menu-item A {
    color: #fff; }
  .mobile-sub-menu .menu .menu-item.menu-item-has-children > A:after {
    border-color: #fff; }

.searchform {
  margin-top: 40px;
  padding: 0 20px; }
  .searchform .search-bar {
    position: relative;
    width: 100%; }
    .searchform .search-bar .search-field {
      padding: 20px 62px 20px 12px;
      height: 50px;
      max-width: 100%;
      background: #fff;
      color: #1f2a44;
      border: 0;
      box-shadow: none;
      border-radius: 0;
      opacity: 1;
      transition: opacity 0.2s ease; }
      .searchform .search-bar .search-field::placeholder {
        color: #ccc; }
      .searchform .search-bar .search-field:focus {
        opacity: 0.9;
        transition: opacity 0.2s ease; }
    .searchform .search-bar .search-submit {
      position: absolute;
      top: 0;
      right: 0;
      height: 50px;
      width: 50px;
      background: #1f2a44;
      box-shadow: none;
      outline: none;
      border: 0;
      color: #fff; }
      .searchform .search-bar .search-submit .icon-search {
        margin: 0;
        position: relative;
        left: 0; }

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger-box {
  width: 36px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 36px;
  height: 4px;
  background-color: #1f2a44;
  border-radius: 6px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.modal-overlay {
  background-color: #c4b000;
  width: 100%;
  height: 100%;
  display: none; }

.search-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #fff;
  opacity: 0; }

.mobile-search {
  padding-bottom: 40px; }

.footer {
  background-color: #ededed; }
  .footer .footer-overlay {
    background: url("../img/bg-footer.png") no-repeat;
    background-position: 94% 75%;
    background-size: auto 240px;
    padding-top: 80px;
    padding-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      .footer .footer-overlay {
        background-position: 94% 90%; } }
  @media only screen and (max-width: 767px) {
    .footer {
      text-align: center; } }

.footer-contacts .footer-title {
  margin-bottom: 30px;
  font-size: 22px; }

.footer-contacts H3 {
  margin-top: 0; }

.footer-contacts P {
  font-weight: 600; }

@media only screen and (max-width: 767px) {
  .footer-contacts {
    margin-bottom: 60px; } }

.footer-logos .partner-logo {
  display: block;
  max-width: 60%; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-logos .partner-logo {
      max-width: 75%; } }
  @media only screen and (max-width: 767px) {
    .footer-logos .partner-logo {
      max-width: 40%;
      margin: 0 auto;
      margin-bottom: 20px; } }
  .footer-logos .partner-logo:not(:last-child) {
    margin-bottom: 20px; }
  .footer-logos .partner-logo IMG {
    max-width: 100%;
    max-height: 60px; }
  .footer-logos .partner-logo.with-link {
    opacity: 1;
    transition: opacity 0.2s ease; }
    .footer-logos .partner-logo.with-link:hover {
      opacity: 0.7;
      transition: opacity 0.2s ease; }

.sidebar {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: #1f2a44;
  background-image: url("../img/bg-snowflakes.svg");
  background-repeat: no-repeat;
  background-position: right 20px bottom 20px;
  background-size: auto 140px; }
  @media only screen and (max-width: 991px) {
    .sidebar {
      display: none; } }
  .sidebar .sidebar-inner {
    padding: 80px 40px 100px 40px; }
    .sidebar .sidebar-inner .menu {
      list-style: none;
      color: #fff;
      padding-left: 20px;
      line-height: 1.4; }
      .sidebar .sidebar-inner .menu .menu-item {
        margin-bottom: 16px;
        font-weight: 600;
        position: relative; }
        .sidebar .sidebar-inner .menu .menu-item:before {
          font-family: 'ekkm-icons';
          content: "\e906";
          line-height: 1;
          position: absolute;
          left: -20px;
          top: 2px;
          font-size: 12px; }
        .sidebar .sidebar-inner .menu .menu-item A {
          color: white;
          transition: all 0.2s ease; }
          .sidebar .sidebar-inner .menu .menu-item A:hover {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.2s ease; }
        .sidebar .sidebar-inner .menu .menu-item.current-menu-item > A {
          text-decoration: underline; }
      .sidebar .sidebar-inner .menu .sub-menu {
        display: none;
        margin-top: 16px;
        padding-left: 16px;
        font-size: 12px;
        list-style: none; }
        .sidebar .sidebar-inner .menu .sub-menu LI:before {
          font-size: 10px; }
    .sidebar .sidebar-inner .current-menu-ancestor > .sub-menu, .sidebar .sidebar-inner .current-menu-item > .sub-menu {
      display: block; }

.sidebar-contact {
  min-height: 360px !important;
  height: 360px; }
  .sidebar-contact P, .sidebar-contact A, .sidebar-contact H2 {
    color: #fff;
    font-weight: 600; }
  .sidebar-contact I {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 10px; }
  .sidebar-contact .address-city {
    margin-left: 30px; }
  @media only screen and (max-width: 991px) {
    .sidebar-contact {
      display: block !important; } }

.banner-area {
  background: #ededed;
  position: relative;
  height: 480px; }
  @media only screen and (max-width: 1366px) {
    .banner-area {
      height: 420px; } }
  @media only screen and (max-width: 1279px) {
    .banner-area {
      height: 360px; } }

.inner-content {
  padding-bottom: 60px;
  padding-top: 60px; }

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px; }

.section-mission {
  background: url("../img/bg-mission.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff; }
  .section-mission .bg-overlay-blue {
    width: 100%;
    height: 100%;
    background-color: rgba(31, 42, 68, 0.9);
    background-image: url("../img/bg-snowflakes-duo.svg");
    background-repeat: no-repeat;
    background-position: 80% 50%;
    background-size: auto 140px; }
  .section-mission .mission-text {
    padding: 100px 120px 120px 120px; }
    .section-mission .mission-text H2, .section-mission .mission-text P {
      color: #fff; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .section-mission .mission-text {
        padding: 60px 80px; } }
    @media only screen and (max-width: 767px) {
      .section-mission .mission-text {
        padding: 60px 40px; } }

.contact-circular {
  position: relative;
  height: auto;
  width: 100%;
  padding-top: 100%;
  min-width: 240px;
  min-height: 240px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #1f2a44;
  background-image: url("../img/bg-snowflakes.svg");
  background-repeat: no-repeat;
  background-position: 105% 105%;
  background-size: auto 140px;
  color: #fff;
  margin-bottom: 40px;
  opacity: 1;
  transition: opacity 0.2s ease; }
  .contact-circular:hover {
    opacity: 0.88;
    transition: opacity 0.2s ease; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-circular {
      min-width: 200px;
      min-height: 200px; } }
  @media screen and (min-width: 560px) and (max-width: 768px) {
    .contact-circular {
      width: 64%;
      padding-top: 64%;
      margin: 0 auto 40px auto; } }
  .contact-circular.yellow {
    background: #c4b000;
    background-image: url("../img/bg-snowflakes-down.svg");
    background-repeat: no-repeat;
    background-position: -5% -5%;
    background-size: auto 140px; }
  .contact-circular .contact-circular-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    .contact-circular .contact-circular-inner H3, .contact-circular .contact-circular-inner P, .contact-circular .contact-circular-inner A {
      color: #fff;
      line-height: 1.4; }
      @media only screen and (min-width: 768px) and (max-width: 1199px) {
        .contact-circular .contact-circular-inner H3, .contact-circular .contact-circular-inner P, .contact-circular .contact-circular-inner A {
          font-size: 12px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .contact-circular .contact-circular-inner H3, .contact-circular .contact-circular-inner P, .contact-circular .contact-circular-inner A {
          font-size: 11px; } }
    .contact-circular .contact-circular-inner A {
      color: white;
      transition: all 0.2s ease; }
      .contact-circular .contact-circular-inner A:hover {
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.2s ease; }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel {
  z-index: 0; }

.banner-image {
  background: #ededed;
  background-size: cover;
  background-position: 100% 30%;
  background-repeat: no-repeat;
  height: 480px; }
  @media only screen and (max-width: 1366px) {
    .banner-image {
      height: 420px; } }
  @media only screen and (max-width: 1279px) {
    .banner-image {
      height: 360px; } }

.banner-text-area {
  width: 100%;
  padding: 10px 60px;
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .banner-text-area {
      display: flex;
      height: 100%;
      bottom: 0;
      padding: 10px 40px;
      align-items: center;
      justify-content: center; } }
  @media only screen and (max-width: 360px) {
    .banner-text-area {
      padding: 10px 30px; } }
  .banner-text-area .banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 80px;
    color: #fff;
    font-weight: 600;
    line-height: 1.8;
    font-size: 18px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .banner-text-area .banner-text {
        line-height: 1.4; } }
    @media only screen and (max-width: 767px) {
      .banner-text-area .banner-text {
        font-size: 16px;
        padding: 0;
        position: relative; } }
    @media only screen and (max-width: 360px) {
      .banner-text-area .banner-text {
        line-height: 1.2; } }
    .banner-text-area .banner-text A {
      color: #fff;
      font-weight: 600;
      line-height: 1.8; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-text-area .banner-text A {
          line-height: 1.4 !important; } }
      @media only screen and (max-width: 360px) {
        .banner-text-area .banner-text A {
          line-height: 1.2 !important; } }

.banner-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: rgba(31, 42, 68, 0.9); }
  .banner-controls .banner-controls-inner {
    height: 120px;
    padding: 20px 0;
    overflow: hidden;
    position: relative; }
  .banner-controls .banner-nav {
    position: relative; }
    .banner-controls .banner-nav .owl-prev, .banner-controls .banner-nav .owl-next {
      position: absolute;
      top: 25px;
      border: 0;
      outline: none;
      background: transparent;
      color: #fff;
      font-size: 26px;
      opacity: 1;
      transition: opacity 0.2s ease; }
      .banner-controls .banner-nav .owl-prev:hover, .banner-controls .banner-nav .owl-next:hover {
        opacity: 0.8;
        transition: opacity 0.2s ease; }
    .banner-controls .banner-nav .owl-prev {
      left: 0; }
    .banner-controls .banner-nav .owl-next {
      right: 0; }
  .banner-controls .banner-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .banner-controls .banner-dots {
        display: none; } }
    .banner-controls .banner-dots .banner-dots-nav .owl-dot {
      width: 10px;
      height: 10px;
      margin: 0 4px;
      padding: 0;
      border-radius: 50%;
      background-color: #fff !important;
      opacity: 1;
      border: 0;
      outline: none;
      transition: opacity 0.2s ease; }
      .banner-controls .banner-dots .banner-dots-nav .owl-dot:hover {
        opacity: 0.8;
        transition: opacity 0.2s ease; }
      .banner-controls .banner-dots .banner-dots-nav .owl-dot.active {
        opacity: 0.6;
        transition: opacity 0.2s ease; }

.news-card-large, .news-card {
  width: 100%;
  margin-bottom: 40px; }
  .news-card-large .news-card-image, .news-card .news-card-image {
    background-color: #ededed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 280px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .news-card-large .news-card-image, .news-card .news-card-image {
        height: 220px; } }
    @media only screen and (max-width: 767px) {
      .news-card-large .news-card-image, .news-card .news-card-image {
        height: 240px; } }
  .news-card-large H3, .news-card H3 {
    margin: 16px 0 10px 0; }
  .news-card-large .news-card-title, .news-card .news-card-title {
    font-size: 18px;
    line-height: 1.05; }

.news-card-date {
  color: #c4b000;
  margin: 0;
  font-size: 14px;
  font-weight: 600; }

.news-archives {
  margin-top: 20px; }
  .news-archives A {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600; }

.button-news-archive, .button-events-archive {
  position: relative;
  margin-left: 35px; }

.page-background {
  position: absolute;
  left: 0;
  right: 0;
  height: 480px;
  background-color: #ededed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1; }
  .page-background .page-background-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(31, 42, 68, 0.2); }

.page-inner {
  margin-top: 120px; }

.page-content {
  padding: 60px 0 80px 0;
  min-height: 520px;
  background: #fff; }
  .page-content .page-title {
    margin-bottom: 40px; }
    .page-content .page-title.large {
      margin-bottom: 60px; }
  .page-content.with-sidebar {
    padding: 60px 40px 80px 60px;
    min-height: 680px; }
    @media only screen and (max-width: 767px) {
      .page-content.with-sidebar {
        padding: 40px 40px 60px 40px; } }
    @media only screen and (max-width: 360px) {
      .page-content.with-sidebar {
        padding: 40px 20px 60px 20px; } }

.entry-content A {
  color: #c4b000; }

.title-404 {
  color: #c4b000;
  font-size: 96px;
  font-weight: 600;
  margin: 20px 0; }

.text-404 {
  font-size: 18px;
  font-weight: 600; }

.error-noposts {
  margin: 80px 0; }

#google-map {
  padding: 0;
  width: 100%;
  min-height: 360px !important;
  overflow: hidden;
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    #google-map {
      margin-bottom: 0; } }

.search-keyword {
  color: #c4b000; }

.search-result {
  margin-bottom: 40px; }

.pagination {
  margin: 80px 0 40px 0;
  border-top: 1px solid #ededed;
  padding-top: 40px; }
  .pagination .page-numbers {
    margin-bottom: 4px;
    list-style: none; }
    .pagination .page-numbers:not(.dots) {
      display: inline-block;
      margin-right: 4px;
      height: 40px;
      width: 40px;
      font-size: 16px;
      text-align: center;
      line-height: 40px;
      color: #fff;
      text-decoration: none;
      background-color: #1f2a44;
      transition: background-color 0.2s ease;
      cursor: pointer; }
      .pagination .page-numbers:not(.dots):hover {
        background-color: #c4b000;
        transition: background-color 0.2s ease;
        text-decoration: none; }
      .pagination .page-numbers:not(.dots).current {
        background-color: #c4b000; }
    .pagination .page-numbers.dots {
      content: ". . .";
      font-size: 24px;
      margin: 0 12px 0 8px; }

#swipebox-overlay {
  background: rgba(0, 0, 0, 0.9); }
  #swipebox-overlay .slide {
    padding: 50px; }
    @media only screen and (max-width: 767px) {
      #swipebox-overlay .slide {
        padding: 50px 20px; } }

.gallery {
  margin-bottom: 40px; }
  .gallery .gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding-right: 20px; }
    .gallery .gallery-item IMG {
      width: 100%;
      height: auto; }
  .gallery.gallery-columns-2 .gallery-item {
    max-width: 50%;
    /* &:nth-child(even){
                IMG {
                    padding-right: 0;
                }
            } */ }
    @media only screen and (max-width: 767px) {
      .gallery.gallery-columns-2 .gallery-item {
        display: block;
        max-width: 100%;
        padding-right: 0; } }
  .gallery.gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
    @media only screen and (max-width: 767px) {
      .gallery.gallery-columns-3 .gallery-item {
        display: block;
        max-width: 100%;
        padding-right: 0; } }
  .gallery.gallery-columns-4 .gallery-item {
    max-width: 25%; }
    @media only screen and (max-width: 767px) {
      .gallery.gallery-columns-4 .gallery-item {
        display: block;
        max-width: 100%;
        padding-right: 0; } }
  .gallery .gallery-caption {
    display: inline-block;
    margin: 12px 0;
    color: #666; }

.institutions-list {
  margin: 40px 0;
  padding-right: 20px; }
  @media only screen and (max-width: 767px) {
    .institutions-list {
      padding-right: 0px; } }

.institution-card {
  margin-bottom: 10px; }
  .institution-card .institution-top-bar {
    position: relative;
    padding: 12px 46px 12px 62px;
    width: 100%;
    height: auto;
    background-color: #ededed;
    cursor: pointer;
    border: 1px solid #dcdcdc; }
    .institution-card .institution-top-bar H2 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      vertical-align: middle; }
    .institution-card .institution-top-bar .accordion-arrow {
      font-size: 16px;
      transform: rotate(90deg);
      transition: transform 0.2s ease; }
    .institution-card .institution-top-bar.open .accordion-arrow {
      transform: rotate(-90deg);
      transition: transform 0.2s ease; }
    .institution-card .institution-top-bar .institution-flag-container {
      display: flex;
      flex-wrap: nowrap;
      height: 100%;
      width: auto;
      justify-content: center;
      align-items: center;
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0; }
    .institution-card .institution-top-bar .institution-flag {
      width: 100%;
      height: 100%; }
    .institution-card .institution-top-bar .institution-flag-inner {
      width: 32px;
      height: 32px; }
    .institution-card .institution-top-bar .institution-arrow-container {
      display: flex;
      flex-wrap: nowrap;
      height: 100%;
      width: auto;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 20px;
      top: 0;
      bottom: 0; }
  .institution-card .institution-card-body {
    display: none;
    background-color: #fafafa;
    border: 1px solid #dcdcdc;
    border-top: none;
    padding: 20px 20px; }
    .institution-card .institution-card-body .institution-meta {
      padding-bottom: 1px; }
      .institution-card .institution-card-body .institution-meta .institution-address {
        padding-left: 28px; }
    .institution-card .institution-card-body A {
      color: #c4b000; }
    .institution-card .institution-card-body I {
      font-size: 20px;
      vertical-align: middle; }
      .institution-card .institution-card-body I.gap-right {
        margin-right: 8px; }
  .institution-card .institution-contacts {
    display: block;
    padding-top: 10px; }
    .institution-card .institution-contacts .institution-contact-inner {
      display: flex;
      flex-direction: row;
      flex-wrap: none;
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .institution-card .institution-contacts .institution-contact-inner {
          flex-direction: column;
          flex-wrap: wrap; } }
      .institution-card .institution-contacts .institution-contact-inner .institution-contact-right {
        line-height: 1.6; }
    .institution-card .institution-contacts .institution-contact-photo {
      margin-right: 12px;
      padding-top: 4px;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px; }
      @media only screen and (max-width: 767px) {
        .institution-card .institution-contacts .institution-contact-photo {
          padding-bottom: 4px; } }
    .institution-card .institution-contacts .institution-contact-email {
      word-break: break-word; }

@media only screen and (max-width: 767px) {
  .mob-no-space-bottom {
    padding-bottom: 0;
    margin-bottom: 0; } }

.post-date {
  margin-bottom: 40px; }

/*********************
PRINT STYLESHEET
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

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

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
