/**
 * Variables
 */
:root {
  --body-bg: #0d0f16;
  --header-bg: #020312;
  --content-bg: #181a25;
  --text-color: #ffffff;
  --sidebar-link-color: #cfcfcf;
  --border-color: #282d38;
  --weed-green-dark: #1d6d22;
  --light-green: #4ff264;
  --weed-green: #07a012;
  --weed-green-gradient: linear-gradient(to right, #4ff264, #1a5d09);
  --green-gradient: linear-gradient(to right, #4ff264, #1a5d09);
  --circle-color: #14540b;
}

/**
 * Fonts
 */

/* open-sans-regular - latin */
@font-face {
  font-family: 'PTMono-Regular';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/PTMono-Regular.ttf");
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans.woff2") format("woff2"), url("../fonts/open-sans.woff") format("woff");
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto.woff2") format("woff2"), url("../fonts/roboto.woff") format("woff");
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-bold.woff2") format("woff2"), url("../fonts/roboto-bold.woff") format("woff");
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1FontAwesome ;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * html and body.
 */
html {
  line-height: 1.7;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  font-family: -system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,"PTMono-Regular", monospace;
  font-family: 'PTMono-Regular', monospace;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.7;
  background: #0d0f16;
  background: var(--body-bg);
  color: #000;       
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/*
 * Fields and regions.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
  color: #a1a1a1;
  color: var(--text-color);
}

template,
[hidden] {
  display: none;
}

/**
  * Typography
  ------------------------------------*/
/* Typography -> Headings. */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PTMono-Regular';
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 0;
  color: var(--weed-green);
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.6em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 1em 0;
}

/* Typography -> Links. */
a {
  color: var(--weed-green);
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

a:active,
li a.active {
  color: var(--weed-green);
}

a:hover,
a:visited:hover {
  color: var(--weed-green);
}

a:active,
a:hover,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}

/* Typography -> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
  padding: 2px 8px;
  background: #9c9c9c;
  margin: 0;
}

pre {
  overflow: auto;
  margin-bottom: 1em;
}

/* Typography -> Font styles */
b,
strong {
  font-weight: bolder;
  color: #07a012;
}

em {
  font-style: normal;
  color: #1d6d22;
  color: var(--weed-green);
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

mark {
  background: #1d6d22;
  background: var(--weed-green);
  color: #fff;
  text-shadow: none;
}

time {
  color: white;
}

.field > .field-item {
  color: white;
}
/* Typography -> Address */
address {
  margin: 0 0 1em 0;
  font-style: italic;
}

/* Typography -> Abbreviation */
acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

abbr,
acronym {
  cursor: help;
}

/* Typography -> Blockquote */
blockquote {
  position: relative;
  margin: 0.6em 0 1em 0;
  padding: 1em;
  background: #020312;
  background: var(--header-bg);
  border-left: 4px solid #1d6d22;
  border-left: 4px solid var(--weed-green);
}

blockquote > :last-child {
  margin-bottom: 0;
}

/**
  * Media
  */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

img,
a img {
  max-width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  vertical-align: middle;
}

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

figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0;
}

.align-left {
  margin: 1em 1em 1em 0;
}

.align-right {
  margin: 1em 0 1em 1em;
}

.align-center {
  margin-top: 1em;
  margin-bottom: 1em;
}

figcaption {
  padding: 4px;
  font-size: 0.8em;
  background: #020312;
  background: var(--header-bg);
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  text-align: center;
}

.image-field {
  margin: 0 0 1em 0;
}

/**
  * Form.
  */
form {
  margin-bottom: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  cursor: pointer;
  padding: 2px 15px 2px 15px;
  border: 0;
  border-radius: 15px;
  background: var(--weed-green);
  color: #fff;
  -webkit-appearance: button;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  border: 1px solid transparent;
  margin-left: 10px;
}

button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
  background: transparent;
  padding: 2px 15px 2px 15px;
  border-radius: 15px;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

input {
  line-height: normal;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  background: transparent;
  color: #a1a1a1;
  color: var(--content-bg);
  padding: 10px;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border: 1px solid #1d6d22;
  border: 1px solid var(--weed-green);
  outline: 0;
}

@-webkit-keyframes autofill {
  to {
    color: #a1a1a1;
    color: var(--text-color);
    background: transparent;
  }
}

@keyframes autofill {
  to {
    color: #a1a1a1;
    color: var(--text-color);
    background: transparent;
  }
}

input:-webkit-autofill {
  -webkit-animation-name: autofill;
  animation-name: autofill;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

textarea {
  width: 100%;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top;
}

/* Animated expanding textarea */
.form-textarea {
  height: 100px;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.form-textarea:focus {
  height: 180px;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 0.35em 0.5em 0.5em 0;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--weed-green) !important;
  display: table;
  max-width: 100%;
  padding: 0;
  padding-left: 7px;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
  background: var(--body-bg);
  color: #ffffff;
  border: 1px solid var(--border-color);
}

form label {
  color: var(--weed-green);
}

label[for] {
  cursor: pointer;
}

.page-content input[type="text"],
.page-content input[type="password"],
.page-content input[type="search"] {
  padding: 9px 6px;
  outline: 0;
}

.page-content input {
  max-width: 100%;
}

/* Form -> Drupal form elements */
.form-item {
  margin-bottom: 1em;
  padding-left: 10px;
}

.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: #1d6d22;
  color: var(--weed-green);
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

progress {
  vertical-align: baseline;
}

::-webkit-input-placeholder {
  color: #282d38;
  color: var(--border-color);
}

:-moz-placeholder {
  color: #282d38;
  color: var(--border-color);
}

::-moz-placeholder {
  color: #282d38;
  color: var(--border-color);
  opacity: 1;
}

:-ms-input-placeholder {
  color: #282d38;
  color: var(--border-color);
}

/**
  * List.
  */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25em 1em;
  /* LTR */
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1em 0.25em 0;
}

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25em 1em;
  /* LTR */
}

[dir="rtl"] ol ol,
[dir="rtl"] ul ul {
  padding: 0 1em 0.25em 0;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1em 0.25em 0;
}

li {
  padding: 4px 0;
}

.node-content li {
  padding: 6px 0;
}

/* Typography -> Definition Lists */
dt {
  color: #ffffff;
  font-weight: 700;
}

dd {
  margin: 0 0 1.2em 0;
}

/**
  * Table.
  */
table {
  width: 100%;
  margin-bottom: 1.2em;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  margin: 0;
  padding: 5px;
  background: #020312;
  background: var(--header-bg);
  color: #fff;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  text-align: left;
  text-shadow: none;
}

td {
  padding: 5px;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

/**
  * HTML elements
  */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  background: #282d38;
  background: var(--border-color);
  border: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
}

/**
  * Default box sizing.
  */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

/**
  * Misc.
  */
::-moz-selection {
  background: transparent;
  color: var(--weed-green);
  font-weight: bold !important;
}

::selection {
  background: transparent;
  color: var(--weed-green);
  font-weight: bold !important;
}

/**
  * Font icons used in theme
  */

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1FontAwesome ;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'FontAwesome' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.icon-document:before {
  content: "\f075";
}

.icon-menu:before {
  content: "\f0c9";
}

.icon-add_comment:before {
  content: "\e910";
}

.icon-vimeo:before {
  content: "\f40a";
}

.icon-comments:before {
  content: "\f075";
}

.icon-exclamation-circle:before {
  content: "\f06a";
}

.icon-exclamation-triangle:before {
  content: "\f071";
}

.icon-check-square:before {
  content: "\f14a";
}

.icon-hashtag:before {
  content: "\23";
}

.icon-calendar:before {
  content: "\f073";
}

.icon-user:before {
  content: "\f007";
}

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

.icon-github:before {
  content: "\f09b";
}

.icon-whatsapp:before {
  content: "\f40c";
}

.icon-telegram:before {
  content: "\f2c6";
}

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

.icon-linkedin:before {
  content: "\f08c";
}

.icon-instagram:before {
  content: "\f16d";
}

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

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

.copyright {
  color: var(--weed-green)
}

.messages {
  color: var(--weed-green);
}

.toolbar {
  background-color: #157b3d !important;
}

.toolbar-bar {
  background-color: #157b3d !important;
}

/* Layout
----------------------------------- */
.container {
  position: relative;
  width: 100%;
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 10px;
}

#main-wrapper {
  position: relative;
  width: 100%;
  padding: 2em 0;
  background-color: #ecf3eb;
}

.main-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  margin: 0;
  padding: 0;
  width: 100%;
}

.no-sidebar .main-container,
.sidebar-left .main-container,
.sidebar-right .main-container,
.two-sidebar .main-container {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

#main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#sidebar-left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0;
}

#sidebar-right {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 0;
}

/* columns */
.flex-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

.row {
  width: 100%;
  clear: both;
  margin-bottom: 1em;
}

.section {
  width: 100%;
  clear: both;
  padding: 1.4em 0;
}

.full {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.item {
  margin: 0 0 2em 0;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
}

/* Drupal Core
----------------------------------- */
/* Drupal core Field */
[dir] .field:not(:last-child) {
  margin-bottom: 5px;
}

.field__label {
  font-weight: bold;
  color: #07a012;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline .field__items {
  float: left;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline .field__items {
  float: right;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline > .field__item, [dir=ltr] .field--label-inline .field__items {
  padding-right: 0.5em;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline > .field__item, [dir=rtl] .field--label-inline .field__items {
  padding-left: 0.5em;
}

.field--label-inline .field__label::after {
  content: ":";
}

/* Admin Toolbar */
button.toolbar-item,
button.toolbar-icon {
  background: none;
}

/* Filter Module */
.filter-wrapper {
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

/* Drupal system message */
.message {
  position: relative;
  margin: 1em 0;
  padding: 14px 14px 14px 64px;
  color: #ffffff;
  text-shadow: none;
}

.message p {
  margin: 0;
}

.message a,
.message a:visited {
  color: #ffffff;
  text-decoration: underline;
}

.message-status {
  background: #89ad32 !important;
}

.message-status::before {
  content: "\e90d";
  background-color: #759625;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: "\e90e";
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: "\e90f";
  background-color: #a44707;
}

.message::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 53px;
  height: 100%;
  font-family: "weed_theme";
  font-size: 2em;
  line-height: 53px;
  text-align: center;
}

/*
 * Blocks
 * Common styling for all blocks regions
 */
.block-section {
  position: relative;
}

.block-title {
  position: relative;
  color: #ffffff;
}

.block-section h2.block-title {
  margin: 0 0 1em 0;
  padding: 0 0 0.3em 0;
  font-size: 1.5em;
  font-weight: 400;
}

.block-section .block-title::before,
.block-section .block-title::after,
.homepage-content .block-title::before,
.homepage-content .block-title::after {
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
  background: #1d6d22;
  background: var(--green-gradient);
}

.block-section .block-title::before,
.homepage-content .block-title::before {
  width: 40px;
  bottom: 0;
}

.block-section .block-title::after,
.homepage-content .block-title::after {
  width: 60px;
  bottom: -4px;
}

.block > .block-content > .field > .field-item > time {
  color: black;
}
.block > .block-content > .field > .field-item {
  color: black;
}
.node-content > .field-item > a > img {
  margin-top: 0px !important;
}
.image-field {
  margin-top: 20px;
}

/* Search Block region */
.search-box-content .block-title::before,
.search-box-content .block-title::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #1d6d22;
  background: var(--green-gradient);
  left: 0;
}

.search-box-content .block-title::before {
  bottom: 0;
  -webkit-transform: scaleX(0.1);
  transform: scaleX(0.1);
}

.search-box-content .block-title::after {
  bottom: -4px;
  -webkit-transform: scaleX(0.2);
  transform: scaleX(0.2);
}

/* List style for sidebar and footer block regions */
.sidebar ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.sidebar ul ul,
.footer ul ul,
.sidebar ol ol,
.footer ol ol {
  margin: 0;
  padding: 0 0 0.25em 1em;
}

.sidebar ul li,
.footer ul li {
  list-style: none;
}

.sidebar li,
.footer li {
  padding: 6px 0;
  border-bottom: 1px solid #282d38;
  border-bottom: 1px solid var(--border-color);
}

ul ul li:last-child,
ol ol li:last-child {
  border-bottom: none;
}

/* Highlighted Region */
.highlighted {
  width: 100%;
  background: #062708;
}

.region-highlighted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.highlighted .block {
  position: relative;
  margin: 0;
  padding: 1.5em 0;
}

/* Header
--------------------------------------*/
.header {
  position: relative;
  width: 100%;
  background: #020312;
  background: var(--header-bg);
  margin: 0;
  padding: 1em 0;
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* header -> homepage header when slider is enabled */
.frontpage .header {
  background: #020312;
  background: var(--header-bg);
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Header -> site branding. */
.site-brand {
  position: relative;
}

.site-branding {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  color: #fff;
}

.site-branding img {
  width: auto;
  max-height: 36px;
}

.site-branding a {
  color: #1d6d22;
  color: var(--weed-green);
}

.site-name-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  color: #1d6d22;
  color: var(--weed-green);
  line-height: 1.2;
  text-transform: uppercase;
}

.site-slogan {
  font-size: 0.8em;
  line-height: 1;
}

/* Header -> header right */
.header-main-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.primary-menu-wrapper {
  font-weight: 400;
}

.menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  margin-left: -1000px;
  background: transparent;
  z-index: 25;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.active-menu .menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  margin: 0;
  padding: 1em;
  background: #111111;
  z-index: 25;
  /*overflow-y: scroll;*/
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu a {
  text-decoration: none;
}

.main-menu a,
.main-menu a:visited {
  color: #ffffff;
}

.close-mobile-menu {
  display: none;
  width: 34px;
  height: 34px;
  line-height: 28px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 48;
  cursor: pointer;
  text-align: center;
}

.active-menu .close-mobile-menu {
  position: absolute;
  display: block;
  top: 4px;
  right: 4px;
}

.main-menu {
  display: none;
}

.active-menu .main-menu {
  display: block;
}

ul.main-menu {
  position: relative;
  margin: 0;
  margin-left: 20px;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}

ul.main-menu li {
  position: relative;
  display: inline-block;
  padding: 0;
}

ul.main-menu > li {
  display: inline-block;
  line-height: 1;
  margin-right: 24px;
}

ul.main-menu > li > a {
  display: block;
  margin: 0;
  padding: 10px 1px;
}

ul.main-menu > li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #1d6d22;
  background: var(--green-gradient);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

ul.main-menu li:hover > a::after {
  width: 100%;
}

ul.main-menu ul.submenu {
  position: absolute;
  display: none;
  top: 36px;
  margin: 0;
  padding: 0;
  z-index: 30;
  opacity: 0;
}

ul.main-menu ul.submenu li {
  display: inline-block;
  width: 160px;
  font-size: 0.9em;
  background: #04051a;
  text-align: left;
}

ul.main-menu ul.submenu li a {
  display: inline-block;
  padding: 10px 6px 10px 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

ul.main-menu ul.submenu li a:hover {
  padding: 10px 2px 10px 14px;
}

ul.main-menu ul.submenu li a::after {
  width: 100%;
  height: 1px;
}

li.expanded:hover ul.submenu,
li.collapsed:hover ul.submenu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}

.active-menu li.expanded:hover ul.submenu,
.active-menu li.collapsed:hover ul.submenu {
  -webkit-animation: none;
  animation: none;
}

.dropdown-arrow {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul.main-menu li.expanded:hover .dropdown-arrow,
ul.main-menu li.collapsed:hover .dropdown-arrow {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* Third level drop down */
ul.main-menu ul.submenu ul.submenu {
  position: absolute;
  display: none;
  top: 0;
  left: 160px;
  margin: 0;
  padding: 0;
  z-index: 30;
  opacity: 0;
}

ul.main-menu ul.submenu ul.submenu li {
  display: block;
  font-size: inherit;
  width: 160px;
  padding: 0;
  background: #04051a;
  text-align: left;
}

.main-menu ul.submenu li.expanded::after {
  content: '+';
  color: #ffffff;
}

ul.submenu li.expanded:hover ul.submenu,
ul.submenu li.collapsed:hover ul.submenu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}

ul.submenu .active-menu li.expanded:hover ul.submenu,
ul.submenu .active-menu li.collapsed:hover ul.submenu {
  -webkit-animation: none;
  animation: none;
}

/* Mobile Menu */
.active-menu .menu-wrap ul.main-menu {
  /*overflow-y: scroll;*/
}

.active-menu .menu-wrap ul.main-menu > li {
  display: block;
  float: none;
  margin: 0;
}

.active-menu ul.main-menu > li a::after {
  content: none;
}

.active-menu .menu-wrap ul.main-menu a {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

.active-menu .menu-wrap .dropdown-arrow {
  position: absolute;
  right: 10px;
}

.active-menu ul.main-menu ul.submenu {
  position: relative;
  display: block;
  top: 0;
  opacity: 1;
}

.active-menu ul.main-menu ul.submenu::before,
.active-menu ul.main-menu ul.submenu::after {
  content: "";
  display: table;
  clear: both;
}

.active-menu ul.main-menu ul.submenu li {
  position: relative;
  width: 100%;
  padding: 0 10px;
  background: none;
  text-align: right;
}

.active-menu ul.main-menu ul.submenu li a {
  display: block;
  width: 100%;
}

.active-menu ul.main-menu li a {
  border-bottom: 1px solid #434343;
}

/* Header -> Full page search form */
.full-page-search {
  position: relative;
  margin: 0;
  padding: 0;
}

.search-icon,
.mobile-menu {
  position: relative;
  margin: 0;
  color: var(--weed-green);
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 30px;
  text-align: center;

}

.search-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #181a25;
  background: var(--content-bg);
  z-index: 50;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.search-box.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.search-box-content {
  position: relative;
  z-index: 60;
  text-align: center;
}

.search-box-content .block {
  width: 100%;
  margin: 0 auto;
}

.search-box-content .block-title {
  color: #fff;
}

.search-box-content form label {
  display: none;
}

.search-box-content input[type="search"] {
  width: 90%;
  margin: 2em 0;
  padding: 0 30px 10px 0;
  font-size: 1.4em;
  background: url("../images/search.svg") top right no-repeat;
  background-size: contain;
  color: #fff;
  border: 0;
  border-bottom: 2px solid #020312;
  border-bottom: 2px solid var(--header-bg);
  border-radius: 0;
  outline: 0;
}

.search-box-content input[type="search"]:focus {
  border: 0;
  border-bottom: 2px solid #1d6d22;
  border-bottom: 2px solid var(--weed-green);
}

.search-box-content input[type="submit"] {
  padding: 10px 20px;
}

.search-box-close {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 60;
  cursor: crosshair;
}

.mobile-menu {
  display: block;
  margin-right: 0.5em;
}

/* Header -> Page header */
#page-header {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 2em 0 1em 0;
  z-index: 15;
}
#page-header > .container {
  position: relative;
  display: block;
  min-width: 100%;
  max-height: 600px;
  margin: 0;
  padding: 2em 0 1em 0;
  z-index: 15;
}

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

.region-page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Header -> Page title */
.page-title {
  color: #ecf3e;
}

h1.page-title {
  font-weight: 700;
}

/* Header -> Page header -> Breadcrumb. */
.breadcrumb {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}

.breadcrumb,
.breadcrumb a,
.breadcrumb a:visited {
  color: #1d6d22;
  color: var(--weed-green);
}

.breadcrumb a:hover {
  color: var(--weed-green);
}

ol.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol.breadcrumb-items li {
  display: inline-block;
  padding: 0;
  line-height: 1;
}

.breadcrumb-item span {
  margin: 0 10px;
  color: #a1a1a1;
  color: var(--text-color);
}

/* Animated circles */
.header-circle {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--circle-color);
  width: 4em;
  height: 4em;
}

.header-circle1,
.header-circle3 {
  bottom: 2em;
}

.header-circle1 {
  left: 5vw;
  -webkit-animation: circle-size 9s linear infinite alternate;
  animation: circle-size 9s linear infinite alternate;
}

.header-circle3 {
  right: 5vw;
  -webkit-animation: circle-size 6s linear infinite alternate;
  animation: circle-size 6s linear infinite alternate;
}

.header-circle2,
.header-circle4 {
  bottom: 1em;
}

.header-circle2 {
  left: 15vw;
  -webkit-animation: circle-move 9s linear infinite alternate;
  animation: circle-move 9s linear infinite alternate;
}

.header-circle4 {
  right: 25vw;
  -webkit-animation: circle-move 6s linear infinite alternate;
  animation: circle-move 6s linear infinite alternate;
}

.header-circle5,
.header-circle6 {
  bottom: 5em;
}

.header-circle5 {
  -webkit-animation: circle-size 6s linear infinite alternate;
  animation: circle-size 6s linear infinite alternate;
  left: 25vw;
}

.header-circle6 {
  -webkit-animation: circle-size 8s linear infinite alternate;
  animation: circle-size 8s linear infinite alternate;
  right: 15vw;
}

@-webkit-keyframes circle-size {
  to {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes circle-size {
  to {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@-webkit-keyframes circle-move {
  to {
    bottom: 6em;
  }
}

@keyframes circle-move {
  to {
    bottom: 6em;
  }
}

/* Main
--------------------------------------*/
#main {
  position: relative;
  padding: 0;
  margin: 0 0 2em 0;
  width: 100%;
}

/* Main -> Content top and content bottom block regions */
.content-top,
.content-bottom {
  width: 100%;
}

.region-content-top,
.region-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content-top .block,
.content-bottom .block {
  position: relative;
  margin: 0;
}

.content-top .block {
  padding-bottom: 2em;
}

.content-bottom .block {
  padding: 1.5em 0;
}

/* Main -> Admin Tabs */
ul.page-tabs {
  margin: 0 0 0.6em 0;
  padding: 0 0 1px 0;
  border-bottom: 1px solid #282d38;
  border-bottom: 1px solid var(--border-color);
  list-style: none;
}

.page-tabs li {
  display: inline-block;
  padding: 0;
}

.page-tabs li a {
  padding: 4px 10px;
  background: #282d38;
  background: var(--border-color);
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-tabs li.active-page-tab a,
.page-tabs li a:hover {
  background: var(--weed-green);
  color: #fff;
}

/* Main -> Node */
.node,
.node-promoted,
.node-sticky,
.node-view-mode-full,
.node-unpublished {
  position: relative;
}

.block-region {
  margin-left: 0;
}
/* Main -> node -> teaser view */
.node-view-mode-teaser {
  min-height: 705px;
  position: relative;
  background: #181a25;
  background: var(--content-bg);
  padding: 1em 1em 4em 1em;
  margin-bottom: 4em;
  border: 2px solid var(--weed-green);
  border-radius: 15px;
  color: white;
}

.node-view-mode-teaser:hover {
  min-height: 685px;
  position: relative;
  background: #fff;
  background: var(--content-bg);
  padding: 1em 1em 4em 1em;
  margin-bottom: 4em;
  border-bottom: 1px solid var(--border-color);
  transition: 0.5s;
  box-shadow: 0 0 17px 8px rgba(000, 000, 000, 0.8);
}

.node-view-mode-teaser.node-sticky {
  border: 1px solid var(--border-color);
}

.node-view-mode-teaser > article > p {
  color: white;
}

.node-view-mode-teaser > div > time {
  color: white;
}

.events .node-view-mode-teaser {
  width: 350px;
  min-height: 370px !important;
}

.node-view-mode-full .node-taxonomy-container {
  margin: 0;
}

/* Main -> node -> Title */
.node-title {
  min-height: 140px;
  font-size: 2em;
}

.node-title a {
  position: relative;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  font-size: 0.8em;
}

.node-title a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--weed-green);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.node-title a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.node-title a:hover {
  color: #26b63e;
}

/* Main -> node -> submitted details */
.node-header {
  position: relative;
  display: block;
  font-size: 0.8em;
  width: 100%;
  margin: 0 0 1em 0;
  padding: 10px 0;
  border-bottom: 1px solid #282d38;
  border-bottom: 1px solid var(--border-color);
}

.views-field.views-field-title {
  padding-bottom: 5px;
}

.author-picture {
  float: left;
}

.author-picture img {
  width: auto;
  height: 25px;
  margin: 0 6px 0 0;
}

.node-submitted-details {
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.node-submitted-details a,
.node-submitted-details a:visited {
  color: #ffffff;
}

.node-submitted-details a:hover {
  border-bottom: 1px dotted #282d38;
  border-bottom: 1px dotted var(--border-color);
}

.node-submitted-details i {
  margin: 0 0 0 1em;
  color: #1d6d22;
  color: var(--weed-green);
}

.node-submitted-details i.user-icon {
  margin-left: 0;
}

/* Main -> node -> taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1em 0;
  border-top: 1px solid #282d38;
  border-top: 1px solid var(--border-color);
}

h3.term-title {
  margin: 0;
  font-size: 1.2em;
  line-height: 1;
}

ul.taxonomy-terms {
  margin: 1em 0 0.2em 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

li.taxonomy-term {
  position: relative;
  display: inline-block;
}

li.taxonomy-term a {
  padding: 6px 14px;
  border: 2px solid #282d38;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

li.taxonomy-term a:hover {
  background: #1d6d22;
  background: var(--weed-green);
  color: #fff;
  border: 2px solid #fff;
}

li.taxonomy-term a::before {
  content: '#';
  margin-right: 5px;
}

.node-links-container ul.links {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}

ul.inline li {
  position: relative;
  display: inline-block;
  padding: 0;
  list-style-type: none;
}

ul.inline li a {
  display: inline-block;
}

.node-links-container li {
  float: left;
  margin-right: 1em;
}

/* read more link */
li.node-readmore {
  float: right;
  margin: 0;
}

li.node-readmore a {
  position: relative;
  color: #fff;
  border: 2px solid #1d6d22;
  border: 2px solid var(--weed-green);
  border-radius: 50px;
  padding: 0.4em 0.8em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

li.node-readmore a:hover {
  color: #1d6d22;
  color: var(--weed-green);
  padding: 0.6em 3em 0.6em 1em;
}

li.node-readmore a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: #1d6d22;
  background: var(--weed-green);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

li.node-readmore a:hover::after {
  width: 2em;
}

.comment-comments a::before,
.comment-add a::before {
  font-family: 'weed_theme';
  color: #fff;
  padding-right: 6px;
}

.comment-comments a::before {
  content: "\e911";
}

.comment-add a::before {
  content: "\e910";
}

/* Main -> node -> pager */
nav.pager {
  position: relative;
}

.pager ul.pager__items {
  position: relative;
  margin: 0;
  padding: 1em 0;
  list-style: none;
  list-style-type: none;
}

.pager__items {
  clear: both;
  text-align: center;
}

.pager__item {
  display: inline-block;
  padding: 12px 0;
}

.pager__item a {
  padding: 8px 14px;
  color: #fff;
  background: #181a25;
  background: var(--content-bg);
  border-radius: 4px;
}

.pager__item a:hover,
.pager__item.is-active a {
  background: #1d6d22;
  background: var(--weed-green);
  color: #fff;
}

/* Node content (page or articles) */
.field--name-body input[type="text"],
.field--name-body input[type="email"],
.field--name-body input[type="url"],
.field--name-body input[type="password"],
.field--name-body input[type="search"],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8em;
}

/* Search result page
--------------------------------------*/
.page-content input[type="search"] {
  width: 80%;
}

ol.search-results {
  margin: 1em 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

ol.search-results li {
  margin: 0 0 1em 0;
  padding: 1em;
  background: #181a25;
  background: var(--content-bg);
}

.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}

.search-advanced .form-details-wrapper {
  padding: 0.5em 1.4em;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

.search-advanced .form-wrapper {
  padding: 0.5em 1.4em;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

/* Homepage
--------------------------------------*/
/* Homepage -> Slider */
.slider {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 75%;
  margin-top: 10%;
}

.slider-image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.slider-text {
  -webkit-box-flex: 1.5;
      -ms-flex-positive: 1.5;
          flex-grow: 1.5;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

@media (max-width: 767px) {
  .slider-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slider-text {
    height: 60%;
    max-height: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .slider-image {
    height: 40%;
    max-height: 40%;
    margin-top: 15%;
  }
  .slider-image img {
    max-height: 100%;
  }
}

.slider-container ul {
  padding: 0;
}

.morphist > * {
  display: none;
}

.morphist > .animated {
  display: inline-block;
}

.morphist {
  text-align: center;
}

/* Homepage -> Homepage content block region */

.block-region {
  margin-left: 0;
}

.region-content-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.homepage-content .block {
  padding: 4em 0;
}

.homepage-content .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.homepage-content h2.block-title {
  margin: 0 0 1em 0;
  padding: 0 0 0.3em 0;
  font-size: 2.6em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.homepage-content .block-title::before,
.homepage-content .block-title::after {
  left: auto;
}

/* Comments
--------------------------------------*/
#node-comment {
  position: relative;
  margin: 0;
  border-top: 1px solid #282d38;
  border-top: 1px solid var(--border-color);
}

#node-comment i {
  color: #1d6d22;
  color: var(--weed-green);
}

.comments-title i {
  font-size: 1em;
}

/* Comments -> comment form. */
.comment-form-wrap {
  position: relative;
  margin: 2em 0 1em 0;
}

.add-comment-title {
  margin: 0;
}

.add-comment-title i {
  font-size: 1em;
}

.comment-form label {
  display: block;
}

/* Comments -> single comment */
.single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1em;
  padding: 10px 0;
  background: #181a25;
  background: var(--content-bg);
}

.comment-user-picture {
  position: relative;
  padding: 0 4px;
  border-right: 1px solid #282d38;
  border-right: 1px solid var(--border-color);
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
}

.comment-user-picture img {
  max-width: 100px;
  height: auto;
}

h3.single-comment-title {
  margin: 0.1em 0;
  font-size: 1.2em;
}

.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9em;
  border-bottom: 1px solid #282d38;
  border-bottom: 1px solid var(--border-color);
}

.single-comment-content-body {
  position: relative;
  padding: 0 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

#node-comment .indented {
  margin-left: 4em;
}

.comment-delete,
.comment-edit {
  margin-right: 0.8em;
}

.comment-reply a,
.comment-delete a,
.comment-edit a {
  padding: 4px 16px;
  color: #fff;
  border: 2px solid #282d38;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.comment-reply a:hover,
.comment-delete a:hover,
.comment-edit a:hover {
  background: #1d6d22;
  background: var(--weed-green);
  color: #fff;
}

/* Sidebar
--------------------------------------*/
/* Sidebar */
.sidebar {
  width: 100%;
  margin: 0 0 2em 0;
  width: 100%;
}

#sidebar-left, #sidebar-right {
  padding: 0;
}

/* Sidebar -> Sidebar block */
.sidebar .block {
  margin-bottom: 2em;
  padding: 1.6em;
  background: #181a25;
  background: var(--content-bg);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #a1a1a1;
  color: var(--text-color);
  min-width: 320px;
}

.sidebar a {
  color: #cfcfcf;
  color: var(--sidebar-link-color);
}

.sidebar a:hover {
  color: #1d6d22;
  color: var(--weed-green);
}

/* Sidebar -> Form */
.sidebar input[type="text"],
.sidebar input[type="email"],
.sidebar input[type="url"],
.sidebar input[type="password"],
.sidebar input[type="search"] {
  background: transparent;
  width: 100%;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  outline: none;
}

.sidebar input[type="text"]:focus,
.sidebar input[type="email"]:focus,
.sidebar input[type="url"]:focus,
.sidebar input[type="password"]:focus,
.sidebar input[type="search"]:focus {
  border: 1px solid #1d6d22;
  border: 1px solid var(--weed-green);
}

/* Footer
--------------------------------------*/
.footer {
  position: relative;
  width: 100%;
}

#footer-top,
#footer-blocks,
#footer-bottom,
#footer-bottom-last {
  position: relative;
  width: 100%;
  padding-top: 30px;
}

/* Footer Top */
#footer-top,
#footer-bottom {
  background: #181a25;
  background: var(--content-bg);
}

/* Footer Four Blocks */
#footer-blocks {
  background: #020312;
  background: var(--header-bg);
}

.footer-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

#footer-bottom-last {
  padding: 1.2em 0;
}

/* Footer Bottom */
.footer-bottom-last {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom-last > * {
  margin-bottom: 2em;
}

/* Footer copyright and social icons */
#footer-bottom-last {
  background: #181a25;
  background: var(--content-bg);
}

.footer .block {
  padding-bottom: 30px;
}

.footer-social-icons {
  margin-left: auto;
}

.footer-container,
.footer-bottom-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0;
}

.last-flex-item,
.last-footer-block {
  padding-right: 0;
}

/* Footer -> Social icons. */
ul.social-icons {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons li {
  position: relative;
  display: inline-block;
  margin: 0 0 0.6em 0;
  padding: 0;
  border: 0;
}

ul.social-icons li a {
  width: 64px;
  height: 64px;
  line-height: 40px;
  text-align: center;
  color: var(--weed-green);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 2em;
}

ul.social-icons li a:hover {
  color: #1d6d22;
  color: var(--weed-green);
}

/* Footer -> Scroll To Top. */
.scrolltop {
  line-height: 1;
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  color: var(--weed-green);
  font-size: 40px;
  font-weight: bolder;
  z-index: 20;
  cursor: pointer;
  text-align: center;
  padding: 4px;
}

.scrolltop-icon {
  border-radius: 50%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.scrolltop:hover .scrolltop-icon {
  background: none;
}


/* Text align
-------------------------------------------- */
.text-left {
  text-align: left;
}

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

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

.center {
  margin: 0 auto;
}

/* Text Size
-------------------------------------------- */
.size-2x {
  font-size: 2em;
}

.size-3x {
  font-size: 3em;
}

.size-4x {
  font-size: 4em;
}

.size-5x {
  font-size: 5em;
}

.size-6x {
  font-size: 6em;
}

/* container width
-------------------------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}

/* Empty space
-------------------------------------------- */
.empty {
  position: relative;
  width: 100%;
  height: 2em;
  clear: both;
}

/* Color
-------------------------------------------- */
.theme-color {
  color: #1d6d22;
  color: var(--weed-green);
}

.white-color {
  color: #ffffff;
}

/* Buttons
-------------------------------------------- */
.button-link {
  position: relative;
  display: inline-block;
  background-color: green;
  border: 2px solid #1d6d22;
  border: 2px solid var(--weed-green);
  border-radius: 30px;
  padding: 0.6em 1em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 25px;
}

a.button-link, .button-link a {
  color: #ffffff;
}

a.button-link:hover, .button-link a:hover {
  color: green;
  background-color: white;
  border: 2px solid #ffffff;
  font-weight: bolder;
}

.button-link:hover {
  padding: 0.6em 3em 0.6em 1em;
}

.button-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: #1d6d22;
  background: var(--weed-green);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.button-link:hover::after {
  width: 2em;
}

.field--type-link a {
  border: 2px solid #fff;
  background-color: green;
  color: white;
  padding: 7px 15px 7px 15px;
  border-radius: 25px;
}

.field--type-link p {
  color: white;
}

.field--type-link a:hover {
  border: 2px solid #fff;
  color: var(--weed-green);
  background-color: green;
  padding: 7px 15px 7px 15px;
  border-radius: 25px;
  transition: 0.6s;
  box-shadow: 0px 2px 8px #000;
}

/* Services
-------------------------------------------- */
.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0;
}

.service {
  margin: 0 0 2em 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  max-width: 100%;
  background: #181a25;
  background: var(--content-bg);
  padding: 2em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-icon {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-icon img {
  width: 50px;
  height: auto;
}

.service-icon i {
  color: #1d6d22;
  color: var(--weed-green);
  font-size: 3em;
}

.service h3 {
  margin: 0.8em 0;
}

.service .button-link {
  text-transform: uppercase;
}

.service:hover .button-link {
  color: #1d6d22;
  color: var(--weed-green);
  border: 2px solid #ffffff;
  padding: 0.6em 3em 0.6em 1em;
}

.service:hover .button-link::after {
  width: 2em;
}

.service:hover .service-icon {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Animation
-------------------------------------------- */
/*slide up */
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

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

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Clearing
--------------------------------------*/
.clear {
  position: relative;
}

.clear::before,
.clear::after,
.row::before,
.row::after,
.section::before,
.section::after {
  content: '';
  display: table;
  clear: both;
}
/*# sourceMappingURL=style.css.map */

/* Custom */

.views-exposed-form-beitraege {
  display: inline-flex;
}

.form-item--error-message {
  color: red !important;
}

@media (max-width: 769px) {
  body {
    color: black;
  }
  .field-item {
    color: #fff;  
}
}