@charset "UTF-8";
/**
 * Style file @
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* 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: "Montserrat", Helvetica, 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: 18;
}

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
 */
/**
 * 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: 'Merriweather';
  src: url("../fonts/merriweather-regular-webfont.woff2") format("woff2"), url("../fonts/merriweather-regular-webfont.woff") format("woff"), url("../fonts/merriweather-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/montserrat-light-webfont.woff2") format("woff2"), url("../fonts/montserrat-light-webfont.woff") format("woff"), url("../fonts/montserrat-light-webfont.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/montserrat-regular-webfont.woff2") format("woff2"), url("../fonts/montserrat-regular-webfont.woff") format("woff"), url("../fonts/montserrat-regular-webfont.ttf") format("truetype");
  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;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: #048a56;
  text-transform: uppercase;
}

body {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}

h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3;
  margin: .67em 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
  margin: .83em 0;
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 1em 0;
}

h4 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 1.33em 0;
}

h5 {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 1.67em 0;
}

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  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: 18px;
  font-size: 1.125rem;
}

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: 16px;
  font-size: 1rem;
}

large {
  font-size: 20px;
  font-size: 1.25rem;
}

sub, sup {
  font-size: 16px;
  font-size: 1rem;
  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: 2.5em 0;
  border-left: 4px solid #eaeceb;
  padding: 0 2.5em;
}

/*
 * Buttons
 */
#edit-actions a,
.button,
input[type=submit] {
  transition: all 0.3s;
  display: inline-block;
  padding: 15px 25px;
  border: 0;
  border-radius: 10px;
  background-color: #048a56;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-right: 2em;
  margin-bottom: 1em;
}

#edit-actions a:hover, #edit-actions a:focus,
.button:hover,
.button:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  background-color: #035837;
  color: #fff;
  text-decoration: none;
}

.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;
}

/*
 * Classes that can be used in CKEditor
 */
.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: 769px) {
  .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%;
  }
}

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

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

big {
  font-size: 20px;
  font-size: 1.25rem;
}

small {
  font-size: 16px;
  font-size: 1rem;
}

/* 
// Using jeet.gs


.layout-row {
	@include cf();
}
body.cke_editable {
	padding: 20px;
	.layout-row {
		padding: 10px;
		margin: 0 -10px 20px;
		border: 1px dashed pink;
	}
	.layout-row > div {
		border: 1px dashed #a5d3e4;
	}
	table {
		td {
			border: 1px dashed #ccc;
		}
	}
}
@include from(tablet-l) {
	.col-one-half {
		@include col(1/2, $gutter: 3);
	}
	.col-one-third {
		@include col(1/3, $gutter: 3);
	}
	.col-two-thirds {
		@include col(2/3, $gutter: 3);
	}	
	.col-one-quarter {
		@include col(1/4, $gutter: 3);
	}
}

*/
/*
 * 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: 25px;
  display: inline-block;
  border: 1px solid #4b4c4b;
  border-radius: 0;
  color: #000;
  font-size: 18;
  width: 100%;
  outline: none;
  background: #e1e4e2;
}

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: #048a56;
}

input[type=text][disabled],
input[type=password][disabled],
input[type=email][disabled],
input[type=url][disabled],
input[type=date][disabled],
input[type=month][disabled],
input[type=time][disabled],
input[type=datetime][disabled],
input[type=datetime-local][disabled],
input[type=week][disabled],
input[type=number][disabled],
input[type=search][disabled],
input[type=tel][disabled],
input[type=color][disabled],
.form-text[disabled],
select[disabled],
textarea[disabled] {
  color: #404040;
  background: #9ea8a1;
}

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: 20px;
  font-size: 1.25rem;
  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: #838383;
  opacity: 1 !important;
}

::-webkit-input-placeholder {
  color: #838383;
  opacity: 1 !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #838383;
  opacity: 1 !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #838383;
  opacity: 1 !important;
}

:-ms-input-placeholder {
  color: #838383;
  opacity: 1 !important;
}

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

input[type="submit"], .form-submit {
  background-color: #048a56;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  padding: 20px 25px;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
}

.views-reset-button input[type="submit"], .views-reset-button .form-submit {
  background-color: #252525;
}

.views-reset-button input[type="submit"]:hover, .views-reset-button input[type="submit"]:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
  background-color: #035837;
}

#edit-actions a {
  cursor: pointer;
  margin-top: 20px;
  padding: 20px 25px;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  background-color: #252525;
}

#edit-actions a:hover, #edit-actions a:focus {
  background-color: #035837;
}

#edit-actions {
  text-align: center;
  *zoom: 1;
}

#edit-actions:before, #edit-actions:after {
  content: '';
  display: table;
}

#edit-actions:after {
  clear: both;
}

#edit-actions > * {
  width: 100%;
}

@media (min-width: 1025px) {
  #edit-actions > * {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48%;
    margin-left: 0%;
    margin-right: 4%;
    clear: none !important;
  }
  #edit-actions > *:before, #edit-actions > *:after {
    content: '';
    display: table;
  }
  #edit-actions > *:after {
    clear: both;
  }
  #edit-actions > *:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  #edit-actions > *:nth-of-type(2n + 1) {
    clear: both;
  }
}

#edit-actions a {
  margin-right: 0;
}

.field-name-field-course-register .ds-2col-stacked-fluid > .group-left {
  padding-right: 2%;
}

.field-name-field-course-register .ds-2col-stacked-fluid > .group-right {
  padding-left: 2%;
}

.form-managed-file .form-submit {
  background-color: #252525;
}

.form-managed-file .form-submit:hover {
  background-color: #000;
}

.description {
  font-size: 16px;
  font-size: 1rem;
  color: #a2a2a2;
  margin: 0.75em 0;
}

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

.form-type-checkbox label {
  color: #000;
}

.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: .3em;
  color: #000;
  font-size: 22px;
  font-size: 1.375rem;
}

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

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

.webform-client-form .form-item textarea {
  box-shadow: none;
  padding: 10px;
  border-radius: 0;
}

.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;
}

/**
 * Google Recaptcha
 */
.g-recaptcha {
  margin-bottom: 1.5em;
}

.webform-component-markup p {
  color: #048a56;
  font-size: 22px;
  font-size: 1.375rem;
}

.check-message {
  font-weight: bold;
  font-style: italic;
}

.content-wrapper {
  margin-bottom: 2em;
}

.page-user {
  background: #fff;
}

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

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

#auth_box .form-submit {
  width: 100%;
  float: none;
  max-width: none;
  text-transform: uppercase;
}

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

#top_part {
  margin-top: 2em;
}

#login-middle {
  border: 1px solid #dfdfdf;
  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;
}

.captovate-link {
  font-size: 15px;
  font-size: 0.9375rem;
}

.page-user-register #auth_box {
  max-width: 1366px;
}

.page-user-register .group-left {
  width: 100%;
}

@media (min-width: 1025px) {
  .page-user-register .group-left {
    width: 45%;
  }
}

.page-user-register .group-right {
  width: 100%;
}

@media (min-width: 1025px) {
  .page-user-register .group-right {
    width: 50%;
  }
}

.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;
}

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

.item-list .pager {
  padding: 0;
  display: inline-block;
  text-align: left;
  overflow: auto;
}

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

.item-list .pager a {
  color: #555;
  background: #fff;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  display: inline-block;
  padding: 5px 14px;
}

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

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

.item-list .pager .pager-ellipsis {
  background: #fff;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  display: inline-block;
  padding: 5px 12px;
  /*  2 px less */
}

.item-list .pager .last {
  border-right: 1px solid #dfdfdf;
}

.item-list .pager .pager-current {
  background: #000;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  color: #fff;
  padding: 6px 15px;
  margin-top: -1px;
}

.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: #048a56;
  /* 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: #035837;
  color: #fff;
}

.search-results {
  list-style-type: none;
  padding: 0;
}

.search-results a {
  font-weight: 700;
}

.search-results .search-snippet {
  font-size: 17;
}

.page-search .form-wrapper label[for="edit-keys"] {
  padding: 1em 0;
  transition: all 0.3s;
  color: #048a56;
  text-decoration: none;
  font-size: 25px;
  font-size: 1.5625rem;
  display: block;
}

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

.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: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  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: 20px;
}

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

.slick-prev:before {
  content: "←";
}

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

.slick-next {
  right: 20px;
}

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

.slick-next:before {
  content: "→";
}

[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;
  background: rgba(255, 255, 255, 0.9);
}

.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;
}

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

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

.container:after {
  clear: both;
}

@media (min-width: 769px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 26%;
  }
  .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%;
    margin-left: 0%;
    margin-right: 4%;
  }
  .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%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -78%;
  }
  .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%;
    margin-left: 0%;
    margin-right: 4%;
  }
  .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%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 26%;
  }
  .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%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -52%;
  }
  .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%;
    margin-left: 0%;
    margin-right: 4%;
  }
  .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%;
  }
}

.top-links {
  width: 100%;
  background: #000;
  overflow: auto;
  padding: 0 30px 0 0;
}

.top-links .content ul {
  padding: 8px 0;
  margin: 0;
  float: right;
}

.top-links .content ul li {
  float: left;
}

.top-links .content ul li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 100;
}

.top-links .content ul li a:hover {
  opacity: .75;
}

#login, #logout {
  position: relative;
  padding-left: 40px;
}

#login:before, #logout:before {
  content: "";
  background: url("../img/icon-login.svg") no-repeat center center;
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
}

#logout:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.primary-navigation {
  position: relative;
}

@media (max-width: 1600px) {
  .primary-navigation {
    height: 158px;
    background: #048a56;
  }
}

.primary-navigation.open {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.primary-navigation.open #search {
  display: none;
}

.logged-in #logo {
  top: 22px;
}

#logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 12px 50px 7px 78px;
  background: #fff;
  margin: 0;
}

#logo:after {
  content: "";
  background: url("../img/angle-logo.png") no-repeat top center;
  position: absolute;
  right: -59px;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 59px;
}

@media (max-width: 1600px) {
  #logo:after {
    display: none;
  }
}

@media (max-width: 1600px) {
  #logo {
    position: inherit;
    text-align: center;
  }
}

.main-nav {
  background: #048a56;
  width: 100%;
  overflow: auto;
}

@media (max-width: 1600px) {
  .main-nav {
    display: none;
  }
}

.main-nav .content ul {
  padding: 0 0 0 422px;
  margin: 0;
}

.main-nav .content ul li {
  float: left;
  padding: 27px 35px 25px;
}

.main-nav .content ul li a {
  display: block;
  padding: 7px 0;
  color: #fff;
  font-weight: 100;
  outline: none;
  text-transform: uppercase;
  font-size: 27px;
  font-size: 1.6875rem;
  border-bottom: 5px solid #048a56;
}

.main-nav .content ul li a:hover, .main-nav .content ul li a.active-trail {
  border-color: #fff;
}

#search {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 47px;
  width: 160px;
  height: 111px;
  cursor: pointer;
  background-image: url("../img/icon-search.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #048a56;
}

#search:hover {
  background-color: #024028;
}

#block-search-form {
  position: absolute;
  right: 0;
  bottom: 0;
}

#nav-trigger {
  position: absolute;
  width: 58px;
  height: 79px;
  left: 30px;
  bottom: 16px;
  cursor: pointer;
  z-index: 100;
}

@media (min-width: 1201px) {
  #nav-trigger {
    display: none;
  }
}

#nav-trigger.open span {
  background: #048a56;
}

#nav-trigger.open span:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

#nav-trigger.open span:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

#nav-trigger span {
  width: 54px;
  height: 4px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease-out;
  border-radius: 5px;
}

#nav-trigger span:before {
  content: "";
  position: absolute;
  top: -15px;
  width: 54px;
  height: 4px;
  background: #fff;
  transition: all 0.2s ease-out;
  border-radius: 5px;
}

#nav-trigger span:after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 54px;
  height: 4px;
  background: #fff;
  transition: all 0.2s ease-out;
  border-radius: 5px;
}

@media (max-width: 1600px) {
  #nav-trigger {
    display: block;
  }
}

@media (max-width: 1600px) {
  #primary-navigation .menu {
    display: none;
  }
}

#nav-mobile {
  top: 158px;
  position: fixed;
  transition: all 0.3s;
  z-index: 950;
  right: 0;
  overflow: auto;
  z-index: 10000;
  left: -300%;
  visibility: hidden;
}

#nav-mobile a {
  color: #fff;
  text-transform: uppercase;
  font-size: 23px;
  font-size: 1.4375rem;
  padding: 30px 20px;
  display: block;
  position: relative;
  font-weight: 700;
  display: block;
  text-align: center;
}

#nav-mobile ul {
  margin: 0;
  padding: 0;
}

#nav-mobile.menu-open {
  background: #048a56;
  border-top: 2px solid #fff;
  bottom: 0;
  visibility: visible;
  left: 0;
}

header.stick #nav-mobile.menu-open {
  top: 100px;
}

#block-search-form {
  width: 100%;
  background: #fff;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -99px;
  height: 99px;
  transition: all .3s;
  z-index: 10000;
}

#block-search-form.toggle-search {
  opacity: 1;
  visibility: visible;
}

#block-search-form input.form-text {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: none;
  font-size: 25px;
  font-size: 1.5625rem;
  position: absolute;
  right: 0;
  left: 0;
  min-height: 99px;
  z-index: 100;
  padding: 30px;
  color: #000;
}

#block-search-form input.form-submit {
  position: absolute;
  right: 0;
  z-index: 1000;
  text-indent: -9000px;
  width: 160px;
  height: 99px;
  display: block;
  margin: 0;
  background: #048a56 url("../img/icon-search.svg") no-repeat center center;
  border-radius: 0;
}

@media (max-width: 480px) {
  #block-search-form input.form-submit {
    width: 100px;
  }
}

#block-search-form input.form-submit:hover {
  background-color: #024028;
}

#block-search-form label {
  display: none;
}

#close-search {
  background-image: url("../img/icon-close.svg");
  background-repeat: no-repeat;
  background-color: #03623d;
  background-position: center center;
  position: absolute;
  z-index: 100;
  text-indent: -9000px;
  display: block;
  width: 160px;
  height: 112px;
  right: 50px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  right: 0px;
  bottom: 0;
  top: 47px;
  cursor: pointer;
  visibility: hidden;
}

#close-search:hover {
  background-color: #024028;
}

#close-search a {
  outline: none;
}

#close-search.search-open {
  opacity: 1;
  visibility: visible;
}

#block-search-form .placeholder {
  color: #000;
  opacity: 1 !important;
}

#block-search-form ::-webkit-input-placeholder {
  color: #000;
  opacity: 1 !important;
}

#block-search-form :-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 1 !important;
}

#block-search-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 1 !important;
}

#block-search-form :-ms-input-placeholder {
  color: #000;
  opacity: 1 !important;
}

/*
 * Design
 *
 * Include all your design elements in this file.
 */
body {
  background: #e1e4e2;
  color: #555;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.field {
  margin-bottom: 1em;
}

.field .field-label {
  font-weight: 700;
}

#home-slider {
  position: relative;
}

.carousel-slide {
  min-height: 836px;
  position: relative;
}

.carousel-slide:after {
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(4, 138, 86, 0.6), rgba(4, 138, 86, 0));
  margin: 0 auto;
  height: 100%;
  z-index: 3;
  position: absolute;
}

.carousel-slide .carousel-inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 140px;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
  max-width: 866px;
}

.carousel-slide .carousel-inner a {
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 20px 30px;
  font-size: 22px;
  font-size: 1.375rem;
  display: inline-block;
}

@media (min-width: 769px) {
  .carousel-slide .carousel-inner a {
    min-width: 340px;
  }
}

@media (max-width: 480px) {
  .carousel-slide .carousel-inner a {
    padding: 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.carousel-slide .carousel-inner a:hover {
  background: #048a56;
  border-color: #048a56;
}

.carousel-slide h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 100;
  margin: 0 0 45px 0;
}

@media (max-width: 480px) {
  .carousel-slide h2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.carousel-slide h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: normal;
  text-transform: none;
  color: #fff;
  margin: 0 0 45px 0;
}

@media (max-width: 480px) {
  .carousel-slide h3 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.slick-prev:before {
  content: "";
  width: 90px;
  height: 151px;
  background-image: url("../img/icon-slide-left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}

.slick-next:before {
  content: "";
  width: 90px;
  height: 151px;
  background: url("../img/icon-slide-right.svg") no-repeat center center;
  display: block;
}

.slick-prev:before, .slick-next:before {
  opacity: .6;
  transition: all .2s;
}

@media (max-width: 768px) {
  .slick-prev:before, .slick-next:before {
    background-size: 80%;
    width: 30px;
    height: 30px;
  }
}

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

.slick-prev, .slick-next {
  width: 90px;
  height: 151px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 768px) {
  .slick-prev, .slick-next {
    width: 30px;
    height: 30px;
  }
}

.slick-prev {
  left: 66px;
}

@media (max-width: 768px) {
  .slick-prev {
    left: 20px;
  }
}

.slick-next {
  right: 66px;
}

@media (max-width: 768px) {
  .slick-next {
    right: 20px;
  }
}

.node-gallery .slick-next, .node-gallery .slick-prev {
  width: 35px;
  height: 35px;
}

.node-gallery .slick-prev:before, .node-gallery .slick-next:before {
  opacity: .6;
  transition: all .2s;
  background-size: 40%;
  width: 35px;
  height: 35px;
  background-color: #048a56;
}

.node-gallery .slick-prev:before:hover, .node-gallery .slick-next:before:hover {
  opacity: 1;
  background-color: #048a56 !important;
}

.node-gallery .slick-prev:hover:before, .node-gallery .slick-next:hover:before {
  opacity: 1;
  background-color: #048a56 !important;
}

.node-gallery .slick-prev {
  left: 0;
}

.node-gallery .slick-next {
  right: 0;
}

#scroll {
  position: absolute;
  bottom: 175px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
  opacity: .5;
  z-index: 100;
}

#scroll:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  #scroll {
    bottom: 80px;
  }
}

#courses {
  padding: 34px 0 70px 0;
}

#courses-text-front {
  margin-bottom: 50px;
}

.courses-text-front h2, .latest-news-text-front h2 {
  text-transform: uppercase;
  color: #048a56;
  font-weight: normal;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 40px 0;
}

.courses-text-front .content p, .latest-news-text-front .content p {
  font-size: 48px;
  font-size: 3rem;
  font-family: "Merriweather", Georgia, serif;
  color: #000;
  line-height: 1.5em;
  margin: 0;
}

@media (max-width: 768px) {
  .courses-text-front .content p, .latest-news-text-front .content p {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

#upcoming-courses-front {
  padding: 50px 0 70px;
  background: #ffffff;
}

.latest-news-text-front {
  text-align: center;
  margin-bottom: 70px;
}

.latest-news-text-front .content p {
  max-width: 55%;
  margin: 0 auto;
}

#latest-news {
  background: #eaeceb;
  padding: 80px 0 88px;
}

.news-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.news-list ul li {
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 3px solid #048a56;
  margin-bottom: 30px;
}

@media (min-width: 769px) {
  .news-list ul li {
    width: 31%;
  }
}

.news-list ul .news-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-list ul .news-container img {
  display: block;
}

@media (max-width: 1024px) {
  .news-list ul .news-container img {
    width: 100%;
    max-width: none;
  }
}

.news-list ul .news-content {
  padding: 35px 25px 20px;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
}

.news-list ul .news-content p {
  margin: 0;
  padding-bottom: 50px;
}

.news-list ul .news-content .read-more a {
  text-align: right;
  text-transform: uppercase;
  color: #7a877e;
  font-size: 20px;
  font-size: 1.25rem;
  padding-right: 38px;
  position: absolute;
  bottom: 20px;
  right: 25px;
  display: inline-block;
  float: right;
}

.news-list ul .news-content .read-more a:after {
  content: "";
  background: url("../img/icon-read-more.svg") no-repeat center center;
  width: 23px;
  height: 23px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.news-list ul .news-content .read-more a:hover {
  opacity: .7;
}

.news-list ul h3 {
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 25px;
  font-size: 1.5625rem;
}

#footer-1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 28.6%;
  margin-left: 0%;
  margin-right: 2%;
}

#footer-1:before, #footer-1:after {
  content: '';
  display: table;
}

#footer-1:after {
  clear: both;
}

#footer-1:last-child {
  margin-right: 0%;
}

@media (max-width: 1024px) {
  #footer-1 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer-1:first-child {
    margin-left: auto;
  }
  #footer-1:last-child {
    margin-right: auto;
  }
}

#footer-1 h2 {
  margin-bottom: 10px;
}

#footer-2 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 23.5%;
  margin-left: 0%;
  margin-right: 2%;
}

#footer-2:before, #footer-2:after {
  content: '';
  display: table;
}

#footer-2:after {
  clear: both;
}

#footer-2:last-child {
  margin-right: 0%;
}

@media (max-width: 1024px) {
  #footer-2 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer-2:first-child {
    margin-left: auto;
  }
  #footer-2:last-child {
    margin-right: auto;
  }
}

#footer-3 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 43.9%;
  margin-left: 0%;
  margin-right: 2%;
}

#footer-3:before, #footer-3:after {
  content: '';
  display: table;
}

#footer-3:after {
  clear: both;
}

#footer-3:last-child {
  margin-right: 0%;
}

@media (max-width: 1024px) {
  #footer-3 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer-3:first-child {
    margin-left: auto;
  }
  #footer-3:last-child {
    margin-right: auto;
  }
}

footer .block-webform .form-text, footer .block-webform .form-textarea {
  background: #252525;
  border-radius: 0;
  font-family: "Merriweather", Georgia, sans-serif;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  padding: 20px;
  max-width: none;
  border-color: #fff;
}

footer .block-webform .form-text:focus, footer .block-webform .form-textarea:focus {
  border-color: #eaeceb;
}

footer .block-webform .form-item {
  margin-bottom: 1.1em;
}

footer .block-webform .form-submit {
  float: right;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 17px 30px;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  background: #252525;
  width: auto;
  margin: 0;
}

footer .block-webform .form-submit:hover {
  background: #fff;
  color: #252525;
}

@media (min-width: 1025px) {
  footer .block-webform .form-submit {
    min-width: 236px;
  }
}

#footer-cols {
  background: #252525;
  color: #686868;
  padding: 45px 0;
  font-size: 25px;
  font-size: 1.5625rem;
}

#footer-cols h2 {
  margin-top: 0;
  color: #fff;
}

#footer-cols p {
  margin-top: 0;
}

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

.footer-menu ul li a {
  color: #686868;
  text-transform: uppercase;
  font-size: 25px;
  font-size: 1.5625rem;
}

.footer-menu ul li a:hover {
  color: #fff;
}

footer .block-webform .placeholder {
  color: #fff;
  opacity: 1 !important;
}

footer .block-webform ::-webkit-input-placeholder {
  color: #fff;
  opacity: 1 !important;
}

footer .block-webform :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  opacity: 1 !important;
}

footer .block-webform ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  opacity: 1 !important;
}

footer .block-webform :-ms-input-placeholder {
  color: #fff;
  opacity: 1 !important;
}

#copyright {
  background: #000;
  text-transform: uppercase;
  color: #686868;
  font-size: 19px;
  font-size: 1.1875rem;
}

#copyright a {
  color: #686868;
}

#copyright a:hover {
  color: #fff;
}

#copyright p {
  margin: 0;
  padding: 20px 30px 30px;
}

#header-image {
  text-align: center;
  background-color: linear-gradient(to top, rgba(1, 32, 19, 0.6), rgba(4, 138, 86, 0));
  padding: 5% 0;
  position: relative;
}

#header-image:after {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(1, 32, 19, 0.6);
  position: absolute;
}

#header-image h1 {
  font-weight: bold;
  color: #fff;
  padding: 0 20px;
  margin: 40px 0 40px 0;
}

#header-image h1, #header-image .block {
  position: relative;
  z-index: 3;
}

.easy-breadcrumb {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  padding: 0 20px;
  margin-bottom: 40px;
}

.easy-breadcrumb .easy-breadcrumb_segment-front {
  text-indent: -9000px;
  background: url("../img/icon-house.svg") no-repeat center bottom 3px;
  display: inline-block;
  width: 20px;
  height: 22px;
}

.easy-breadcrumb .easy-breadcrumb_segment-separator {
  padding: 0 3px;
}

.easy-breadcrumb a {
  color: #fff;
}

.easy-breadcrumb a:hover {
  color: #eaeceb;
}

.front .gallery-list {
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 20px;
}

.front .gallery-list ul {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.front .gallery-list ul a {
  width: 100%;
}

.gallery-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1025px) {
  .gallery-list ul::after {
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    content: "";
  }
}

.gallery-list ul li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

@media (min-width: 1025px) {
  .gallery-list ul li {
    width: 31.333%;
    margin-right: 3%;
  }
  .gallery-list ul li:nth-child(3n) {
    margin-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-list ul li {
    width: 48%;
    margin-right: 0;
  }
}

.gallery-list ul li img {
  width: 100%;
}

.gallery-list ul li .views-field-nothing {
  width: 100%;
}

.gallery-list ul li .views-field-nothing span {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .gallery-list ul li {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-list ul li {
    overflow: hidden;
  }
}

.gallery-list ul li a {
  display: block;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
}

.gallery-list ul li a img {
  display: block;
}

.gallery-list ul li a h2 {
  background: rgba(37, 37, 37, 0.8);
  color: #fff;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 20px;
  font-size: 23px;
  font-size: 1.4375rem;
}

.node-type-article .main, .node-type-page .main {
  max-width: 850px;
  margin: 50px auto;
}

#header-image {
  background: url("../img/header-news.jpg") no-repeat center center;
  background-size: cover;
}

.page-news .content-wrapper, .page-gallery .content-wrapper {
  padding: 70px 0 55px 0;
}

.btn-view-all {
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 64px 0 100px 0;
  display: inline-block;
}

.btn-view-all:hover {
  color: #048a56;
  background: #fff;
}

.view-gallery .view-footer {
  text-align: center;
}

.view-gallery .view-footer p {
  margin: 0;
}

#gallery {
  padding-top: 75px;
  background: #028754;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #028754 0%, #01623d 23%, #01623d 71%, #028552 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#028754', endColorstr='#028552',GradientType=0 );
  /* IE6-9 */
}

@media (max-width: 1600px) {
  #gallery {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#cboxLoadedContent {
  background: white !important;
  padding: 2.1em;
  border: 3px solid #048a56;
}

#cboxTopCenter, #cboxMiddleLeft, #cboxTopRight, #cboxBottomLeft, #cboxTopLeft, #cboxMiddleRight, #cboxBottomCenter, #cboxBottomRight {
  background: none;
  width: 0;
  height: 0;
}

#cboxContent {
  border-radius: 0;
}

#cboxLoadingOverlay {
  background: transparent !important;
}

#colorbox #cboxWrapper {
  background-color: transparent !important;
}

#cboxOverlay {
  background: rgba(255, 255, 255, 0.85);
}

#cboxClose.cbox-close-plain {
  background: #fff;
  opacity: 1 !important;
  font-size: 50px;
  font-size: 3.125rem;
  width: 37px;
  height: 37px;
  color: #048a56;
  border-radius: 0;
}

.front #cboxLoadedContent, .page-gallery #cboxLoadedContent {
  background: white;
  border: 3px solid #048a56;
  overflow: hidden !important;
}

.front #cboxClose.cbox-close-plain, .page-gallery #cboxClose.cbox-close-plain {
  font-size: 20px;
  font-size: 1.25rem;
  background: #048a56;
  color: #fff;
  width: 15px;
  height: 15px;
  top: 0 !important;
  right: 0 !important;
}

#cboxLoadedContent {
  margin-bottom: 0;
}

#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  top: 0;
  bottom: inherit;
  background: #048a56 url("../img/icon-close.svg") no-repeat center center;
  background-size: 40%;
  width: 35px;
  height: 35px;
  transition: all .3s;
}

#cboxPrevious:hover, #cboxNext:hover, #cboxSlideshow:hover, #cboxClose:hover {
  background: #03623d url("../img/icon-close.svg") no-repeat center center;
  background-size: 40%;
}

.slick-slider {
  margin-bottom: 0;
}

.gallery-menu {
  background: url("../img/inner-menu-fix.jpg") repeat-x left bottom 6px;
  text-align: center;
  margin: 50px 0;
}

.gallery-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 52%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

@media (max-width: 1600px) {
  .gallery-menu ul {
    width: 80%;
  }
}

@media (max-width: 1200px) {
  .gallery-menu ul {
    width: 94%;
    padding: 0 2%;
  }
}

@media (max-width: 1200px) {
  .gallery-menu ul {
    width: auto;
    padding: 0 1%;
  }
}

.gallery-menu ul li {
  float: left;
  width: 16.66%;
}

@media (max-width: 1200px) {
  .gallery-menu ul li {
    width: auto;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.gallery-menu ul li a {
  font-weight: bold;
  color: #000;
  padding: 10px 35px;
  position: relative;
  width: 100%;
  display: block;
  outline: none;
  text-align: center;
}

@media (max-width: 1200px) {
  .gallery-menu ul li a {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .gallery-menu ul li a {
    padding: 10px 6px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.gallery-menu ul li a.active, .gallery-menu ul li a.active:hover, .gallery-menu ul li a.active:focus {
  background: #048a56;
  color: #fff;
}

.gallery-menu ul li a:hover, .gallery-menu ul li a:focus {
  color: #048a56;
}

.gallery-menu ul li a.active:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  height: 26px;
  background: linear-gradient(to right bottom, #048a56 50%, transparent 50%);
  transition: all .3s;
}

.gallery-menu ul li a.active:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  height: 26px;
  background: linear-gradient(to left bottom, #048a56 50%, transparent 50%);
  transition: all .3s;
}

.gallery-block {
  display: none;
}

.gallery-block .view-empty {
  color: #fff;
  text-align: center;
  padding: 50px 0 100px;
}

.gallery-block.gallery-active {
  display: block;
}

.gallery-menu-front {
  overflow: visible;
  background: transparent url("../img/inner-menu-fix-2.jpg") repeat-x left bottom 6px;
}

@media (max-width: 480px) {
  .gallery-menu-front {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.gallery-menu-front h2 {
  text-align: left;
  color: #fff;
  font-weight: bold;
  max-width: 1366px;
  margin: 0 auto;
  font-size: 36px;
  font-size: 2.25rem;
}

@media (max-width: 480px) {
  .gallery-menu-front h2 {
    padding: 0 20px;
  }
}

.gallery-menu-front .content {
  text-align: right;
  max-width: 1366px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-menu-front .content {
    text-align: center;
  }
}

.gallery-menu-front ul {
  width: 70%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 1200px) {
  .gallery-menu-front ul {
    width: auto;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-menu-front ul {
    margin-top: 50px;
  }
}

.gallery-menu-front ul li {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}

.gallery-menu-front ul li a {
  color: #fff;
}

.gallery-menu-front ul li a:hover {
  color: #00462b;
}

.gallery-menu-front ul li a.active {
  background: #00462b !important;
}

.gallery-menu-front ul li a.active:before {
  background: linear-gradient(to right bottom, #00462b 50%, transparent 50%);
}

.gallery-menu-front ul li a.active:after {
  background: linear-gradient(to left bottom, #00462b 50%, transparent 50%);
}

.gallery-menu-front ul li a.active:hover {
  background: #00462b;
}

body.page-courses {
  background: #fff;
}

body.page-courses article.main {
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  body.page-courses .views-field-field-course-date, body.page-courses .views-field-close, body.page-courses .views-field-capacity-used {
    display: none;
  }
}

.page-courses .tabs.primary {
  background: transparent;
  padding: 50px 0;
  margin: 0;
  border: none;
}

@media (min-width: 769px) {
  .page-courses .tabs.primary {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (max-width: 1024px) {
  .page-courses .tabs.primary li {
    width: auto;
  }
}

@media (max-width: 768px) {
  .page-courses .tabs.primary li {
    display: block;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .page-courses .tabs.primary li {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 5px;
  }
}

.page-courses .tabs.primary li a {
  background: #e1e4e2;
  border: none;
  display: block;
  width: 100%;
  text-align: center;
  color: #333333;
}

.page-courses .tabs.primary li a:hover {
  background: #048a56;
  color: #fff;
}

.page-courses .tabs.primary li a.active {
  background: #048a56;
  color: #fff;
  border: none;
}

.page-courses .tabs.primary li a.active:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  height: 26px;
  background: linear-gradient(to right bottom, #048a56 50%, transparent 50%);
  transition: all .3s;
}

.page-courses .tabs.primary li a.active:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  height: 26px;
  background: linear-gradient(to left bottom, #048a56 50%, transparent 50%);
  transition: all .3s;
}

.courses-header-text {
  background: #e1e4e2;
  padding: 145px 0 120px;
}

.courses-header-text h2 {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0;
}

.courses-header-text .content {
  max-width: 1366px;
  margin: 0 auto;
}

.courses-header-text .content p {
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: center;
  font-family: 'Merriweather', Georgia, sans-serif;
  line-height: 1.8em;
  color: #000;
}

.courses-menu-front .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 481px) {
  .courses-menu-front .content ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.courses-menu-front .content li {
  width: 16%;
  top: inherit;
  display: inline-block;
}

@media (min-width: 481px) {
  .courses-menu-front .content li {
    -webkit-flex-grow: 5;
        -ms-flex-positive: 5;
            flex-grow: 5;
    border: 0 solid white;
    border-width: 0 3px;
  }
  .courses-menu-front .content li:first-child {
    border-left: none;
  }
  .courses-menu-front .content li:last-child {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .courses-menu-front .content li {
    width: auto;
  }
}

@media (max-width: 480px) {
  .courses-menu-front .content li {
    display: block;
    width: 100%;
  }
}

.courses-menu-front .content li a {
  background: #e1e4e2;
  border: none;
  display: block;
  width: 100%;
  text-align: center;
  color: #333333;
  position: relative;
  padding: 5px 5px 2px 5px;
}

.courses-menu-front .content li a:hover {
  background: #048a56;
  color: #fff;
}

.courses-menu-front .content li a.active {
  background: #048a56;
  color: #fff;
  border: none;
}

.courses-menu-front .content li a.active:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  height: 26px;
  background: linear-gradient(to right bottom, #048a56 50%, transparent 50%);
  transition: all .3s;
}

.courses-menu-front .content li a.active:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  height: 26px;
  background: linear-gradient(to left bottom, #048a56 50%, transparent 50%);
  transition: all .3s;
}

#courses-front-content .block {
  display: none;
}

#courses-front-content .block.courses-active {
  display: block;
}

.view-course-states .view-content {
  overflow: scroll;
}

#courses-front-content {
  margin-top: 35px;
  overflow: hidden;
}

#courses-front-content .view-empty {
  background: #eaeceb;
  border-bottom: 3px solid #b5b5b5;
  padding: 30px;
}

#courses-front-content .view-content {
  overflow: scroll;
}

#courses-front-content .views-table {
  background: #eaeceb;
  margin-bottom: 0;
}

#courses-front-content .views-table tr:last-child td {
  padding-bottom: 30px;
}

#courses-front-content .view-footer {
  text-align: center;
}

#courses-front-content .view-footer .button {
  background: #fff;
  border: 1px solid #048a56;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 2px;
  color: #048a56;
  padding: 10px 20px;
}

#courses-front-content .view-footer .button:hover {
  background: #048a56;
  color: #fff;
}

#courses-front-content .attachment {
  background: #eaeceb;
  border-bottom: 3px solid #b5b5b5;
  text-align: center;
  margin: 0;
}

#courses-front-content .attachment .view-header {
  padding: 10px 0 30px;
}

#courses-front-content .attachment .view-content {
  display: none;
}

.views-table td, .views-table th {
  padding: 15px 30px;
  border: none;
}

.views-table td {
  font-size: 20px;
  font-size: 1.25rem;
}

.views-table .views-field-title {
  font-size: 22px;
  font-size: 1.375rem;
}

@media (max-width: 768px) {
  .views-field-field-course-date {
    display: none;
  }
}

.page-user .main, .node-type-event .main, .page-registration .main {
  padding: 50px 0;
}

.page-user .main fieldset.collapsed, .node-type-event .main fieldset.collapsed, .page-registration .main fieldset.collapsed {
  margin-bottom: 50px;
}

.page-user .main #edit-cancel, .node-type-event .main #edit-cancel, .page-registration .main #edit-cancel {
  margin-left: 15px;
}

.page-user .main .group-left, .node-type-event .main .group-left, .page-registration .main .group-left {
  width: 100%;
}

@media (min-width: 1025px) {
  .page-user .main .group-left, .node-type-event .main .group-left, .page-registration .main .group-left {
    width: 45%;
  }
}

.page-user .main .group-right, .node-type-event .main .group-right, .page-registration .main .group-right {
  width: 100%;
}

@media (min-width: 1025px) {
  .page-user .main .group-right, .node-type-event .main .group-right, .page-registration .main .group-right {
    width: 50%;
  }
}

@media (min-width: 1025px) {
  .page-node-29 .field-name-body {
    float: right;
    width: 50%;
    padding-top: 110px;
  }
  .page-node-29 #webform-client-form-29 {
    float: left;
    width: 45%;
  }
}

.node-type-page .content-wrapper {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .node-type-page .content-wrapper {
    padding: 0px 0;
  }
}

body.page-registration, body.node-type-event {
  background: #fff;
}

body.node-type-event .form-submit {
  width: 48%;
  float: left;
  max-width: none;
}

body.node-type-event #edit-cancel {
  background: #4b4b4b;
  width: 48%;
  float: right;
  margin: 20px 0 0 0;
  padding: 20px 25px;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  line-height: 1.2em;
}

body.node-type-event #edit-cancel:hover {
  background: #252525;
}

.page-registration-edit .form-actions {
  overflow: auto;
}

.page-registration-edit .form-actions #edit-cancel {
  background: #4b4b4b;
  width: 30%;
  margin: 20px 0 0 0;
  padding: 20px 25px;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  float: left;
  line-height: 1.2em;
}

.page-registration-edit .form-actions #edit-cancel:hover {
  background: #252525;
}

.page-registration-edit .form-actions input {
  width: 30%;
  float: left;
  margin-right: 3%;
}

@media (max-width: 1024px) {
  .page-registration-edit .form-actions input {
    width: 100%;
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media (max-width: 1024px) and (max-width: 480px) {
  .page-registration-edit .form-actions input {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (max-width: 1024px) {
  .page-registration-edit .form-actions #edit-cancel {
    width: 100%;
  }
}

@media (max-width: 1024px) and (max-width: 480px) {
  .page-registration-edit .form-actions #edit-cancel {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.grippie {
  display: none;
}

#block-views-reports-block {
  clear: both;
}

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