/* Variables
----------------------- */
:root {
  --color-primary: #1f7838;
  --color-secondary: #a5c9af;
  --color-primary-light: #f2e8dd;
  --color-secondary-light: #bbd6c3;
  --bg-body: #faf7ea;
  --text-color: #2a2a2a;
  --bold-color: #222222;
  --light: #fffbf6;
  --border: #dbdbd3;
  --radius: 0.5em;
  --shadow: 0 0 8px 1px #cccccc;
  --shadoww: 0 0.875rem 1.875rem rgba(0, 0, 0, 0.1);
  --font-text: "Open Sans", sans-serif;
  --font-heading: "Cambria", sans-serif;
}

/* Default Box sizing */
*,
*::before,
*::after {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML and Body
----------------------- */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--text-color);
  font-family: var(--font-text), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Regions
---------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

template,
[hidden] {
  display: none;
}

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

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

/* Typography
----------------------- */
/* Typography -> Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px 0;
}

h5,
h6 {
  margin: 0;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.1rem;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 1.2rem 0;
}

/* Typography -> Links */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  color: var(--color-primary);
  background-color: transparent;
  text-decoration: none;/*
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;*/
}

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

a:hover {
  color: var(--color-secondary);
}

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

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

abbr {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

/* Typography -> Text styling */
b,
strong {
  font-weight: bolder;
  /* color: var(--bold-color); */
}

em,
dfn,
cite {
  font-style: italic;
}

mark,
ins {
  padding: 4px 8px;
  background: var(--bold-color);
  color: #ffffff;
  text-decoration: none;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

/* Typography -> Blockquote */
blockquote,
[dir="rtl"] blockquote {
  position: relative;
  background-color: #ffffff;
  margin: 0.5rem 0 1rem 0;
  padding: 1rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  isolation: isolate;
}

blockquote:before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  color: var(--color-primary-light);
  font-size: 4rem;
  line-height: 1;
  z-index: -1;
}

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

/* Typography -> HTML code tags */
pre {
  overflow: auto;
}

kbd {
  background-color: #ffffff;
  padding: 4px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
}

pre,
samp {
  background-color: #ffffff;
  margin: 1rem 0;
  padding: 4px 1rem;
  font-family: monospace, monospace;
  font-size: 1rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

code {
  padding: 2px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
  background: #ffffff;
}

/* Typography -> Address */
address {
  margin: 0 0 1.75rem;
  font-style: italic;
}

/* Typography -> Description Lists */
dl {
  margin: 0 0 1.75rem;
}

dt {
  font-weight: 400;
  color: var(--bold-color);
}

dd {
  margin: 0 0 1.75rem;
}

/* Typography -> HTML Elements */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  margin: 8px 0;
  background: var(--border);
  border: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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="tel"],
input[type="password"],
input[type="search"] {
  border: 0;
  outline: 0;
  padding: 10px;
  /* background: #ffffff; */
  width: 100%;
  max-width: 100%;
  /* border-bottom: 2px solid var(--color-primary); */
  border-bottom: 2px solid var(--color-secondary-light);
  /* border-radius: 4px; */
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
}

textarea {
  outline: 0;
  width: 100%;
  max-width: 100%;
  padding: 12px;
  /* border: 1px solid var(--color-primary); */
  border: 1px solid var(--color-secondary-light);
  /* border-bottom: 2px solid var(--color-primary); */
  border-bottom: 2px solid var(--color-secondary-light);
  border-radius: 4px;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
  /* border-bottom: 2px solid var(--color-secondary-light); */
  border-bottom: 2px solid var(--color-primary);
}

textarea:focus {
  border-color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

input[type="submit"],
input[type="button"],
button {
  padding: 9px 25px;
  background: var(--color-primary);
  color: #ffffff;
  border: 0;
  border-radius: 4px;/*
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;*/
}

input[type="submit"]:hover {
  background: var(--color-secondary-light);
}

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

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

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

fieldset {
  /* margin: 0 0 10px 0; */
  /* padding: 0.35rem 0.5rem 0.5rem 0; */
  /* border: 1px solid var(--border); */
  border: 0;
  padding: 0;
  margin-top: 1em;
}

fieldset .inline {
  margin-bottom: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
}

form label {
  display: table;
  font-weight: bold;
}

label[for] {
  cursor: pointer;
}

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

/* Drupal form elements */
.form-item {
  margin-bottom: 1rem;
}

.form-required:after {
  content: "\f069";
  display: inline-block;
  padding-left: 4px;
  font-family: "FontAwesome";
  font-size: 0.5em;
  color: var(--color-primary);
  vertical-align: super;
}

.form-item label {
  display: block;
}

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

/* placeholder */
::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

/* Captcha
----------------------- */
.captcha {
  padding-top: 0.5em;
  border-top: 1px solid var(--border);
}

.captcha .form-item {
  margin-bottom: initial;
}

.captcha input[type="text"] {
  width: auto;
  width: initial;
}

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

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

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

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

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

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

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

th {
  background: var(--color-primary);
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  padding: 10px;
  border: 2px solid var(--border);
  text-align: left;
  text-shadow: none;
}

th a {
  color: #ffffff;
}

td {
  padding: 5px 10px;
  border: 2px solid var(--border);
}
*/
/* Media
----------------------- */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
}

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

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

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--border);
  text-align: center;
}

.align-left,
img.align-left,
figure.align-left {
  float: left;
  margin: 20px 20px 20px 0;
}

.align-right,
img.align-right,
figure.align-right {
  float: right;
  margin: 20px 0 20px 20px;
}

.align-center,
img.align-center,
figure.align-center {
  display: block;
  clear: both;
  margin: 20px auto;
}

figure.align-center {
  display: table;
}

figure.align-center img {
  display: block;
  clear: both;
  margin: 0 auto;
}

/* Drupal image filed */
.path-node .image-field {
  float: left;
  margin: 0 1rem 1rem 0;
}

.feed-icon {
  display: block;
}

summary {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
}

/* Misc
----------------------- */
::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

.radius { border-radius: var(--radius); }

/* container and page layout
-------------------------------------------- */
.container {
  position: relative;
  max-width: 1300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 10px;
}

/* content wrapper including main, sidebar */
.main-wrapper {
  position: relative;
  /* padding: 20px 0; */
  padding: 0;
  /* background: var(--bg-body); */
  /* z-index: 2; */
}

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

/* Main */
.no-sidebar .main-container {
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

.sidebar-left .main-container {
  -ms-grid-columns: 45% 55%;
      grid-template-columns: 45% 55%;
}

.sidebar-right .main-container {
  -ms-grid-columns: 65% 35%;
      grid-template-columns: 65% 35%;
}

.two-sidebar .main-container {
  -ms-grid-columns: 25% 50% 25%;
      grid-template-columns: 25% 50% 25%;
}

#sidebar-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
/*
#front-main {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
*/
#main {
  position: relative;
  /* background: var(--bg-body); */
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  /* z-index: 2; */
  min-height: 320px;
}

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

.user-guest.path-user .main-container {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.local-action {
  list-style: none;
}

.button-action {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 6px 12px;
}

.button-action:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Header
--------------------------------------*/
/* Header container */
#header,
.header-top,
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 15;
}

/* Header top */
.header-top {
  /* background-color: var(--color-primary-light); */
}

.header-top-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* header top left block region */
.header-top-left i {
  background: var(--light);
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;/*
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;*/
}

/* Header and footer social icons */
.social-icons {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.footer .social-icons li {
  padding: 0;
  border: 0;
}

.social-icons li a {
  background: var(--light);
  color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;/*
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;*/
}

.social-icons a {
  color: var(--color-primary);
}

ul.social-icons a:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* header for branding and main menu */
.header {
  /* background: #ffffff; */
  background: #1f7838;
  border-bottom: 2px solid #efefef;
  -webkit-box-shadow: var(--shadoww);
          box-shadow: var(--shadoww);
}
/*
.frontpage #header {*/
  /* position: absolute; *//*
  background: #1f78386e;
  background: rgba(31, 120, 56, 0.431);*/
  /* margin-top: 50px; *//*
}

.frontpage .header {
  background: transparent;
  border-bottom: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
*/
.header-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;
  padding: 0.291rem 0;
}

/* .frontpage .header-container { padding: 0; } */

/* site branding */
.region-site-branding {
  position: absolute;
  width: 122px;
  height: auto;
  border: 2px solid var(--color-secondary);
}

.site-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.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;
  display: none;
}

.site-name {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--bold-color);
  text-transform: uppercase;
}

.site-name a,
.site-name a:hover {
  color: var(--bold-color);
}

.site-slogan {
  font-size: 0.9rem;
  color: var(--bold-color);
  line-height: 1;
}

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

/* main menu */
.mobile-menu {
  display: none;
  margin-right: 6px;
}

.mobile-menu i {
  padding: 3px;
  font-size: 2rem;
}

.close-mobile-menu {
  display: none;
  width: 34px;
  height: 34px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  z-index: 200;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

.primary-menu-wrapper {
  font-family: var(--font-heading);
  font-weight: 400;
}

.menu-wrap {
  position: relative;
}

ul.main-menu,
.region-primary-menu .menu {
  position: relative;
  font-family: var(--font-heading);
  /* color: var(--bold-color); */
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  z-index: 10;
  list-style: none;
  list-style-type: none;
  text-transform: none;
}

ul.main-menu > li > span,
.region-primary-menu .menu > li > span {
  display: block;
  padding: 16px 14px;
}

ul.main-menu > li a,
.region-primary-menu .menu > li a {
  /* color: var(--color-primary); */
  color: var(--border);
  text-decoration: none;
}

.frontpage ul.main-menu > li a,
.frontpage .region-primary-menu .menu > li a {
  color: var(--bg-body);
}

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

ul.main-menu > li,
.region-primary-menu .menu > li {
  display: inline-block;
  line-height: 1;
}

.frontpage ul.main-menu > li,
.frontpage .region-primary-menu .menu > li {
  line-height: unset;
}

ul.main-menu > li > a,
.frontpage .region-primary-menu .menu > li > a {
  display: block;
  margin: 0 -2px;
  /* border-radius: 3px; */
  /* padding: 45px 12px 45px 10px; */
  padding: 30px 12px 35px 10px;
}

ul.main-menu > li > a:hover,
ul.main-menu > li.active > a,
ul.main-menu > li > a.is-active,
.region-primary-menu .menu > li > a:hover {
  /* background: var(--color-primary); */
  color: var(--color-secondary);
}

ul.main-menu ul.submenu,
.region-primary-menu .menu .submenu {
  position: absolute;
  display: none;
  top: 70px;
  margin: 0;
  padding: 0;
  z-index: 10;
  opacity: 0;
}

ul.main-menu ul.submenu li,
.region-primary-menu .menu .submenu li {
  display: block;
  /* width: 160px; */
  width: 210px;
  font-size: 0.9rem;
  /* background: var(--bold-color); */
  border-top: 1px solid var(--color-secondary-light);
  border-bottom: 1px solid var(--color-secondary-light);
  text-align: left;
}

ul.main-menu ul.submenu li a,
.region-primary-menu .menu .submenu li a {
  display: block;
  padding: 8px 4px 8px 10px;
  color: #ffffff;
  margin-top: -1px;
  /* background: var(--color-secondary-light); */
  background: var(--color-primary);
}

ul.main-menu ul.submenu li a:hover,
ul.main-menu ul.submenu li a.is-active,
.region-primary-menu .menu .submenu li a:hover,
.region-primary-menu .menu .submenu li a.is-active {
  /* color: var(--color-secondary-light); */
  background: var(--color-secondary);
}

li.expanded:hover ul.submenu,
li.collapsed:hover ul.submenu,
.menu-item-has-children:hover .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,
.active-menu .menu-item-has-children:hover .submenu {
  -webkit-animation: none;
  animation: none;
}

ul.main-menu li:hover > a,
.region-primary-menu .menu > li:hover a {
  /* background: var(--bold-color); */
  /* color: #ffffff; */
}

.menu-item-has-children > a::after {
  content: ' +';
}

/* search box *//*
.full-page-search {
  position: relative;
}

.search-icon {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 10px;
  border-left: 1px solid #b4b4b4;
  cursor: pointer;
}

.search-icon a {
  color: var(--bold-color);
}

.search-box {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 20;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.search-box-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  margin: 0 auto;
  -webkit-animation: slideDown 0.5s linear forwards;
  animation: slideDown 0.5s linear forwards;
  text-align: center;
}

.search-box-content .block-region {
  width: 100%;
}

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

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

.search-box-content input[type="search"] {
  width: 100%;
  padding: 1.4rem;
  background-color: #121212;
  color: #ffffff;
  border: 2px solid #3F3B3B;
  border-radius: 6px;
  outline: 0;
}

.search-box-content input[type="submit"] {
  padding: 20px 40px;
  text-transform: uppercase;
}

.search-box-content input[type="submit"]:hover {
  background: #000000;
}

.search-box-close {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: url("../images/cursor.svg"), auto;
}
*/
/* Sidebar
-------------------------------------------- */
.sidebar {
  position: relative;
  margin: 0;
}

#sidebar-left {
  padding: 0 20px 0 0;
}

#sidebar-right {
  padding: 0 0 0 40px;
}

.region-sidebar-first,
.region-sidebar-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar .block {
  background-color: #ffffff;
  /* margin-bottom: 1rem; */
  padding: 0 10px;
  /* border-radius: 6px; */
  /* -webkit-box-shadow: var(--shadow); */
          /* box-shadow: var(--shadow); */
}

.sidebar .block-title {
  /* padding-left: 6px; */
  /* font-size: 1.3rem; */
  /* border-left: 2px solid var(--color-primary); */
  /* line-height: 1.4; */
}

.sidebar ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  padding: 6px 0;
  border-bottom: 2px solid var(--border);
}

.sidebar li:last-child {
  border: 0;
}

/* search block in sidebar */
.sidebar .form-search {
  width: 100%;
}

/* Footer
--------------------------------------*/
#footer {
  width: 100%;
  border-top: 4px solid #ffffff;
}

.footer,
.download-files,
.footer-bottom {
  position: relative;
  width: 100%;
}

.download-files,
.footer-bottom {
  padding: 1rem 0;
}

.footer-bottom {
  padding: 1.2em 0 1em;
  color: var(--border);
  background: var(--color-primary);
}

.footer-bottom a { color: var(--bg-body); }

.footer-bottom p { margin-bottom: 0; }

.download-files a:hover,
.footer-bottom a:hover { color: var(--color-secondary-light); }
/*
.region-download-files,
.region-footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.region-download-files p:last-child,
.region-footer-bottom p:last-child {
  margin: 0;
}

.region-download-files .block:not(:last-child) {
  margin-bottom: 1rem;
}
*/
/* footer list style */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.footer li {
  padding: 4px 0;
  border-bottom: 1px solid #bbb0a1;
}

.footer li:last-child {
  border-bottom: 0;
}

/* Footer -> Footer Bottom Middle */
.footer-bottom-middle {
/*  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;*/
  /* border-top: 3px double #bbb0a1; */
  padding: 1rem 0;
  background: #e4cf85;
}

/* Footer -> Footer Bottom last*/
/* Node Content
--------------------------------------*/
/* Page title */
.page-title-wrap {
  position: relative;
  /* padding-top: 20px; */
  padding-top: 4.8em;
  margin: 0 0 1em;
}

.page-title-wrap h1.page-title {
  font-size: 2rem;
  /* color: var(--color-primary); */
  border-bottom: 1px solid var(--border);
}

/* Admin Tabs */
ul.page-tabs {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 2px solid var(--border);
}

.page-tabs li {
  padding: 0;
}

.page-tabs li a {
  border-right: 2px solid #ffffff;
  padding: 4px 10px;
  background: #e2dfd8;
  color: var(--bold-color);/*
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;*/
  /* text-shadow: 1px 1px #ffffff; */
}

ul.page-tabs li.active-page-tab a {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

ul.page-tabs li a:hover {
  background: var(--color-secondary);
  color: #ffffff;
  text-shadow: none;
}

/* common for all nodes */
.node,
.node-promoted,
.node-sticky,
.node-unpublished,
.node-view-mode-full {
  position: relative;
}

.node-view-mode-teaser.node-sticky {
  position: relative;
  padding: 0 1rem 1rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* node in teaser view */
.node-view-mode-teaser {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 4px double var(--border);
}

.node-view-mode-full .node-taxonomy-container {
  margin-bottom: 14px;
}

/* node author and submitted details */
.node-header {
  position: relative;
}

.author-picture {
  float: left;
}

.author-picture img {
  width: auto;
  height: 30px;
  margin-right: 6px;
}

.node-submitted-details {
  margin: 0 0 8px 0;
  padding: 4px 0;
  color: #96918b;
  border-bottom: 1px solid var(--border);
}

.node-submitted-details i {
  color: var(--color-primary);
}

.node-submitted-details a {
  color: #96918b;
}

.node-submitted-details i.fa-calendar,
.node-submitted-details i.fa-th-large {
  margin-left: 14px;
}

/* node taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 1rem 0 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  clear: both;
}

.node-links-container {
  border-bottom: 1px solid var(--border);
}

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

.term-title i {
  font-size: 1.1rem;
  color: var(--color-primary);
}

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

li.taxonomy-term {
  line-height: initial;
  display: list-item;
  padding-bottom: 0;
  list-style: circle;
  margin-left: 30px;
}

li.taxonomy-term a {
  padding: 4px 12px;
  border: 3px solid #ffffff;
  border-radius: 2px;/*
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;*/
}

li.taxonomy-term a:hover {
  background: #ffffff;
}

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

.node-links-container li {
  margin-right: 20px;
  float: left;
}

.node-links-container li.node-readmore {
  margin-left: 0;
  float: right;
}

.node-links-container .comment-comments::before {
  font-family: "FontAwesome";
  content: '\f0e6';
  padding-right: 4px;
}

.node-links-container .comment-add::before {
  font-family: "FontAwesome";
  content: '\f27b';
  padding-right: 4px;
}

.node-readmore {
  float: left;
}

li.node-readmore a {
  padding: 6px 12px;
  background: var(--color-primary);
  color: #ffffff;/*
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;*/
}

li.node-readmore a:hover {
  background: var(--bold-color);
  color: #ffffff;
}

li.node-readmore a::after {
  content: "\f178";
  padding-left: 10px;
  font-family: "FontAwesome";
}

.node-view-mode-teaser li.comment-add,
.node-view-mode-teaser li.comment-forbidden {
  text-align: right;
}

.more-link,
a.views-more-link {
  font-size: 1rem;
  font-style: italic;
  line-height: initial;
  font-family: Cambria;
}

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

/* pager */
nav.pager {
  position: relative;
}

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

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

.pager__item {
  display: inline-block;
}

.pager__item a {
  padding: 8px 14px;
  border: 3px solid #ffffff;
  border-radius: 3px;
}

.pager__item a:hover,
.pager__item.is-active a {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Block Regions
--------------------------*/
.block-title {
  position: relative;
}

/* Breadcrumb
--------------------------*/
#breadcrumb {
  position: relative;
  background-color: var(--color-primary-light);
  width: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 3;
}

.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

ol.breadcrumb-items li {
  padding: 0;
}

.breadcrumb-item-seperator {
  margin: 0 10px;
}

/* Highlight region */
#highlighted {
  /* position: relative; */
  /* background: var(--light); */
  /* z-index: 2; */
}

#highlighted .block {
  margin: 0 0 6px 0;
  padding: 6px 0;
}

/* content top and content bottom block region */
#content-top,
#content-bottom {
  width: 100%;
}

#content-top .container,
#content-bottom .container {
  background: var(--light);
}

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

.region-content-bottom {
  /* margin-top: 1rem; */
}

.region-content-top .block,
.region-content-bottom .block {/*
  margin: 0 0 1rem 0;
  padding: 1rem;
  background-color: var(--light);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);*/
}

/* Comments
-------------------------------------------- */
#node-comment {
  position: relative;
  margin-top: 30px;
  border-top: 3px double var(--border);
}

#node-comment i {
  color: var(--color-primary);
}

.comment-form-wrap {
  position: relative;
  margin: 10px 0;
  padding: 20px;
  background: var(--light);
  border: 3px solid #ffffff;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

h2.add-comment-title {
  border-bottom: 2px solid #ffffff;
}

.filter-wrapper {
  font-size: 0.9rem;
  border: 2px solid #ffffff;
}

.filter-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.filter-wrapper ul li {
  padding: 6px 0;
  border-bottom: 1px solid #ffffff;
}

.filter-wrapper ul li:last-child {
  border: 0;
}

/* single comment */
.single-comment {
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border: 2px solid #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.comment-user-picture {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
  width: 100px;
  border-right: 2px solid #ffffff;
}

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

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

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

.single-comment-meta a {
  color: #909090;
}

.single-comment-content-body {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
}

.single-comment-content-body {
  position: relative;
  display: table-cell;
  vertical-align: top;
}

#node-comment .indented {
  margin-left: 60px;
}

.single-comment-content ul.links.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 8px;
}

.single-comment-content .links a {
  padding: 5px 10px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  /* -webkit-transition: all 0.3s; */
  /* transition: all 0.3s; */
}

.single-comment-content .links a:hover {
  background-color: #ffffff;
}

/* Homepage
-------------------------------------------- *//*

*/
.section {
  position: relative;
}

.objectives,
.new-videos,
.news-blogs,
.download-files,
.donor-partners {
  position: relative;
  padding: 70px 0;
}

/* objectives section */
.objectives {
  background: var(--border);
}

.objectives .objective {
  max-width: 33%;
  display: inline-block;
  vertical-align: top;
  margin: 0 -2px;
  border-left: 4px solid var(--border);
  border-right: 4px solid var(--border);
}

.objectives .objective:hover { opacity: 0.87; }

strong.obj-title,
strong.comp-title {
  text-align: center;
  display: block;
  padding: 5px;
  /* width: 100%; */
  background: var(--color-primary);
  color: var(--color-primary-light);
}

.objectives p {
  background: var(--border);
  color: var(--color-primary);
  line-height: 1.4rem;
  padding: 20px 15px 0;
}

/* Latest News & Blogs Section */
.objectives {
  background: var(--border);
}
/*
.news-blogs::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  display: block;
  background-image: url(../images/mpanga_forest.jpg);
  background-size: cover;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
*/
.news-blogs {
  display: inline-block;
  width: 100%;
}

.news-blogs .news-article {
  width: 50%;
  background: var(--color-secondary-light);
}

.news-blogs strong.post-title {
  /* padding: 0; */
  /* background: none; */
}

.news-blogs .news-article:first-child {
  width: 47%;
  float: left;
  margin: 0;
  padding: 0 0 10px 0;
}

.news-blogs .news-article:first-child img {
  width: 100%;
}

.news-blogs .news-article:not(:first-child) {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 3%;
  padding: 0 10px 0 0;
  border-bottom: 4px solid var(--bg-body);
}

.news-blogs .news-article:not(:first-child) img {
  max-width: 36%;
  min-width: 200px;
  margin-right: 15px;
  float: left;
}

.news-blogs .news-article:first-child .post-title {
  display: block;
  padding: 10px 15px 0;
}

.news-blogs .news-article:not(:first-child) .post-title {
  /* position: absolute; */
  padding: 0;
}

.news-blogs .news-article:not(:first-child) .post-title a {
  padding-top: 2em;
  display: block;
}

.news-blogs .news-article:not(:first-child) .post-body {
  /* clear: none; */
  display: none;
}

.news-blogs .more-link {
  margin-top: 1em;
}

/* Latest Videos Section */
.new-videos {
  background: var(--border);
}

/* Latest Downloads Section */
.download-files {
  background: var(--color-primary);
}

.download-files h3.block-title { color: var(--border); }

.download-files a {
  color: var(--bg-body);
}

.download-files a:hover {
  color: var(--color-secondary-light);
}

.download-file {
  display: inline-block;
  padding: 5px 0;
  width: 33%;
  margin: 0 -2px -1px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}

.download-files .more-link { margin-top: 20px; }

/* Donors & Partners Section */
.donor-partners {
  background: #fefefe;
}

.donor-partner {
  display: inline-block;
  vertical-align: middle;
  margin: 10px -2px;
  padding: 0 30px;
  height: 60px;
}

.donor-partner img {
  width: auto;
  height: 100%;
}


/* Pages
-------------------------------------------- */

.video-entry,
.news-article {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 33.3%;
  padding: 0 10px;
  margin: 15px -2px;
}
/*
h5.post-title {
  margin-bottom: 0;
}
*/
.post-body,
.path-news-blogs .post-title {
  /* clear: both; */
  padding: 10px 15px 0;
  background: var(--color-secondary-light);
}

.post-body {
  /* padding-bottom: 10px; */
}

.post-body p {
  line-height: 1.4em;
  margin-bottom: 0.2rem;
}

/* maintenance page*/
#maintenance {
  /* margin: 0 auto; */
  padding: 4rem 0;
  text-align: center;
}

#maintenance .site-branding {
  display: block;
  padding-top: 2rem;
  margin-bottom: 25px;
}

#maintenance .site-name-slogan {
  display: initial;
}

#maintenance h1 {
  font-weight: 800;
  text-transform: capitalize;
}

#maintenance .site-branding h2 {
  margin-top: 25px;
  font-weight: bold;
}

#maintenance .site-branding h3 {
  font-style: italic;
}

#maintenance .site-branding h2,
#maintenance .site-branding h3 {
  line-height: initial;
}

#maintenance i {
  color: var(--color-primary);
  font-size: 4rem;
  margin: 1rem 0;
}

#maintenance .section {
  padding-bottom: 2rem;
}

/* Error page */
.error-page {
  text-align: center;
}

.error-page h1,
.error-page h2,
.error-page h3 {
  font-size: 5rem;
}

/* About Us page */
.the-staff,
.the-board {
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}

#block-kristofah-views-block-display-suite-b-board {
  display: none;
}

.team-profile {
  display: inline-block;
  max-width: 25%;
  vertical-align: top;
  margin: 0px -2px 40px;
  padding: 0 15px;
  text-align: center;
}

.team-profile .image-field {
  margin: 0;
  border-radius: 2em 0 0;
}

.team-profile h5,
.team-designation {
  /* width: 100%; */
  /* clear: both; */
}

.team-designation {
  display: block;
  padding: 0 15px 10px;
  border-radius: 0 0 2em;
  color: #3f3f3f;
  background: var(--color-secondary-light);
}

/* Programs Page */
.village-comp {
  max-width: 33.38%;
  display: inline-block;
  vertical-align: top;
  margin: 0 -2px;
}

.village-comp:hover { opacity: 0.781; }

strong.comp-title {
  margin: 0 2px;  
}

.village-comp p {
  margin: 0 2px 15px;
  line-height: 1.4rem;
  padding: 5px 10px 10px;
  background: var(--color-secondary-light);
}

/* Search result page *//*
.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}

.search-advanced .form-details-wrapper {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border);
}

.search-advanced .form-wrapper {
  padding: 0.5rem 1.4rem;
}

ol.search-results {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
  list-style-type: none;
}

ol.search-results li {
  margin: 0 0 16px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--border);
}
*/
/* News & Blogs page */
.news-article {
  
}

/* Photo Gallery page & Node */
.album-cover {
  display: inline-block;
  vertical-align: top;
  line-height: initial;
  max-width: 170px;
  text-align: center;
  padding-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px -2px;
  background: var(--color-secondary-light);
  border-left: 4px solid var(--light);
  border-right: 4px solid var(--light);
}

.album-cover img {
  margin-bottom: 16px;
}

/* Video Gallery page & Node */
figure.youtube-container {
  float: left;
  margin-top: 0;
  margin-right: 18px;
}

.video-entry figure.youtube-container {
  float: none;
  margin: 0;
}

.video-entry .video-name {
  width: 100%;
  display: block;
  padding: 10px 15px;
  background: var(--color-secondary-light);
  line-height: initial;
  color: var(--color-primary);
  font-size: 1.1em;
  font-weight: 600;
}

/* Contact Us page
-------------------------------------- */
.contacts-info h5 {
  max-width: 360px;
  border-bottom: 2px solid;
}
.contacts-info p {
  margin-bottom: 2rem;
}

#webform-submission-contact-add-form {
  padding-right: 6px;
}

#webform-submission-contact-add-form h5 {
  border-bottom: 2px solid;
  padding-top: 15px;
}

.half-field.form-item {
  max-width: 50%;
  display: inline-block;
  margin-left: -2px;
  margin-right: -2px;
  border-left: 4px solid var(--light);
  border-right: 4px solid var(--light);
}

/* Status message
-------------------------------------- */
.message {
  position: relative;
  color: #ffffff;
  text-shadow: none;
  margin: 20px 0;
  padding: 14px 14px 14px 64px;
}

.message em {
  color: #ffffff;
  font-style: italic;
  border-bottom: 1px dotted #ffffff;
}

.message p {
  margin: 0;
}

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

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

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

.message-error {
  background: #c94d1c;
}

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

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: '\f06a';
  background-color: #a44707;
}

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

/* Field Label
-------------------------------------- */
[dir] .field:not(:last-child) {
  /* margin-bottom: 36px; */
}

.field__label {
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: initial;
}

[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: ":";
}

/* Calendar
-------------------------------------- */
.calendar-calendar .full {
  display: table;
}

.calendar-calendar .empty {
  display: table-cell;
}

.view {
  /* padding: 1rem 0; */
}

.view-header {
  margin-bottom: 1rem;
}

.view .pager {
  margin: 1rem 0;
}

.view .pager ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

.center {
  margin: 0 auto;
}

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

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

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

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

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

.size-7x {
  font-size: 7rem;
}

.size-8x {
  font-size: 8rem;
}
*/
/* column
-------------------------------------------- */
.full {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 1.4rem;
  margin: 1rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.one_half,
.one_three,
.one_four,
.one_four_first,
.one_four_last {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.full > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 250px;
          flex: 1 0 250px;
}

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

/*slide Down */
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

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

/* Custom components
-------------------------------------------- */
/* welcome message */
.welcome-message {
  text-align: center;
}

/* Scroll To Top
------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  color: var(--bg-body);
  background: var(--color-primary);
  border: 2px solid var(--bg-body);
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;/*
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;*/
  text-align: center;
}

.scrolltop i {
  font-size: 1.6rem;
  line-height: 1;
}

.scrolltop:hover {
  background: var(--color-primary-light);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

/* Responsive view
------------------------- */
.view-in-mobile {
  display: block;
}

.view-in-desktop {
  display: none;
}

/* Content direction
------------------------- */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

/* Font Size
------------------------- *//*
.font-small {
  font-size: 0.75rem;
}

.font-medium {
  font-size: 1.25rem;
}

.font-large {
  font-size: 1.5rem;
}

.font-2x {
  font-size: 2rem;
}

.font-3x {
  font-size: 2.5rem;
}

.font-4x {
  font-size: 3rem;
}

.font-5x {
  font-size: 4rem;
}

.font-6x {
  font-size: 5rem;
}

.font-7x {
  font-size: 6rem;
}

.font-8x {
  font-size: 7rem;
}
*/
/* image icons size
------------------------- */
.icon-s {
  max-height: 1rem;
}

.icon-m {
  max-height: 1.5rem;
}

.icon-l {
  max-height: 2rem;
}

.icon-xl {
  max-height: 3rem;
}

.icon-x2 {
  max-height: 4rem;
}

.icon-x3 {
  max-height: 5rem;
}

.icon-x4 {
  max-height: 6rem;
}

.icon-x5 {
  max-height: 7rem;
}

.icon-x6 {
  max-height: 8rem;
}

.icon-x7 {
  max-height: 9rem;
}

.icon-x8 {
  max-height: 10rem;
}

/* Content width
------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}
/*
.inline-block {
  display: inline-block;
}
*/
/* Empty width and height
------------------------- */
.w20px {
  display: inline-block;
  width: 20px;
}

.w30px {
  display: inline-block;
  width: 30px;
}

.w40px {
  display: inline-block;
  width: 40px;
}

.w50px {
  display: inline-block;
  width: 50px;
}

.w70px {
  display: inline-block;
  width: 70px;
}

.w100px {
  display: inline-block;
  width: 100px;
}

.empty,
.spacer,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.empty,
.spacer {
  padding: 1rem 0;
}

.spacer-x2 {
  padding: 2rem 0;
}

.spacer-x3 {
  padding: 3rem 0;
}

/* Inline content
------------------------- */
.inline {
  vertical-align: top;
  display: inline-block;
}
/*
.inline:not(:last-child) {
  margin-right: -5px;
  padding-right: 1rem;
}
*/
/* Responsive Columns
------------------------- */
.unit {
  position: relative;
  display: block;
  width: 100%;
  padding: 3rem 0;
}

.items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(265px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.item img {
  display: block;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Create Equal width columns with no gap */
.column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 230px;
          flex: 1 1 230px;
  margin: 0;
  padding: 0;
}

/* Column Alignment
------------------------- */
.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Box
------------------------- */
.box {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: var(--shadoww);
          box-shadow: var(--shadoww);
  /* -webkit-transition: all 0.6s linear; */
  /* transition: all 0.6s linear; */
  /* padding: 1rem; */
}

.box:hover {
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/*
.box p:last-child {
  margin: 0;
}
*/

/* GrayScale
------------------------- */
.grayscale {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

.grayscale:hover {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  /* transition: all 0.5s ease; */
}

/* Clearing
-------------------------------------------- */
.clear {
  clear: both;
  width: 100%;
}

#highlighted::before

#highlighted::after {
  content: "";
  display: table;
  clear: both;
}

#main-wrapper::before,
#main-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.page-title-wrap::before,
.page-title-wrap::after,
.node-content::before,
.node-content::after {
  content: "";
  display: table;
  clear: both;
}

.node-header::before,
.node-header::after,
.node-taxonomy-container::before,
.node-taxonomy-container::after,
.node-links-container::before,
.node-links-container::after,
nav.pager::before,
nav.pager::after {
  content: "";
  display: table;
  clear: both;
}

#node-comment::before,
#node-comment::after {
  content: "";
  display: table;
  clear: both;
}

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