@charset "UTF-8";
/**
 * Style file
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/* Breakpoints - mobile first
 * Usage:
 *
 *  	@include breakpoint(mobile) {
 *      //do stuff
 *    }  
 *
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/* ---------- Import grid system ---------- */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "Lato", Arial, sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 17;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes fadeIn_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes fadeIn_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1;
}

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

.clearfix:after {
  clear: both;
}

/**
 * Typography
 */
@font-face {
  font-family: 'Lato';
  src: url("../fonts/lato-bold-webfont.eot");
  src: url("../fonts/lato-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-bold-webfont.woff2") format("woff2"), url("../fonts/lato-bold-webfont.woff") format("woff"), url("../fonts/lato-bold-webfont.ttf") format("truetype"), url("../fonts/lato-bold-webfont.svg#Lato") format("svg");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url("../fonts/lato-bolditalic-webfont.eot");
  src: url("../fonts/lato-bolditalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-bolditalic-webfont.woff2") format("woff2"), url("../fonts/lato-bolditalic-webfont.woff") format("woff"), url("../fonts/lato-bolditalic-webfont.ttf") format("truetype"), url("../fonts/lato-bolditalic-webfont.svg#Lato") format("svg");
  font-weight: bold;
  font-style: italic;
}

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

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

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
}

html,
button,
input,
select,
textarea {
  font-family: "Lato", Arial, sans-serif;
}

body {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "FranklinHeavy", "Lato", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.2em;
}

h1 {
  font-size: 34px;
  font-size: 2.125rem;
  color: #000;
  margin: .67em 0;
}

h2 {
  font-size: 30px;
  font-size: 1.875rem;
  color: #000;
  margin: .83em 0;
}

h3 {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #000;
  margin: 1em 0;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #000;
  margin: 1.33em 0;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  margin: 1.67em 0;
}

h6 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 1.5em 0;
}

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 17px;
  font-size: 1.0625rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 15px;
  font-size: 0.9375rem;
}

large {
  font-size: 19px;
  font-size: 1.1875rem;
}

sub, sup {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

dl, ol, ul {
  margin: 1.5em 0;
}

dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
}

ul {
  padding: 0 0 0 30px;
  list-style: disc;
}

ul.rteindent1 {
  padding: 0;
}

ol {
  padding: 0 0 0 30px;
  list-style: decimal;
}

ol.rteindent1 {
  padding: 0;
}

ol ol {
  margin: 0;
  list-style: lower-alpha;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

/* ---------- Components ---------- */
blockquote {
  margin: 1em 0;
  padding: 1.5em;
  color: #000;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: bold;
  font-style: italic;
  width: 90%;
  margin: 0 auto;
  border-bottom: 3px solid #000;
}

@media (min-width: 768px) {
  blockquote {
    margin: 2.5em;
    float: right;
    width: 45%;
  }
}

blockquote p {
  margin: 0;
}

.section-about-us blockquote {
  color: #5c5c5c;
}

.section-jobs blockquote, .section-services blockquote {
  color: #dc3836;
}

/*
 * Buttons
 */
.button, .node-community.node-teaser .field-name-view-document a,
input[type=submit], .job-button a, .field-name-field-apply a {
  transition: all 0.3s;
  display: inline-block;
  padding: 10px 15px;
  border-top: 1px solid #dc3836;
  border-left: 3px solid #dc3836;
  border-bottom: 3px solid #dc3836;
  border-right: 1px solid #dc3836;
  color: #000;
  background-color: none;
  font-style: italic;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}

.button:after, .node-community.node-teaser .field-name-view-document a:after,
input[type=submit]:after, .job-button a:after, .field-name-field-apply a:after {
  content: "";
  background: transparent url("../img/btn-arrows.svg") no-repeat left 15px top 6px;
  width: 13px;
  height: 14px;
  display: block;
  float: right;
  padding: 10px 18px;
  transition: background 0.3s;
}

.button:hover, .node-community.node-teaser .field-name-view-document a:hover, .job-button a:hover, .field-name-field-apply a:hover,
input[type=submit]:hover,
.button:focus,
.node-community.node-teaser .field-name-view-document a:focus {
  text-decoration: none;
  color: #000;
}

.button:hover:after, .node-community.node-teaser .field-name-view-document a:hover:after, .job-button a:hover:after, .field-name-field-apply a:hover:after,
input[type=submit]:hover:after,
.button:focus:after,
.node-community.node-teaser .field-name-view-document a:focus:after {
  background: transparent url("../img/btn-arrows.svg") no-repeat left 22px top 6px;
}

.breadcrumb {
  font-size: 80%;
  margin: 1.5em 0;
}

/*
 * caption.js styles
 */
/* Main */
.caption {
  line-height: 0;
}

.caption figcaption {
  display: block;
  line-height: 1.2;
  font-size: 90%;
  padding: 1em 0;
}

/*
 * Make the block config icon sexy
 */
.contextual-links-region {
  outline: none;
  position: relative;
}

.contextual-links-region-active {
  outline: #999 dashed 1px;
}

div.contextual-links-wrapper {
  display: none;
  font-size: 100%;
  position: absolute;
  right: 5px;
  /* LTR */
  top: 2px;
  z-index: 999;
}

html.js div.contextual-links-wrapper {
  display: block;
}

a.contextual-links-trigger {
  background: transparent url(../img/admin/icon-configuration.png) no-repeat 50% 7px;
  border: 0;
  display: none;
  height: 30px;
  margin: 0;
  padding: 0;
  outline: none;
  text-indent: 35px;
  /* LTR */
  width: 30px;
  overflow: hidden;
  transition: none;
}

a.contextual-links-trigger:hover,
div.contextual-links-active a.contextual-links-trigger {
  background-position: 50% -29px;
}

div.contextual-links-active a.contextual-links-trigger {
  background-color: #202020;
  background-position: 50% -64px;
  position: relative;
  z-index: 1;
}

div.contextual-links-wrapper ul.contextual-links {
  background-color: #202020;
  border: 0;
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 30px;
  white-space: nowrap;
}

a.contextual-links-trigger-active,
div.contextual-links-active a.contextual-links-trigger,
div.contextual-links-active ul.contextual-links {
  display: block;
}

ul.contextual-links li {
  line-height: 100%;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

div.contextual-links-wrapper a {
  text-decoration: none;
}

ul.contextual-links li a {
  background-color: #202020;
  color: #fff !important;
  display: block;
  margin: 0;
  padding: 10px;
}

ul.contextual-links li a:hover {
  background-color: #0074bd;
}

/*
 * Forms, webforms
 */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text,
select,
textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #000;
  color: #000;
  font-size: 17px;
  font-size: 1.0625rem;
  width: 100%;
  max-width: 500px;
  outline: none;
}

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

fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border: 0;
}

fieldset fieldset {
  margin-bottom: 0;
}

form fieldset:last-of-type {
  margin-bottom: 0;
}

.fieldset-description {
  margin-bottom: 1.5em;
}

.grippie {
  max-width: 500px;
}

/*  legend... wait for it... dary! */
legend {
  padding: 0;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 600;
  border-bottom: 1px solid #dfdfdf;
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}

label {
  display: block;
  margin-bottom: 0.5em;
}

/*  Placeholders. Keep as seperate selectors or it won't work  */
.placeholder {
  color: #333333;
  font-weight: bold;
}

::-webkit-input-placeholder {
  color: #333333;
  font-weight: bold;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #333333;
  font-weight: bold;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #333333;
  font-weight: bold;
}

:-ms-input-placeholder {
  color: #333333;
  font-weight: bold;
}

/*  Drupal classes */
.form-item {
  margin-bottom: 1.5em;
}

input[type="submit"], .form-submit {
  border-bottom: 3px solid #dc3836;
  border-right: 1px solid #dc3836;
  border-top: 1px solid #dc3836;
  border-left: 3px solid #dc3836;
  text-transform: none;
  padding: 10px 100px;
  cursor: pointer;
  background: transparent url("../img/btn-arrows.svg") no-repeat right 38px center;
}

input[type="submit"]:hover, .form-submit:hover {
  background: transparent url("../img/btn-arrows.svg") no-repeat right 15px center;
}

.description {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #4d4d4d;
  margin: 0.75em 0;
}

.form-type-checkbox {
  margin-bottom: 0;
}

.form-type-checkbox label {
  font-weight: 400;
}

.form-type-radio {
  margin-bottom: 0;
}

.form-radios label,
label.option {
  display: inline;
}

.form-managed-file .form-file {
  display: inline;
  width: auto;
}

.form-type-date select {
  width: auto;
}

/*
  WEBFORM
*/
.webform-client-form .form,
.webform-client-form .form-item {
  margin-bottom: 1.5em;
}

.webform-client-form .form label,
.webform-client-form .form-item label {
  margin-bottom: 10px;
}

.webform-client-form .form-item {
  position: relative;
}

.webform-client-form .form-item > label {
  font-weight: bold;
}

.webform-client-form .form-item .label-inline {
  display: inline;
}

.webform-client-form .form-item textarea {
  box-shadow: none;
  border: 1px solid #000;
  border-radius: 0;
  padding: .5em .6em;
}

.webform-client-form .form-item input[readonly="readonly"] {
  background-color: #fcfcfc;
  border-color: #dfdfdf;
}

.webform-client-form .webform-component-checkboxes input,
.webform-client-form .webform-component-radios input {
  padding-top: 2px;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item,
.webform-client-form .webform-component-radios.form-item .form-item {
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item label,
.webform-client-form .webform-component-radios.form-item .form-item label {
  font-weight: normal;
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item .form-type-checkbox,
.webform-client-form .webform-component-radios.form-item .form-item .form-type-checkbox {
  margin: 0;
  padding: 10px 0 10px 5px;
}

.webform-client-form .form-item-clear {
  width: auto;
  border: 0;
  padding: 0;
  font-weight: bold;
}

.webform-client-form .webform-component-date .form-select,
.webform-client-form .webform-component-time .form-select {
  width: auto;
}

.webform-client-form .webform-component-textarea .grippie {
  display: none;
}

.page-user {
  background: #f3f3f3;
  padding: 0 20px;
}

#login-top img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

#auth_box {
  font-family: "Lato", Arial, sans-serif;
  max-width: 340px;
  margin: 3em auto 0;
}

#auth_box .form-submit {
  width: 100%;
  float: none;
  padding: 12px;
}

#auth_box input[type="text"], #auth_box input[type="password"] {
  width: 100%;
  background: #f3f3f3;
}

#auth_box .form-text {
  padding: 12px;
}

#top_part {
  margin-top: 2em;
}

#login-middle {
  border: 1px solid #000;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 25px #f2f2f2;
  padding: 1em;
  margin-bottom: 2em;
}

#login-middle h2 {
  font-size: 1.5em;
  margin-top: 0;
}

#login-bottom {
  text-align: center;
}

.login-footer {
  margin-top: 4em;
  text-align: center;
}

.page-maintenance {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.page-maintenance h1:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 1em;
  background: url("../img/admin/info.png");
  background: url("../img/admin/info.svg"), none;
  background-size: 150px 150px;
}

/*
 * Drupal messages
 */
.message {
  padding: 10px 55px 10px 10px;
  position: relative;
  color: #fff;
  margin-bottom: 1.5em;
}

.message a {
  color: yellow;
}

.message a:hover {
  color: yellow;
  text-decoration: underline;
}

.message.info {
  background: #5BC0DE;
}

.message.info .close {
  background: #2390b0;
}

.message.info .close:hover {
  background: #1b6d85;
}

.message.error {
  background: #D9534F;
}

.message.error .close {
  background: #a02622;
}

.message.error .close:hover {
  background: #761c19;
}

.message.warning {
  background: #F0AD4E;
}

.message.warning .close {
  background: #c77c11;
}

.message.warning .close:hover {
  background: #985f0d;
}

.message.status {
  background: #5CB85C;
}

.message.status .close {
  background: #357935;
}

.message.status .close:hover {
  background: #255625;
}

.message .close {
  color: #fff;
  font-size: 34px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
}

.message .close:hover {
  text-decoration: none;
}

.message .placeholder {
  color: #fff;
  font-weight: bold;
}

.messages > *:last-child,
.messages > *:last-child > *:last-child,
.messages > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}

/*
 * Pagination
 */
.item-list {
  overflow: auto;
}

.item-list .pager {
  padding: 0;
  text-align: left;
  overflow: auto;
  margin-top: 3em;
}

.item-list .pager li {
  float: left;
  list-style: none;
  padding: 0;
}

.item-list .pager a {
  color: #000;
  border-radius: 50%;
  display: inline-block;
  padding: 5px 14px;
  margin-right: 5px;
  font-weight: bold;
  background: #f3f3f3;
}

.item-list .pager a:hover {
  background: #000;
  border: none;
  color: #fff;
  text-decoration: none;
}

.item-list .pager a:active {
  background: #000;
}

.item-list .pager .pager-current {
  border-radius: 50%;
  background: #000;
  color: #fff;
  padding: 6px 15px;
  margin-right: 5px;
  font-weight: bold;
}

.item-list .pager .pager-next a, .item-list .pager .pager-previous a, .item-list .pager .pager-first a, .item-list .pager .pager-last a {
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 5px;
}

.site-map ul {
  padding: 0;
  margin: 0;
}

.site-map ul ul {
  padding-left: 20px;
}

.site-map ul ul a {
  background: #999;
}

.site-map ul ul ul a {
  background: #777;
}

.site-map ul ul ul ul a {
  background: #555;
}

.site-map ul ul ul ul ul a {
  background: #333;
}

.site-map ul a {
  padding: 5px 10px;
  background: #000;
  /* Change to primary-color colour */
}

.site-map li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-map a {
  color: white;
  display: inline-block;
  margin-bottom: 1px;
}

.site-map a:hover {
  background: black;
  color: #fff;
}

#block-search-form {
  position: absolute;
  z-index: 100;
  width: 0;
  right: 26px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}

#block-search-form .form-submit {
  display: none;
}

#block-search-form .form-search {
  border: none;
  padding-top: 0;
  padding-bottom: 4px;
  background: transparent;
  font-size: 16px;
  font-size: 1rem;
  font-style: italic;
}

.toggleSearch {
  width: 233px !important;
}

.btn-search {
  text-indent: -9000px;
  background: transparent url("../img/btn-search.svg") no-repeat 16px center;
  width: 17px;
  height: 21px;
  padding-left: 41px;
  border: none;
  float: right;
  display: inline-block;
  outline: none;
}

.btn-search:focus {
  outline: none;
}

.page-search .search-advanced {
  margin: 35px 0;
}

.page-search .container-inline label {
  display: block;
}

.page-search .form-submit {
  display: block;
  margin-top: 20px;
}

#block-search-form .placeholder {
  color: #333333;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}

#block-search-form ::-webkit-input-placeholder {
  color: #333333;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}

#block-search-form :-moz-placeholder {
  /* Firefox 18- */
  color: #333333;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}

#block-search-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #333333;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}

#block-search-form :-ms-input-placeholder {
  color: #333333;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track {
  -webkit-translate3d: 0, 0, 0;
  -moz-translate3d: 0, 0, 0;
  -ms-translate3d: 0, 0, 0;
  -o-translate3d: 0, 0, 0;
  translate3d: 0, 0, 0;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 46px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #fff;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
}

@media (min-width: 480px) {
  .slick-prev,
  .slick-next {
    width: 80px;
  }
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "";
  background: #fff url(../img/btn-prev.svg) no-repeat center center;
  padding: 4px 18px;
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 0;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "";
  background: #fff url(../img/btn-next.svg) no-repeat center center;
  padding: 4px 18px;
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  z-index: 1000;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*
 * Tables
 */
table {
  background-color: #fff;
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}

table caption {
  text-align: left;
}

table th {
  text-align: left;
}

table td {
  vertical-align: top;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 5px;
  vertical-align: top;
  border-bottom: 1px solid #dfdfdf;
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dfdfdf;
}

table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #dfdfdf;
}

table table {
  background-color: #fff;
  margin-bottom: 0;
}

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
.table-responsive {
  width: 100%;
  overflow-y: auto;
}

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

.table-bordered {
  border: 1px solid #dfdfdf;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dfdfdf;
  padding: 5px;
}

.table-striped > tbody > tr:nth-child(odd),
.table-striped .odd-row {
  background-color: #f2f2f2;
}

.table-striped th, .table-striped td {
  border: 0;
}

.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2;
}

.table-striped-vertical th, .table-striped-vertical td {
  border: 0;
}

.table-vertical th, .table-vertical td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #dfdfdf;
}

.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0;
}

.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0;
}

/**
 * Tabs
 */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #dfdfdf;
}

.tabs.primary li {
  display: inline-block;
  position: relative;
  top: 1px;
}

.tabs.primary a {
  display: inline-block;
  padding: .5em 1em;
}

.tabs.primary a.active {
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 0 solid white;
  background: white;
}

/*
 * Classes that can be used in the WYSIWYG editor
 */
.image-left {
  float: left;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-right: 1.25em;
}

.image-right {
  float: right;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-left: 1.25em;
}

big {
  font-size: 19px;
  font-size: 1.1875rem;
}

small {
  font-size: 15px;
  font-size: 0.9375rem;
}

.layout-row {
  *zoom: 1;
}

.layout-row:before, .layout-row:after {
  content: '';
  display: table;
}

.layout-row:after {
  clear: both;
}

body.cke_editable {
  padding: 20px;
}

body.cke_editable .layout-row {
  padding: 10px;
  margin: 0 -10px 20px;
  border: 1px dashed pink;
}

body.cke_editable .layout-row > div {
  border: 1px dashed #a5d3e4;
}

body.cke_editable table td {
  border: 1px dashed #ccc;
}

@media (min-width: 768px) {
  .col-one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-half:before, .col-one-half:after {
    content: '';
    display: table;
  }
  .col-one-half:after {
    clear: both;
  }
  .col-one-half:last-child {
    margin-right: 0%;
  }
  .col-one-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-third:before, .col-one-third:after {
    content: '';
    display: table;
  }
  .col-one-third:after {
    clear: both;
  }
  .col-one-third:last-child {
    margin-right: 0%;
  }
  .col-two-thirds {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-two-thirds:before, .col-two-thirds:after {
    content: '';
    display: table;
  }
  .col-two-thirds:after {
    clear: both;
  }
  .col-two-thirds:last-child {
    margin-right: 0%;
  }
  .col-one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-quarter:before, .col-one-quarter:after {
    content: '';
    display: table;
  }
  .col-one-quarter:after {
    clear: both;
  }
  .col-one-quarter:last-child {
    margin-right: 0%;
  }
}

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  *zoom: 1;
}

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

.container:after {
  clear: both;
}

@media (min-width: 1024px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 25.75%;
  }
  .one-sidebar.sidebar-first .main:before, .one-sidebar.sidebar-first .main:after {
    content: '';
    display: table;
  }
  .one-sidebar.sidebar-first .main:after {
    clear: both;
  }
  .one-sidebar.sidebar-first .main:last-child {
    margin-right: 0%;
  }
  .one-sidebar.sidebar-second .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .one-sidebar.sidebar-second .main:before, .one-sidebar.sidebar-second .main:after {
    content: '';
    display: table;
  }
  .one-sidebar.sidebar-second .main:after {
    clear: both;
  }
  .one-sidebar.sidebar-second .main:last-child {
    margin-right: 0%;
  }
  .one-sidebar aside.sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: -77.25%;
  }
  .one-sidebar aside.sidebar_first:before, .one-sidebar aside.sidebar_first:after {
    content: '';
    display: table;
  }
  .one-sidebar aside.sidebar_first:after {
    clear: both;
  }
  .one-sidebar aside.sidebar_first:last-child {
    margin-right: 0%;
  }
  .one-sidebar aside.sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .one-sidebar aside.sidebar_second:before, .one-sidebar aside.sidebar_second:after {
    content: '';
    display: table;
  }
  .one-sidebar aside.sidebar_second:after {
    clear: both;
  }
  .one-sidebar aside.sidebar_second:last-child {
    margin-right: 0%;
  }
  .two-sidebars .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 25.75%;
  }
  .two-sidebars .main:before, .two-sidebars .main:after {
    content: '';
    display: table;
  }
  .two-sidebars .main:after {
    clear: both;
  }
  .two-sidebars .main:last-child {
    margin-right: 0%;
  }
  .two-sidebars .sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: -51.5%;
  }
  .two-sidebars .sidebar_first:before, .two-sidebars .sidebar_first:after {
    content: '';
    display: table;
  }
  .two-sidebars .sidebar_first:after {
    clear: both;
  }
  .two-sidebars .sidebar_first:last-child {
    margin-right: 0%;
  }
  .two-sidebars .sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .two-sidebars .sidebar_second:before, .two-sidebars .sidebar_second:after {
    content: '';
    display: table;
  }
  .two-sidebars .sidebar_second:after {
    clear: both;
  }
  .two-sidebars .sidebar_second:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 480px) {
  header .container {
    padding-right: 0;
  }
}

.logo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

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

.logo:after {
  clear: both;
}

@media (min-width: 480px) {
  .logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 34.08%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .logo:before, .logo:after {
    content: '';
    display: table;
  }
  .logo:after {
    clear: both;
  }
  .logo:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 768px) {
  .logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 24.81%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .logo:before, .logo:after {
    content: '';
    display: table;
  }
  .logo:after {
    clear: both;
  }
  .logo:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 1024px) {
  .logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 21.72%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .logo:before, .logo:after {
    content: '';
    display: table;
  }
  .logo:after {
    clear: both;
  }
  .logo:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 1280px) {
  .logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 15.16%;
    margin-left: 0%;
    margin-right: 1%;
  }
  .logo:before, .logo:after {
    content: '';
    display: table;
  }
  .logo:after {
    clear: both;
  }
  .logo:last-child {
    margin-right: 0%;
  }
}

.navigation-container {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

.navigation-container:before, .navigation-container:after {
  content: '';
  display: table;
}

.navigation-container:after {
  clear: both;
}

@media (min-width: 480px) {
  .navigation-container {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 62.92%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .navigation-container:before, .navigation-container:after {
    content: '';
    display: table;
  }
  .navigation-container:after {
    clear: both;
  }
  .navigation-container:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 768px) {
  .navigation-container {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 72.19%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .navigation-container:before, .navigation-container:after {
    content: '';
    display: table;
  }
  .navigation-container:after {
    clear: both;
  }
  .navigation-container:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 1024px) {
  .navigation-container {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 75.28%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .navigation-container:before, .navigation-container:after {
    content: '';
    display: table;
  }
  .navigation-container:after {
    clear: both;
  }
  .navigation-container:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 1280px) {
  .navigation-container {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 83.52%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .navigation-container:before, .navigation-container:after {
    content: '';
    display: table;
  }
  .navigation-container:after {
    clear: both;
  }
  .navigation-container:last-child {
    margin-right: 0%;
  }
}

.front-bubble-container {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

.front-bubble-container:before, .front-bubble-container:after {
  content: '';
  display: table;
}

.front-bubble-container:after {
  clear: both;
}

@media (min-width: 768px) {
  .front-bubble-container {
    *zoom: 1;
    width: auto;
    max-width: 820px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .front-bubble-container:before, .front-bubble-container:after {
    content: '';
    display: table;
  }
  .front-bubble-container:after {
    clear: both;
  }
}

@media (min-width: 1400px) {
  .front-bubble-container {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 57.88%;
    margin-left: 0%;
    margin-right: 8%;
  }
  .front-bubble-container:before, .front-bubble-container:after {
    content: '';
    display: table;
  }
  .front-bubble-container:after {
    clear: both;
  }
  .front-bubble-container:last-child {
    margin-right: 0%;
  }
}

.front-services-container {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

.front-services-container:before, .front-services-container:after {
  content: '';
  display: table;
}

.front-services-container:after {
  clear: both;
}

@media (min-width: 1400px) {
  .front-services-container {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 34.08%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .front-services-container:before, .front-services-container:after {
    content: '';
    display: table;
  }
  .front-services-container:after {
    clear: both;
  }
  .front-services-container:last-child {
    margin-right: 0%;
  }
}

footer .block {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

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

footer .block:after {
  clear: both;
}

@media (min-width: 1400px) {
  footer .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  footer .block:before, footer .block:after {
    content: '';
    display: table;
  }
  footer .block:after {
    clear: both;
  }
  footer .block:last-child {
    margin-right: 0%;
  }
}

#block-block-8, .captovate {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

#block-block-8:before, #block-block-8:after, .captovate:before, .captovate:after {
  content: '';
  display: table;
}

#block-block-8:after, .captovate:after {
  clear: both;
}

@media (min-width: 480px) {
  #block-block-8, .captovate {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  #block-block-8:before, #block-block-8:after, .captovate:before, .captovate:after {
    content: '';
    display: table;
  }
  #block-block-8:after, .captovate:after {
    clear: both;
  }
  #block-block-8:last-child, .captovate:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 480px) {
  .navigation-container {
    padding-top: 61px;
  }
}

.primary-navigation {
  position: relative;
}

.primary-navigation .menu {
  margin: 0;
  padding: 0;
  display: none;
}

.primary-navigation .menu li {
  position: relative;
}

.primary-navigation .menu li a {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: 10px 50px 10px 0;
  display: inline-block;
  color: #000;
}

@media (min-width: 1024px) {
  .primary-navigation {
    position: relative;
  }
  .primary-navigation .menu {
    display: inline-block;
    margin: 0;
    border: none;
  }
  .primary-navigation .menu li {
    position: relative;
    float: left;
  }
  .primary-navigation .menu li a {
    position: relative;
    display: inline-block;
    border-top: 4px solid #000;
    padding: 25px 40px 28px 40px;
  }
  .primary-navigation .menu li a:hover {
    color: #000;
  }
  .primary-navigation .menu li.expanded a:after {
    content: "";
    position: absolute;
    top: 42%;
    right: 16px;
    width: 11px;
    background: transparent url("../img/plus.svg") no-repeat center center;
    height: 11px;
  }
  .primary-navigation .menu li a:hover:after {
    background: transparent url("../img/nav-arrow-2.svg") no-repeat center center;
    width: 7px;
    height: 10px;
    content: "";
    position: absolute;
    top: 42%;
    right: 16px;
  }
  .primary-navigation .menu li:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 9px;
    width: 30px;
    margin: 0 auto;
    bottom: 9px;
  }
  .primary-navigation .menu li:nth-child(1):after {
    background: transparent url("../img/3-ball-red.svg") no-repeat center center;
  }
  .primary-navigation .menu li:nth-child(2):after {
    background: transparent url("../img/3-ball-black.svg") no-repeat center center;
  }
  .primary-navigation .menu li:nth-child(3):after {
    background: transparent url("../img/3-ball-yellow.svg") no-repeat center center;
  }
  .primary-navigation .menu li:nth-child(4):after {
    background: transparent url("../img/3-ball-gray.svg") no-repeat center center;
  }
}

li.expanded .menu {
  display: block;
}

@media (min-width: 1024px) {
  li.expanded .menu {
    display: none;
  }
}

.showMenu .menu {
  display: block !important;
}

@media (min-width: 1024px) {
  #block-menu-block-5 li.expanded .menu {
    width: 120%;
    background: #fff;
    position: absolute;
    z-index: 1000;
    padding: 15px 10px;
    border-right: 5px solid #000;
    border-bottom: 5px solid #000;
  }
  #block-menu-block-5 li.expanded .menu li a {
    border-top: none;
    font-size: 16px;
    font-size: 1rem;
    padding: 7px 30px;
    color: #000;
  }
  #block-menu-block-5 li.expanded .menu li a:after {
    display: none;
  }
  #block-menu-block-5 li.expanded .menu li:after {
    display: none;
  }
  #block-menu-block-5 li.expanded .menu li a:before {
    content: "\2022";
    font-size: 18px;
    font-size: 1.125rem;
    position: absolute;
    left: 7px;
    top: 4px;
    transition: color 0.3s;
  }
  .expanded.showMenu {
    background: #fff;
  }
}

li.expanded:nth-child(1) .menu li a:before {
  color: #dc3836;
}

li.expanded:nth-child(2) .menu li a:before {
  color: #000;
}

li.expanded:nth-child(3) .menu li a:before {
  color: #f3d900;
}

li.expanded:nth-child(4) .menu li a:before {
  color: #5c5c5c;
}

li.expanded .menu li a:hover:before {
  color: #939393;
}

.secondary-navigation {
  width: 100%;
  border-bottom: 1px solid #000;
  overflow: auto;
  margin-bottom: 25px;
  position: relative;
}

@media (min-width: 480px) {
  .secondary-navigation {
    margin-bottom: 0;
    border-top: none;
  }
}

.secondary-navigation .menu {
  padding: 0 5px 5px 5px;
  margin: 0;
  overflow: auto;
}

@media (min-width: 480px) {
  .secondary-navigation .menu {
    padding: 0 0 5px 0;
    float: right;
  }
}

.secondary-navigation .menu li {
  list-style: none;
  float: left;
}

.secondary-navigation .menu li a {
  padding-left: 10px;
  display: block;
  color: #000;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .secondary-navigation .menu li a {
    padding-left: 25px;
  }
}

.secondary-navigation .menu li a:hover {
  color: #dc3836;
}

.secondary-navigation .menu li:first-child a {
  padding-left: 0;
}

nav#nav-mobile {
  position: fixed;
  background: #fff;
  height: 100%;
  z-index: 9999;
  overflow-y: auto;
  width: 100%;
  top: 0;
  padding-bottom: 50px;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  nav#nav-mobile {
    display: none !important;
  }
}

nav#nav-mobile.closed {
  top: 100%;
}

nav#nav-mobile ul {
  text-align: center;
  padding: 0;
  width: 100%;
  margin: 0;
}

nav#nav-mobile ul li:nth-child(1) a {
  border-bottom: 1px solid #dc3836;
}

nav#nav-mobile ul li:nth-child(2) a {
  border-bottom: 1px solid #000;
}

nav#nav-mobile ul li:nth-child(3) a {
  border-bottom: 1px solid #f3d900;
}

nav#nav-mobile ul li:nth-child(4) a {
  border-bottom: 1px solid #5c5c5c;
}

nav#nav-mobile ul ul {
  display: none;
  padding: 10px 0;
}

nav#nav-mobile li {
  margin: 0;
  width: 100%;
  position: relative;
}

nav#nav-mobile li:last-child {
  border-bottom: none;
}

nav#nav-mobile a {
  display: block;
  color: #000;
  padding: 20px 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.125rem;
}

nav#nav-mobile ul ul li a {
  color: #fff;
  border-bottom: none !important;
}

nav#nav-mobile li:nth-child(1) .menu {
  background: #dc3836;
}

nav#nav-mobile li:nth-child(2) .menu {
  background: #000;
}

nav#nav-mobile li:nth-child(3) .menu {
  background: #f3d900;
}

nav#nav-mobile li:nth-child(3) .menu a {
  color: #000;
}

nav#nav-mobile li:nth-child(4) .menu {
  background: #5c5c5c;
}

nav#nav-mobile a:hover {
  color: #ccc;
}

.open {
  height: block !important;
}

li.expanded span {
  cursor: pointer;
  font-size: 25px;
  font-size: 1.5625rem;
  position: absolute;
  right: 0;
  padding: 15px 30px;
  top: 0;
  background: none;
  transition: all 0.2s;
}

.rotateX {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 13px !important;
  padding: 9px 17px 15px 30px !important;
}

nav#nav-mobile ul ul li {
  list-style: disc;
}

nav#nav-mobile ul ul li a {
  font-size: 16px;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: none;
}

.cmn-toggle-switch {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 76px;
  height: 46px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.cmn-toggle-switch:focus {
  outline: none;
}

.cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 25px;
  left: 15px;
  right: 15px;
  height: 5px;
  background: #000;
}

.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
  content: "";
}

.cmn-toggle-switch span::before {
  top: -11px;
}

.cmn-toggle-switch span::after {
  bottom: -11px;
}

#menu-button-container {
  display: block;
  position: fixed;
  bottom: 0;
  background: #fff;
  border-top: 4px solid #000;
  text-align: center;
  z-index: 500;
  text-align: right;
  cursor: pointer;
  width: 100%;
  z-index: 10000;
  padding: 5px 0 12px 10px;
  -webkit-translateY: translateY(100%);
  -moz-translateY: translateY(100%);
  -ms-translateY: translateY(100%);
  -o-translateY: translateY(100%);
  translateY: translateY(100%);
}

@media (min-width: 1024px) {
  #menu-button-container {
    display: none;
  }
}

#menu-button-container .burger {
  float: right;
}

.burger {
  background-color: #fff;
}

.burger span {
  transition: background 0s 0.2s;
}

.burger span::before,
.burger span::after {
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
}

.burger span::before {
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}

.burger span::after {
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

/* active state, i.e. menu open */
.burger.active {
  background-color: #fff;
}

.burger.active span {
  background: none;
}

.burger.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger.active span::before,
.burger.active span::after {
  transition-delay: 0s, 0.3s;
}

/*
 * Design
 * 
 * Include all your design elements in this file.
 */
body {
  background: #fff url("../img/bg-white.png") no-repeat left top;
  color: #000;
  background-size: contain;
  height: 100%;
}

body.admin-menu {
  margin-top: 29px !important;
}

a {
  transition: all 0.3s;
  color: #dc3836;
  text-decoration: none;
}

a:hover, a:focus {
  color: #000;
}

.field {
  margin-bottom: 1em;
}

header .container {
  padding-top: 26px;
}

.logo {
  text-align: center;
  margin: 0 auto 5px;
}

@media (min-width: 480px) {
  .logo {
    margin: 20px 0 20px;
    text-align: left;
  }
}

.logo img {
  max-width: 30%;
}

@media (min-width: 480px) {
  .logo img {
    max-width: 100%;
  }
}

.banner.container {
  padding: 0;
}

@media (min-width: 1400px) {
  .banner.container {
    padding: 0 20px 0;
  }
}

.dot-dec {
  background: #000 url("../img/bg-dot-repeat.png") repeat center center;
}

.front .dot-dec-downsize {
  background: #000 url("../img/bg-dot-repeat.png") repeat center center;
  height: 94px;
  margin-top: 471px;
}

@media (min-width: 480px) {
  .front .dot-dec-downsize {
    margin-top: 513px;
  }
}

@media (min-width: 768px) {
  .front .dot-dec-downsize {
    margin-top: 0;
  }
}

@media (min-width: 1400px) {
  .front .dot-dec-downsize {
    display: none;
  }
}

@media (min-width: 1400px) {
  .front .dot-dec {
    height: 94px;
  }
}

.front-bubble-container {
  position: relative;
}

@media (min-width: 768px) {
  .front-bubble-container {
    background: transparent url("../img/circles-boy.png") no-repeat left 20px bottom;
    height: 567px;
    padding-left: 20px;
    margin-top: 0;
    position: relative;
  }
}

@media (min-width: 1400px) {
  .front-bubble-container {
    padding-left: 0;
    background: transparent url("../img/circles-boy.png") no-repeat left bottom;
  }
}

.front-bubble-container h1, .front-bubble-container h2 {
  color: #fff;
}

.front-bubble-container h1 {
  background: #000;
  border: 12px solid #dc3836;
  border-radius: 50%;
  font-size: 21px;
  font-size: 1.3125rem;
  text-transform: none;
  width: 260px;
  height: 260px;
  line-height: 26px;
  padding: 63px 30px;
  margin: 0 auto;
  text-align: right;
  position: absolute;
  z-index: 200;
  left: 0;
  right: 0;
}

@media (min-width: 480px) {
  .front-bubble-container h1 {
    left: -70px;
  }
}

@media (min-width: 768px) {
  .front-bubble-container h1 {
    font-size: 26px;
    font-size: 1.625rem;
    width: 325px;
    position: absolute;
    left: 60px;
    top: 359px;
    text-align: right;
    line-height: 30px;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
  }
}

.front-bubble-container h2 {
  background: #3c3c3c;
  border: 12px solid #f3d900;
  border-radius: 50%;
  font-size: 19px;
  font-size: 1.1875rem;
  text-transform: none;
  width: 260px;
  height: 260px;
  line-height: 26px;
  padding: 80px 30px 40px;
  margin: 0 auto;
  font-family: "Lato", Arial, sans-serif;
  font-style: italic;
  text-transform: none;
  font-weight: normal;
  position: absolute;
  top: 184px;
  left: 0;
  right: 0;
}

.front-bubble-container h2 a {
  display: block;
  color: #fff;
}

@media (min-width: 480px) {
  .front-bubble-container h2 {
    left: 130px;
  }
}

@media (min-width: 768px) {
  .front-bubble-container h2 {
    top: 447px;
    left: 466px;
    width: 248px;
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }
}

.front-services-container {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 45px;
  background: #f1f1f1;
}

@media (min-width: 1400px) {
  .front-services-container {
    padding-left: 0;
    padding-bottom: none;
    padding-right: 0;
    background: none;
    padding-top: 50px;
  }
}

.front-services-container h2 {
  text-align: center;
  font-size: 30px;
  margin: 60px 0 42px 0;
  position: relative;
  line-height: 32px;
}

@media (min-width: 1400px) {
  .front-services-container h2 {
    margin: 0 0 42px 0;
  }
}

.front-services-container h2:after {
  content: "";
  color: #dc3836;
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  right: 40%;
  left: 40%;
  bottom: -25px;
  background: transparent url("../img/3-ball-red.svg") no-repeat center center;
  background-size: 44%;
  height: 20px;
}

@media (min-width: 768px) {
  .front-services-container h2:after {
    background-size: 22%;
  }
}

@media (min-width: 1400px) {
  .front-services-container h2:after {
    background-size: 46%;
  }
}

.front-services-container .menu {
  padding: 0;
}

.front-services-container .menu li {
  list-style: none;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .front-services-container .menu li {
    width: 47.5%;
    float: left;
  }
}

.front-services-container .menu li a {
  display: block;
  font-style: italic;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 10px;
  text-align: center;
  color: #000;
}

.front-services-container .menu li a:after {
  content: "";
  background: transparent url("../img/btn-arrows.svg") no-repeat left 4px top 6px;
  width: 13px;
  height: 14px;
  display: block;
  float: right;
  padding: 18px;
  transition: background 0.3s;
}

.front-services-container .menu li a:hover {
  color: #000;
}

.front-services-container .menu li a:hover:after {
  background: transparent url("../img/btn-arrows.svg") no-repeat left 18px top 6px;
}

.front-services-container .menu li.js-inserted img {
  max-width: none;
  margin-top: 2em;
  margin-left: 2em;
  width: 204px;
  height: auto;
}

@media (min-width: 1400px) {
  .front-services-container .menu li.js-inserted img {
    position: absolute;
  }
}

.front-services-container .menu li a {
  border-top: 1px solid #dc3836;
  border-left: 3px solid #dc3836;
  border-right: 1px solid #dc3836;
  border-bottom: 3px solid #dc3836;
}

@media (min-width: 768px) {
  .front-services-container .menu li:nth-child(1) a, .front-services-container .menu li:nth-child(5) a {
    border-top: 3px solid #dc3836;
    border-left: 3px solid #dc3836;
    border-right: 1px solid #dc3836;
    border-bottom: 1px solid #dc3836;
  }
  .front-services-container .menu li:nth-child(2) a, .front-services-container .menu li:nth-child(6) a {
    border-bottom: 3px solid #dc3836;
    border-right: 3px solid #dc3836;
    border-top: 1px solid #dc3836;
    border-left: 1px solid #dc3836;
  }
  .front-services-container .menu li:nth-child(3) a {
    border-top: 3px solid #dc3836;
    border-right: 3px solid #dc3836;
    border-left: 1px solid #dc3836;
    border-bottom: 1px solid #dc3836;
  }
  .front-services-container .menu li:nth-child(4) a {
    border-bottom: 3px solid #dc3836;
    border-left: 3px solid #dc3836;
    border-top: 1px solid #dc3836;
    border-right: 1px solid #dc3836;
  }
}

@media (min-width: 768px) {
  .front-services-container .menu li:nth-child(1), .front-services-container .menu li:nth-child(3), .front-services-container .menu li:nth-child(5) {
    margin-right: 5%;
  }
}

.front-projects-container {
  padding: 60px 0;
}

.front-projects-container h2 {
  text-align: center;
  font-size: 34px;
  margin: 0 0 76px 0;
  position: relative;
  line-height: 36px;
}

.front-projects-container h2:after {
  content: "";
  color: #f3d900;
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  right: 40%;
  left: 40%;
  background: transparent url("../img/3-ball-yellow.svg") no-repeat center center;
  background-size: 44%;
  height: 20px;
  bottom: -30px;
}

@media (min-width: 768px) {
  .front-projects-container h2:after {
    background-size: 19%;
  }
}

.white-bg {
  background: #fff;
}

.projects, .main .news-list {
  padding: 0;
  margin: 0;
}

.projects li, .main .news-list li {
  list-style: none;
  overflow: auto;
  background: #fff;
  border-bottom: 2px solid #000;
  padding: 30px 0;
}

@media (min-width: 1024px) {
  .projects li, .main .news-list li {
    padding: 50px;
  }
}

.projects li .thumb a, .main .news-list li .thumb a {
  display: block;
  padding-top: 22px;
}

.projects li .thumb a img, .main .news-list li .thumb a img {
  border: 2px solid #f3d900;
}

.projects li .view-project a, .main .news-list li .view-project a {
  display: inline-block;
  padding: 10px 30px 0px 30px;
  color: #000;
  border-left: 3px solid #f3d900;
  border-bottom: 3px solid #f3d900;
  border-right: 1px solid #f3d900;
  border-top: 1px solid #f3d900;
  width: 100%;
}

@media (min-width: 480px) {
  .projects li .view-project a, .main .news-list li .view-project a {
    width: auto;
  }
}

.projects li .view-project a:after, .main .news-list li .view-project a:after {
  content: "";
  background: transparent url("../img/btn-arrows.svg") no-repeat left 20px top 6px;
  width: 13px;
  height: 14px;
  display: block;
  float: right;
  padding: 18px 20px 18px 25px;
  transition: background 0.3s;
}

.projects li .view-project a:hover, .main .news-list li .view-project a:hover {
  color: #000;
}

.projects li .view-project a:hover:after, .main .news-list li .view-project a:hover:after {
  background: transparent url("../img/btn-arrows.svg") no-repeat left 30px top 6px;
}

.projects li:nth-child(odd) .thumb, .main .news-list li:nth-child(odd) .thumb {
  width: 100%;
  text-align: center;
}

.projects li:nth-child(odd) .project-teaser, .main .news-list li:nth-child(odd) .project-teaser {
  width: 100%;
}

@media (min-width: 768px) {
  .projects li:nth-child(odd) .thumb, .main .news-list li:nth-child(odd) .thumb {
    float: left;
    margin: 0 3%;
    width: 17%;
  }
  .projects li:nth-child(odd) .project-teaser, .main .news-list li:nth-child(odd) .project-teaser {
    float: left;
    width: 77%;
  }
}

.projects li:nth-child(even) .thumb, .main .news-list li:nth-child(even) .thumb {
  width: 100%;
  text-align: center;
}

.projects li:nth-child(even) .project-teaser, .main .news-list li:nth-child(even) .project-teaser {
  width: 100%;
}

@media (min-width: 768px) {
  .projects li:nth-child(even) .thumb, .main .news-list li:nth-child(even) .thumb {
    float: right;
    margin: 0 3%;
    width: 17%;
  }
  .projects li:nth-child(even) .project-teaser, .main .news-list li:nth-child(even) .project-teaser {
    float: right;
    width: 77%;
    text-align: right;
  }
  .projects li:nth-child(even) .view-project, .main .news-list li:nth-child(even) .view-project {
    float: right;
  }
}

.projects .thumb img, .main .news-list .thumb img {
  border-radius: 50%;
}

.page-title-container {
  background: #000;
}

.page-title-container h1 {
  text-align: center;
  margin: 0;
  color: #fff;
  padding: 30px 0 60px;
  position: relative;
}

.page-title-container h1:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  background-size: 100%;
  height: 14px;
  width: 55px;
  bottom: 33px;
  margin: 0 auto;
  background: transparent url("../img/3-red-inner.svg") no-repeat center center;
}

.page-title-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-search-node .page-title-container h1:after, .section-services .page-title-container h1:after {
  background: transparent url("../img/3-red-inner.svg") no-repeat center center;
}

.section-community .page-title-container h1:after {
  background: transparent url("../img/3-black-inner.svg") no-repeat center center;
}

.section-projects .page-title-container h1:after, .node-type-project .page-title-container h1:after {
  background: transparent url("../img/3-yellow-inner.svg") no-repeat center center;
}

.section-jobs .page-title-container h1:after, .node-type-job .page-title-container h1:after {
  background: transparent url("../img/3-red-inner.svg") no-repeat center center;
}

.section-news .page-title-container h1:after {
  background: transparent url("../img/3-yellow-inner.svg") no-repeat center center;
}

.section-contact .page-title-container h1:after, .section-about-us .page-title-container h1:after {
  background: transparent url("../img/3-gray-inner.svg") no-repeat center center;
}

.main {
  margin: 50px 0;
}

.node-type-project .main {
  margin-top: 0;
}

footer {
  background: #000 url("../img/bg-dot-repeat.png") repeat center center;
  padding: 80px 0 55px;
  color: #fff;
}

footer h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 0;
  color: #fff;
  position: relative;
}

footer h2:after {
  content: "";
  color: #f3d900;
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  left: 0;
  bottom: -37px;
  background: transparent url("../img/3-ball-gray-footer.svg") no-repeat left center;
  padding: 20px 30px;
}

footer ul {
  padding: 0;
  margin: 30px 0;
}

.news-list.footer-list img {
  border-radius: 50%;
  transition: opacity 0.3s;
  width: 40px;
  height: 40px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .news-list.footer-list img {
    width: 66px;
    height: 66px;
    margin-top: 0;
  }
}

.news-list.footer-list .news-thumb, .news-list.footer-list .news-content {
  float: left;
}

.news-list.footer-list .news-content {
  width: 78%;
}

.news-list.footer-list .news-thumb {
  width: auto;
}

.news-list.footer-list .news-content {
  margin-left: 5%;
}

@media (min-width: 480px) {
  .news-list.footer-list .news-content {
    margin-left: 25px;
  }
}

.news-list.footer-list .news-thumb a:hover img {
  opacity: 0.8;
}

.news-list.footer-list li {
  padding-bottom: 7px;
}

.button-white {
  font-weight: bold;
  font-style: italic;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
}

.button-white:after {
  content: "";
  background: transparent url("../img/btn-arrows-white.svg") no-repeat left 10px top 24px;
  width: 13px;
  height: 14px;
  display: inline-block;
  padding: 19px;
  transition: background 0.3s;
}

.button-white:hover {
  color: #fff;
}

.button-white:hover:after {
  background: transparent url("../img/btn-arrows-white.svg") no-repeat left 20px top 24px;
}

footer .block ul li {
  list-style: none;
  padding: 16px 0 21px;
  overflow: auto;
  border-bottom: 1px solid #595959;
}

footer .block ul li a {
  color: #dc3836;
}

footer .block ul li a:hover {
  color: #f3d900;
}

footer .block ul .footer-title a {
  font-style: "Lato", Arial, sans-serif;
  font-style: italic;
  font-size: 19px;
  font-size: 1.1875rem;
  margin: 5px 0 0 0;
  color: #fff;
  display: block;
}

footer .block ul .footer-title a:hover {
  color: #cccccc;
}

footer .block ul .footer-title.cost {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-top: 5px;
}

footer .block ul .date {
  font-size: 17px;
  font-size: 1.0625rem;
  font-style: italic;
  color: #cccccc;
}

#block-views-news-block-1, #block-views-jobs-block {
  margin-top: 50px;
}

@media (min-width: 1400px) {
  #block-views-news-block-1, #block-views-jobs-block {
    margin-top: 0;
  }
}

#block-block-8 a {
  float: left;
  display: inline-block;
  margin-top: -5px;
}

.created-by {
  width: 100%;
  background: #fff;
  padding-bottom: 67px;
}

@media (min-width: 1024px) {
  .created-by {
    padding-bottom: 0;
  }
}

.created-by p {
  font-size: 16px;
  font-size: 1rem;
}

.captovate {
  text-align: left;
}

@media (min-width: 480px) {
  .captovate {
    text-align: right;
  }
}

.captovate p {
  margin: 0 0 20px 0;
}

@media (min-width: 480px) {
  .captovate p {
    margin: 1.5em 0;
  }
}

.captovate a {
  color: #000;
}

.captovate a:hover {
  color: #dc3836;
}

.node-type-article .field-name-field-thumbnail-news {
  margin: 0 auto 2.5em;
  text-align: center;
}

@media (min-width: 768px) {
  .node-type-article .field-name-field-thumbnail-news {
    float: left;
    margin: 0 2.5em 2.5em 0;
  }
}

.node-type-article .field-name-field-thumbnail-news img {
  border-radius: 50%;
  border: 2px solid #f3d900;
}

.no-jobs {
  margin-top: 45px;
}

.no-jobs a:hover {
  color: #f3d900;
}

.section-jobs .main .item-list ul {
  margin: 0;
  padding: 0;
}

.section-jobs .main .item-list li {
  list-style: none;
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}

.section-jobs .main .item-list h2 {
  margin: 0 0 15px 0;
}

.section-jobs .main .item-list h2 a {
  color: #000;
}

.section-jobs .main .item-list h2 a:hover {
  color: #dc3836;
}

.section-jobs .main .item-list .date {
  color: #5c5c5c;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
}

.section-jobs .main .item-list .date .date-display-single {
  display: inline-block;
}

.section-jobs .main .item-list p {
  margin: 10px 0 20px;
}

.node-type-job .field-label {
  padding-right: 3px;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  float: left;
  color: #5c5c5c;
}

.node-type-job .date-display-single {
  font-style: italic;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  color: #5c5c5c;
}

.job-heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  width: 85%;
  text-align: center;
  margin: 75px auto 70px;
}

.submitted {
  display: none;
}

.sidebar {
  background: #fff;
  border-left: 5px solid #000;
  border-right: 1px solid #000;
}

.sidebar .menu {
  padding: 0;
  margin: 0;
}

.sidebar .menu li {
  list-style: none;
  position: relative;
}

.sidebar .menu li a {
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  display: block;
  padding: 13px 25px 13px 66px;
}

.sidebar .menu li a:hover {
  color: #fff;
  background: #000;
}

.sidebar .menu li a:before {
  content: "\2022";
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  left: 40px;
  top: 8px;
  transition: color 0.3s;
}

.section-about-us .sidebar .menu li a:before {
  color: #5c5c5c;
}

.section-services .sidebar .menu li a:before {
  color: #dc3836;
}

.section-community .sidebar .menu li a:before {
  color: #000;
}

.section-projects .sidebar .menu li a:before {
  color: #f3d900;
}

.sidebar .menu li a:hover:before {
  color: #fff;
}

.sidebar .menu li a.active {
  background: #000;
  color: #fff;
}

.sidebar .menu li a.active:before {
  color: #fff;
}

.cta-container {
  background: #dc3836;
  padding: 30px 0;
  text-align: center;
}

.cta-container .container {
  *zoom: 1;
  width: auto;
  max-width: 1100px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}

.cta-container .container:before, .cta-container .container:after {
  content: '';
  display: table;
}

.cta-container .container:after {
  clear: both;
}

.cta-container h2, .cta-container .cta-button {
  color: #fff;
}

.cta-container h2 {
  margin: 0;
  display: block;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .cta-container h2 {
    display: inline-block;
    margin-bottom: 0;
  }
}

.cta-container .cta-button {
  border-top: 1px solid #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  padding: 20px 60px 20px 20px;
  position: relative;
  margin-left: 30px;
  background: #000;
  display: inline-block;
}

.cta-container .cta-button:after {
  background: transparent url("../img/btn-arrows-white.svg") no-repeat left 18px top 5px;
  content: "";
  width: 13px;
  height: 14px;
  position: absolute;
  right: 24px;
  top: 20px;
  padding: 10px 20px;
  transition: background 0.3s;
}

.cta-container .cta-button:hover:after {
  background: transparent url("../img/btn-arrows-white.svg") no-repeat left 24px top 5px;
}

.section-about-us .layout-row li {
  margin-bottom: 20px;
}

.search-results .search-info {
  display: none;
}

.photoswipe-gallery img {
  border-radius: 50%;
  border: 2px solid #000;
  margin: 14px;
}

.field-name-field-page-gallery .field-label {
  font-family: "FranklinHeavy","Lato",Helvetica,Arial,sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
}

.section-ybe-community .ajax-progress, .section-ybe-community .ajax-progress-throbber {
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 10000;
  top: 48%;
  left: 48%;
}

.section-ybe-community .ajax-progress:before, .section-ybe-community .ajax-progress-throbber:before {
  width: 100%;
  height: 100%;
  content: ' ';
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  -webkit-animation: fadeIn 0.2s forwards ease-in-out;
          animation: fadeIn 0.2s forwards ease-in-out;
}

.section-ybe-community .ajax-progress .throbber, .section-ybe-community .ajax-progress-throbber .throbber {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(223, 223, 223, 0.9);
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 1.0s infinite ease-in-out;
  animation: sk-bounce 1.0s infinite ease-in-out;
  background-image: none;
}

.section-ybe-community .ajax-progress .throbber:after, .section-ybe-community .ajax-progress-throbber .throbber:after {
  content: ' ';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(220, 56, 54, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-animation: sk-bounce 1.5s infinite ease-in-out;
  animation: sk-bounce 1.5s infinite ease-in-out;
}

.section-ybe-community .view-filters {
  background: #1e1916;
  padding: 1.8em 3em;
}

@media (max-width: 767px) {
  .section-ybe-community .view-filters {
    padding: 1em 1.5em;
  }
}

.section-ybe-community .view-filters .views-exposed-widgets {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 767px) {
  .section-ybe-community .view-filters .views-exposed-widgets {
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media (min-width: 768px) {
  .section-ybe-community .view-filters .views-exposed-widgets {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.section-ybe-community .view-filters .views-exposed-widgets .views-exposed-widget {
  float: none;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}

@media (max-width: 767px) {
  .section-ybe-community .view-filters .views-exposed-widgets .views-exposed-widget {
    padding-right: 0px;
  }
}

@media (min-width: 768px) {
  .section-ybe-community .view-filters .views-exposed-widgets .views-exposed-widget {
    -webkit-flex-basis: 35%;
        -ms-flex-preferred-size: 35%;
            flex-basis: 35%;
    margin-right: 5%;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .section-ybe-community .view-filters .views-exposed-widgets .views-exposed-widget.views-submit-button {
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
}

.section-ybe-community .view-filters label {
  color: white;
  font-size: 21px;
}

.section-ybe-community .view-filters input[type="submit"] {
  color: white;
  font-size: 19px;
  padding: .7em 7em .7em 1em;
  background: transparent url(../img/btn-arrows-white.svg) no-repeat right 38px center;
}

@media (max-width: 767px) {
  .section-ybe-community .view-filters input[type="submit"] {
    padding: .7em 0;
    width: 100%;
  }
}

.section-ybe-community .view-filters input[type="submit"]:hover {
  background: transparent url(../img/btn-arrows-white.svg) no-repeat right 15px center;
}

.section-ybe-community .view-filters input[type="text"] {
  width: 100%;
  font-size: 19px;
  padding: .7em .6em;
}

.section-ybe-community .view-filters .form-select {
  width: 100%;
  font-size: 19px;
  padding: .7em .6em;
}

.section-ybe-community .view-content {
  background: white;
  margin-top: 4em;
}

@media (max-width: 767px) {
  .section-ybe-community .view-content {
    margin-top: 2em;
  }
}

.page-taxonomy-term .main > .content-wrapper {
  background: white;
  margin-top: 4em;
}

@media (max-width: 767px) {
  .page-taxonomy-term .main > .content-wrapper {
    margin-top: 2em;
  }
}

@media (min-width: 1024px) {
  .node-community .group-left {
    width: calc(95% - 188px);
    margin-right: 4.5%;
  }
}

@media (max-width: 1023px) {
  .node-community .group-right {
    margin-top: 1em;
  }
}

@media (min-width: 1024px) {
  .node-community .group-right {
    width: 188px;
  }
}

@media (max-width: 1023px) {
  .node-community .group-left, .node-community .group-right {
    float: none;
    width: 100%;
  }
}

.node-community.node-teaser {
  padding: 1.8em 3em;
  border-bottom: 2px solid black;
}

@media (max-width: 767px) {
  .node-community.node-teaser {
    padding: 1em 1.5em;
  }
}

.node-community.node-teaser .field-name-view-document p {
  margin: 0;
}

.node-community.node-teaser .field-name-view-document a {
  line-height: 1;
}

.node-community.node-teaser .field-name-view-document a::after {
  background-position: 15px 2px;
}

.node-community.node-teaser .field-name-view-document a:hover::after {
  background-position: 20px 2px;
}

.node-community.node-teaser .field-name-body p {
  margin: 0;
}

.node-community.node-teaser .field-name-body p + p {
  margin-top: 1em;
}

.node-community.node-teaser .field {
  margin: 0;
}

.node-community.node-teaser .group-header {
  color: #1e1916;
  font-weight: bold;
  font-size: 21px;
  border-bottom: 1px solid black;
  padding-bottom: 0.3em;
  margin-bottom: 0.8em;
}

.node-community.node-teaser .group-header .field {
  display: inline;
}

.node-community.node-teaser .group-header h2, .node-community.node-teaser .group-header h2 a {
  font-family: "Lato", Arial, sans-serif;
  color: #1e1916;
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  display: inline;
  text-transform: none;
}

.node-community.node-teaser .group-header .field-item {
  display: inline;
}

.node-community.node-teaser .group-header .field-name-field-document-category a {
  color: #dc3836;
  font-style: italic;
  font-weight: normal;
  font-size: 18px;
}

.node-community.node-teaser .group-header .field-name-field-document-category::before {
  content: "-";
}

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