/**
 * Global Reset of all HTML Elements
 */
* {
  box-sizing: border-box;
}
html,
body {
  border: 0;
  font-family: "Open Sans", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: #eeeeee;
  background-image: url("../../files/kluess/img/bg.jpg");
  background-size: cover;
  background-position: center;
  font-size: 17px;
  scrollbar-gutter: stable;
}
body.oh {
  overflow: hidden;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bilbo Swash Caps';
  font-weight: normal;
  line-height: 1;
  margin-bottom: 1rem;
  color: #66b036;
}
h1 {
  font-size: 3.5em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 2em;
}
h4 {
  font-size: 1.75em;
}
ul {
  list-style: none;
  margin-left: 1.5em;
}
ul li {
  position: relative;
}
ul li:before {
  content: '- ';
  display: block;
  position: absolute;
  left: -1.5em;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  backdrop-filter: blur(3px);
  background: rgba(238, 238, 238, 0.7);
}
#header .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 1em auto;
  padding: 1em;
}
#header #logo {
  display: block;
  text-indent: -9999px;
  width: 340px;
  height: 80px;
  background: #fff;
  border-radius: 1em;
  position: relative;
  z-index: 9;
  border: 15px solid #fff;
  background-image: url('../../files/kluess/img/logo.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#header .shortlinks {
  display: flex;
  gap: 0.5em;
  position: relative;
}
#header .shortlinks a {
  background: #66b036;
  display: block;
  color: transparent;
  width: 3rem;
  height: 3rem;
  position: relative;
  border-radius: 100%;
  border: 2px solid #9cd577;
  transition: border 0.3s ease-in-out;
}
#header .shortlinks a:after {
  content: "\efbb";
  /* FontAwesome Unicode */
  font-family: Icofont;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 1.5rem;
  transform: translate(-50%, -50%);
}
#header .shortlinks a:nth-child(2) {
  background: #5b9c30;
  border-color: #8ecf63;
}
#header .shortlinks a:nth-child(2):after {
  content: "\ef14";
}
#header .shortlinks a:nth-child(3) {
  background: #4f892a;
  border-color: #80c950;
}
#header .shortlinks a:nth-child(3):after {
  content: "\ee1b";
}
#header .shortlinks a:hover {
  border-width: 0.3em;
}
#header .shortlinks button {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 1em;
  background: #66b036;
  border: none;
  transform: translate(-150%, 0);
  opacity: 0;
  cursor: pointer;
  border: 2px solid #9cd577;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease-in-out;
  text-transform: uppercase;
}
#header .shortlinks button:hover {
  border-width: 0.3em;
}
#main .inside {
  max-width: 1200px;
  width: 100%;
  margin: 1em auto;
  padding: 1em;
  padding-top: 9em;
}
#main #contentbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  overflow-y: scroll;
  padding: 1em;
  padding-top: 9em;
  opacity: 0;
  pointer-events: none;
  /*&:before {
			content: '';
			display: block;
			position: fixed;
			top: 7em;
			left: 0;
			right: 0;
			height: 3em;
			background: linear-gradient(fade(@background,100%),fade(@background,0%))
		}*/
}
#main #contentbox h1,
#main #contentbox h2,
#main #contentbox h3,
#main #contentbox h4,
#main #contentbox h5,
#main #contentbox h6 {
  color: #66b036;
}
#main #contentbox table {
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 1em;
}
#main #contentbox table td,
#main #contentbox table th {
  border: 1px solid #66b036;
}
#main #contentbox table tr th {
  background: #66b036;
  color: #fff;
  padding: 0.5em;
}
#main #contentbox table tr td {
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5em;
}
#main #contentbox #img-placeholder {
  max-width: 1300px;
  width: 100%;
  margin: 1em auto;
  background: #ccc;
  height: 340px;
  border-radius: 1em;
  position: relative;
  outline: 2px solid #66b036;
  overflow: hidden;
}
#main #contentbox #img-placeholder img {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  border-radius: 0.8em;
  z-index: 1;
}
#main #contentbox #img-placeholder h2 {
  font-size: 5em;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  display: block;
  font-family: 'Bilbo Swash Caps';
  line-height: 1;
  color: #fff;
  z-index: 3;
  transform: translate(2.5rem, 0px);
}
#main #contentbox #img-placeholder:after {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 30%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  border-radius: 0.8em;
  content: '';
  display: block;
  z-index: 2;
}
#main #contentbox .content-text {
  max-width: 1200px;
  width: 100%;
  margin: 1em auto;
  padding: 1em;
}
#main #contentbox .content-text p {
  margin-bottom: 0.75em;
}
#main .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#main .grid .col-1 {
  flex: 1 1 calc(33.333% - 2em / 3);
}
#main .grid .col-2 {
  flex: 1 1 calc(66.666% - 0.5em);
}
#main .grid .col-3 {
  flex: 0 0 100%;
}
#main .grid .textbox {
  background: #66b036;
  border-radius: 1em;
  overflow: hidden;
  position: relative;
}
#main .grid .textbox img {
  position: absolute;
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  border-radius: 0.8em;
  z-index: 1;
}
#main .grid .textbox .inner {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1rem;
  display: block;
  z-index: 4;
  color: #fff;
}
#main .grid .textbox .inner h1 {
  color: #fff;
}
#main .grid .textbox:after {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  top: 30%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  border-radius: 0.8em;
  content: '';
  display: block;
  z-index: 3;
}
.linkbox {
  background: #66b036;
  border-radius: 1em;
  overflow: hidden;
  display: block;
  height: 12em;
  position: relative;
  z-index: 1;
  outline: 2px solid #66b036;
  transition: box-shadow 0.3s ease-in-out;
}
.linkbox:hover {
  box-shadow: 0px 0.5em 1em 0 rgba(0, 0, 0, 0.5);
}
.linkbox:hover img {
  transform: scale(1.2);
}
.linkbox.clone img {
  transition: none;
  transform: scale(1) !important;
}
.linkbox img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  border-radius: 0.8em;
  transition: transform 3s ease-in-out;
}
.linkbox span {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1rem;
  display: block;
  font-family: 'Bilbo Swash Caps';
  font-size: 3em;
  line-height: 1;
  color: #fff;
  z-index: 2;
}
.linkbox:after {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 30%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  border-radius: 0.9em;
  content: '';
  display: block;
  z-index: 1;
}
#footer {
  font-size: 0.75em;
  margin-bottom: 2rem;
  text-align: center;
  color: #2d4e18;
}
#footer a {
  color: #66b036;
  font-weight: bold;
  text-decoration: none;
}
#footer .inside {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}
.bg-1 {
  margin-bottom: 1em;
}
#svglogo {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 98;
}
#svglogo svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.content-gallery ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}
.content-gallery ul li {
  flex: 1 0 23%;
}
.content-gallery ul li figure a {
  outline: 2px solid #9cd577;
  transition: all 0.3s ease-in-out;
  display: block;
  border-radius: 1em;
  overflow: hidden;
}
.content-gallery ul li figure a:hover {
  outline-width: 0.3em;
  box-shadow: 0px 0.5em 1em 0 rgba(0, 0, 0, 0.5);
}
.content-gallery ul li figure a:hover img {
  transform: scale(1.2);
}
.content-gallery ul li figure a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 3s ease-in-out;
}
@media (max-width: 760px) {
  html,
  body {
    font-size: 14px;
  }
  #main .grid .textbox {
    flex: 0 0 100%;
    height: 420px;
  }
  .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    flex: 0 0 100% !important;
  }
  .flex > a,
  .flex > div {
    flex: 0 0 calc(50% - 0.5em);
  }
  .bg-1 {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .flex > a,
  .flex > div {
    flex: 0 0 100% !important;
  }
  #main .grid .col-1 {
    flex: 0 0 100% !important;
  }
}
/* width */
::-webkit-scrollbar {
  width: 0.5em;
  z-index: 99;
}
/* Track */
::-webkit-scrollbar-track {
  background: #eee;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #c5c5c5;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

