:root {
  --black: #181715;
  --sand: rgb(226 224 223);
  --sand-hover: hsl(20, 5%, 92%);
  --brown: rgb(177 173 169);
  --dark-brown: #868079;
  --black-brown: #5e5a55;
  --red: rgb(210, 91, 89);
  --red-hover: hsl(1, 57%, 63%);
  --border: #b1ada9;
  --gray: #9f9d9a;
  --base-color: rgb(210, 91, 89);
  --horizontal-gap: 4rem;
  --vertical-gap: 4rem;
  --row-gap: 1.75rem;
  --horizontal-padding: 25px;
  --font-size: 1.2rem;
  --font-size-h1: 2.6rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.6rem;
  --font-size-h4: 1.4rem;
  --line-height: 1.7rem;
  --line-height-h1: 3rem;
  --line-height-h2: 2.4rem;
  --line-height-h3: 2.1rem;
  --line-height-h4: 2rem;
  --header-height: 110px;
  --header-height-scrolled: 85px;
  --header-nav-font-size: 1.2rem;
  --header-icon-size: 50px;
  --search-field-height: 46px;
  --button-height: 46px;
  --aside-width: 400px;
  --logo-width: 380px;
  --logo-width-scrolled: 280px;
  --border-radius: 10px;
  --box-shadow: 0px 25px 100px 0px rgb(0 0 0 / 10%);
  --button-horizontal-padding: 2rem;
  --button-border-width: 2px;
}

@media screen and (max-width: 1300px) {
  :root {
    --horizontal-gap: 3rem;
    --vertical-gap: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  :root {
    --black: #181715;
    --sand: rgb(226 224 223);
    --brown: rgb(177 173 169);
    --dark-brown: #868079;
    --black-brown: #5e5a55;
    --red: rgb(210, 91, 89);
    --border: #b1ada9;
    --gray: #9f9d9a;
    --horizontal-gap: 2rem;
    --vertical-gap: 2rem;
    --horizontal-padding: 25px;
    --font-size: 1.1rem;
    --font-size-h1: 2.6rem;
    --font-size-h2: 1.8rem;
    --font-size-h3: 1.6rem;
    --font-size-h4: 1.4rem;
    --line-height: 1.6rem;
    --header-height: 80px;
    --header-height-scrolled: 65px;
    --header-nav-font-size: 1.2rem;
    --header-icon-size: 50px;
    --search-field-height: 46px;
    --aside-width: 400px;
    --logo-width: 280px;
    --logo-width-scrolled: 230px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --black: #181715;
    --sand: rgb(226 224 223);
    --brown: rgb(177 173 169);
    --dark-brown: #868079;
    --black-brown: #5e5a55;
    --red: rgb(210, 91, 89);
    --border: #b1ada9;
    --gray: #9f9d9a;
    --horizontal-gap: 1rem;
    --vertical-gap: 2rem;
    --horizontal-padding: 25px;
    --font-size: 1.0rem;
    --font-size-h1: 2.5rem;
    --font-size-h2: 1.8rem;
    --font-size-h3: 1.6rem;
    --font-size-h4: 1.4rem;
    --line-height: 1.4rem;
    --header-height: 90px;
    --header-height-scrolled:75px;
    --header-nav-font-size: 1.2rem;
    --header-icon-size: 45px;
    --search-field-height: 46px;
    --aside-width: 400px;
    --logo-width: 300px;
    --logo-width-scrolled: 230px;
  }
}
@media screen and (max-width: 650px) {
  :root {
    --header-icon-size: 38px;
  }
}
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

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

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  display: block;
  max-width: 100%;
  border-radius: 0;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select,
input,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td,
td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*!
Fork Awesome 1.1.7
License - https://forkaweso.me/Fork-Awesome/license

Copyright 2018 Dave Gandy & Fork Awesome

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "ForkAwesome";
  src: url("../fonts/forkawesome/forkawesome-webfont.eot?v=1.1.7");
  src: url("../fonts/forkawesome/forkawesome-webfont.eot?#iefix&v=1.1.7") format("embedded-opentype"), url("../fonts/forkawesome/forkawesome-webfont.woff2?v=1.1.7") format("woff2"), url("../fonts/forkawesome/forkawesome-webfont.woff?v=1.1.7") format("woff"), url("../fonts/forkawesome/forkawesome-webfont.ttf?v=1.1.7") format("truetype"), url("../fonts/forkawesome/forkawesome-webfont.svg?v=1.1.7#forkawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px / 1 ForkAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

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

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

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

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

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

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

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

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-sync:before,
.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video:before,
.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

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

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

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

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

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

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

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

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell-o:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-e:before {
  content: "\f304";
}

.fa-globe-w:before {
  content: "\f305";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-community:before,
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus-g:before,
.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-utensils:before,
.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

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

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-pound:before,
.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-down:before,
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before,
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-down:before,
.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-up:before,
.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-down:before,
.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-up:before,
.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

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

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

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

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-utensil-spoon:before,
.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-heading:before,
.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-closed-captioning:before,
.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-gem:before,
.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-square:before {
  content: "\f2f8";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo-v:before,
.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-phone-volume:before,
.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

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

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-mastodon:before {
  content: "\f2e1";
}

.fa-mastodon-alt:before {
  content: "\f2e2";
}

.fa-fork-circle:before,
.fa-fork-awesome:before {
  content: "\f2e3";
}

.fa-peertube:before {
  content: "\f2e4";
}

.fa-diaspora:before {
  content: "\f2e5";
}

.fa-friendica:before {
  content: "\f2e6";
}

.fa-gnu-social:before {
  content: "\f2e7";
}

.fa-liberapay-square:before {
  content: "\f2e8";
}

.fa-liberapay:before {
  content: "\f2e9";
}

.fa-ssb:before,
.fa-scuttlebutt:before {
  content: "\f2ea";
}

.fa-hubzilla:before {
  content: "\f2eb";
}

.fa-social-home:before {
  content: "\f2ec";
}

.fa-artstation:before {
  content: "\f2ed";
}

.fa-discord:before {
  content: "\f2ee";
}

.fa-discord-alt:before {
  content: "\f2ef";
}

.fa-patreon:before {
  content: "\f2f0";
}

.fa-snowdrift:before {
  content: "\f2f1";
}

.fa-activitypub:before {
  content: "\f2f2";
}

.fa-ethereum:before {
  content: "\f2f3";
}

.fa-keybase:before {
  content: "\f2f4";
}

.fa-shaarli:before {
  content: "\f2f5";
}

.fa-shaarli-o:before {
  content: "\f2f6";
}

.fa-cut-key:before,
.fa-key-modern:before {
  content: "\f2f7";
}

.fa-xmpp:before {
  content: "\f2f9";
}

.fa-archive-org:before {
  content: "\f2fc";
}

.fa-freedombox:before {
  content: "\f2fd";
}

.fa-facebook-messenger:before {
  content: "\f2fe";
}

.fa-debian:before {
  content: "\f2ff";
}

.fa-mastodon-square:before {
  content: "\f300";
}

.fa-tipeee:before {
  content: "\f301";
}

.fa-react:before {
  content: "\f302";
}

.fa-dogmazic:before {
  content: "\f303";
}

.fa-zotero:before {
  content: "\f309";
}

.fa-nodejs:before {
  content: "\f308";
}

.fa-nextcloud:before {
  content: "\f306";
}

.fa-nextcloud-square:before {
  content: "\f307";
}

.fa-hackaday:before {
  content: "\f30a";
}

.fa-laravel:before {
  content: "\f30b";
}

.fa-signalapp:before {
  content: "\f30c";
}

.fa-gnupg:before {
  content: "\f30d";
}

.fa-php:before {
  content: "\f30e";
}

.fa-ffmpeg:before {
  content: "\f30f";
}

.fa-joplin:before {
  content: "\f310";
}

.fa-syncthing:before {
  content: "\f311";
}

.fa-inkscape:before {
  content: "\f312";
}

.fa-matrix-org:before {
  content: "\f313";
}

.fa-pixelfed:before {
  content: "\f314";
}

.fa-bootstrap:before {
  content: "\f315";
}

.fa-dev-to:before {
  content: "\f316";
}

.fa-hashnode:before {
  content: "\f317";
}

.fa-jirafeau:before {
  content: "\f318";
}

.fa-emby:before {
  content: "\f319";
}

.fa-wikidata:before {
  content: "\f31a";
}

.fa-gimp:before {
  content: "\f31b";
}

.fa-c:before {
  content: "\f31c";
}

.fa-digitalocean:before {
  content: "\f31d";
}

.fa-att:before {
  content: "\f31e";
}

.fa-gitea:before {
  content: "\f31f";
}

.fa-file-epub:before {
  content: "\f321";
}

.fa-python:before {
  content: "\f322";
}

.fa-archlinux:before {
  content: "\f323";
}

.fa-pleroma:before {
  content: "\f324";
}

.fa-unsplash:before {
  content: "\f325";
}

.fa-hackster:before {
  content: "\f326";
}

.fa-spell-check:before {
  content: "\f327";
}

.fa-moon:before {
  content: "\f328";
}

.fa-sun:before {
  content: "\f329";
}

.fa-f-droid:before {
  content: "\f32a";
}

.fa-biometric:before {
  content: "\f32b";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  transform-style: preserve-3d;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  outline: none;
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  outline: none;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide--draggable > .splide__slider > .splide__track, .splide--draggable > .splide__track {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide--fade > .splide__slider > .splide__track > .splide__list, .splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--fade > .splide__track > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb.is-active > .splide__slider > .splide__track > .splide__list, .splide--ttb.is-active > .splide__track > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover {
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide:focus, .splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination, .splide--ttb > .splide__slider > .splide__pagination {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

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

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  max-width: initial;
  margin: 0;
  padding: 0;
}
.gprev svg path,
.gnext svg path,
.gclose svg path {
  fill: #fff;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 48.5%;
  }
  .glightbox-clean .gnext {
    top: 48.5%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--red);
}

.hamburger-box {
  width: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

h1, .h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  margin-bottom: var(--line-height);
  font-weight: 700;
  color: var(--red);
}

h2, .h2, .ueberschrift-rot {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  margin-bottom: var(--line-height);
}

h3, .h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  margin-bottom: var(--line-height);
}

h4, .h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  margin-bottom: var(--line-height);
}

header {
  background-color: #fff;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: 0.3s ease all;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.15);
}
header .page {
  width: 100%;
  max-width: initial !important;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1rem;
}
header .page h1 {
  position: absolute;
  left: var(--horizontal-gap);
  margin: 0;
}
header .page h1 svg {
  display: block;
  transition: 0.3s ease all;
  width: var(--logo-width);
  height: auto;
}
header .right-nav {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  position: absolute;
  top: 5px;
}
header .button-nav {
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  height: 50px;
}
header .button-nav ul {
  display: flex;
  column-gap: 10px;
}
header .button-nav ul li {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  color: #fff;
  position: relative;
}
header .button-nav ul li .trigger-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: var(--header-icon-size);
  width: var(--header-icon-size);
  height: var(--header-icon-size);
  background-color: var(--brown);
}
header .button-nav ul li .trigger-icon svg {
  display: block;
  position: absolute;
  width: 28px;
  height: auto;
  transition: ease 0.3s all;
}
header .button-nav ul li .trigger-icon svg path {
  fill: #fff;
}
header .button-nav ul li .trigger-icon svg.open, header .button-nav ul li .trigger-icon svg.close {
  width: 32px;
}
header .button-nav ul li .trigger-icon svg.close {
  visibility: hidden;
  opacity: 0;
}
header .button-nav ul li i, header .button-nav ul li span {
  line-height: var(--header-font-size);
  font-size: var(--header-font-size);
}
header .button-nav ul li span {
  display: none;
}
header .button-nav ul li[data-id=visible-nav] .trigger-icon {
  background-color: var(--red);
}
header .hamburger {
  outline: none;
  z-index: 1001;
}

.fix-header header {
  height: var(--header-height-scrolled);
  transition: 0.3s ease transform;
}
.fix-header header .page h1 svg {
  width: var(--logo-width-scrolled);
}

.nav-open {
  overflow: hidden;
}
.nav-open header {
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0;
  right: 0px;
}
.nav-open header #navbar {
  visibility: visible;
  width: var(--app-width);
  z-index: 1000;
  transform: translateX(calc(-1 * var(--app-width)));
  transition: 0.3s ease transform;
}
.nav-open main {
  margin-top: var(--header-height);
}

html.visible-nav header .button-nav li .trigger-icon svg.close {
  visibility: visible;
  opacity: 1;
}
html.visible-nav header .button-nav li .trigger-icon svg.open {
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 650px) {
  header {
    align-items: center;
  }
  header .page .right-nav {
    position: relative;
    top: initial;
  }
  header .page .button-nav ul {
    column-gap: 1rem;
  }
  header .page .button-nav ul li {
    overflow: hidden;
    color: #000;
    border-radius: var(--header-icon-size);
    cursor: pointer;
    padding-right: 1rem;
    height: var(--header-icon-size);
  }
  header .page .button-nav ul li .trigger-icon {
    border: 2px solid #fff;
  }
  header .page .button-nav ul li i {
    background-color: var(--brown);
    color: #fff;
    height: var(--header-icon-size);
    width: var(--header-icon-size);
    border: 2px solid #fff;
  }
  header .page .button-nav ul li i, header .page .button-nav ul li span {
    display: initial;
    z-index: 1;
  }
  header .page .button-nav ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 0px;
    top: 2px;
    bottom: 2px;
    background-color: var(--sand);
  }
}
@media screen and (min-width: 768px) {
  header .page {
    justify-content: space-between !important;
  }
  header .page h1 {
    position: initial;
  }
  header .page #navbar #mainnav ul li a, header .page #navbar #mainnav ul li span {
    color: var(--black);
  }
  header .page .button-nav {
    position: relative;
    background-color: transparent;
  }
  header .page .button-nav ul li {
    overflow: hidden;
    color: var(--black);
    border-radius: var(--header-icon-size);
    cursor: pointer;
    padding-right: 1rem;
    height: var(--header-icon-size);
  }
  header .page .button-nav ul li i {
    background-color: var(--brown);
    color: #fff;
    height: var(--header-icon-size);
    width: var(--header-icon-size);
    border: 2px solid #fff;
  }
  header .page .button-nav ul li i.menu {
    background-color: var(--red);
  }
  header .page .button-nav ul li span {
    display: initial;
  }
}
@media screen and (min-width: 1600px) {
  header .page {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 0;
  }
}
main {
  overflow: hidden;
  padding-top: var(--header-height);
  transition: all ease 0.3s;
  background-color: #fff;
}

.maincontent, aside {
  margin-bottom: var(--line-height);
}

.fix-header main {
  padding-top: var(--header-height-scrolled);
}

.maincontent .main-section {
  position: relative;
  margin-bottom: calc(var(--line-height) * 2);
  padding-bottom: var(--line-height);
}
.maincontent .main-section::after {
  display: block;
  content: "";
  background: url('data:image/svg+xml;utf8,<svg width="936.06" height="47.938" version="1.1" viewBox="0 0 247.67 12.684" xmlns="http://www.w3.org/2000/svg"><g transform="translate(2.9104 -77.523)"><path d="m3.4308 77.523c-3.5146 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8267 6.3423 6.3412 6.3423 3.4385 0 6.3412-2.8278 6.3412-6.3423 0-3.4374-2.9027-6.3412-6.3412-6.3412m29.373 0c-3.5146 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8267 6.3423 6.3412 6.3423 3.4374 0 6.3412-2.8278 6.3412-6.3423 0-3.4374-2.9038-6.3412-6.3412-6.3412m29.372 0c-3.5135 0-6.3401 2.9038-6.3401 6.3412 0 3.5146 2.8267 6.3423 6.3401 6.3423 3.4385 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9038-6.3412-6.3423-6.3412m29.373 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4374 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9049-6.3412-6.3423-6.3412m29.372 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4374 0 6.3434-2.8278 6.3434-6.3423 0-3.4374-2.906-6.3412-6.3434-6.3412m29.372 0c-3.5135 0-6.339 2.9038-6.339 6.3412 0 3.5146 2.8256 6.3423 6.339 6.3423 3.4385 0 6.3434-2.8278 6.3434-6.3423 0-3.4374-2.9049-6.3412-6.3434-6.3412m29.374 0c-3.5146 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8267 6.3423 6.3412 6.3423 3.4374 0 6.3412-2.8278 6.3412-6.3423 0-3.4374-2.9038-6.3412-6.3412-6.3412m29.372 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4385 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9038-6.3412-6.3423-6.3412m29.372 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4385 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9038-6.3412-6.3423-6.3412" fill="rgb(210, 91, 89)" stroke-width="1.1024"/></g></svg>');
  height: 8px;
  width: 146px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
  bottom: -4px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .maincontent ul, .maincontent ol {
    padding-left: 18px;
    list-style: disc;
    margin-bottom: var(--line-height);
  }
  .maincontent ul li, .maincontent ol li {
    margin-bottom: var(--line-height);
  }
  .maincontent .browse-navigation {
    position: relative;
    height: var(--line-height);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(var(--horizontal-gap) / 2);
    list-style: none;
    padding: calc(var(--line-height) * 2) 0 var(--line-height) 0;
    margin: calc(var(--line-height) * 2) 0 var(--line-height) 0;
  }
  .maincontent .browse-navigation li {
    margin: 0;
  }
  .maincontent .browse-navigation li a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .maincontent .browse-navigation li.top {
    order: 1;
  }
  .maincontent .browse-navigation li.prev {
    order: 2;
  }
  .maincontent .browse-navigation li.next {
    order: 3;
  }
  .maincontent .browse-navigation::before {
    display: block;
    content: "";
    background: url('data:image/svg+xml;utf8,<svg width="936.06" height="47.938" version="1.1" viewBox="0 0 247.67 12.684" xmlns="http://www.w3.org/2000/svg"><g transform="translate(2.9104 -77.523)"><path d="m3.4308 77.523c-3.5146 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8267 6.3423 6.3412 6.3423 3.4385 0 6.3412-2.8278 6.3412-6.3423 0-3.4374-2.9027-6.3412-6.3412-6.3412m29.373 0c-3.5146 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8267 6.3423 6.3412 6.3423 3.4374 0 6.3412-2.8278 6.3412-6.3423 0-3.4374-2.9038-6.3412-6.3412-6.3412m29.372 0c-3.5135 0-6.3401 2.9038-6.3401 6.3412 0 3.5146 2.8267 6.3423 6.3401 6.3423 3.4385 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9038-6.3412-6.3423-6.3412m29.373 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4374 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9049-6.3412-6.3423-6.3412m29.372 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4374 0 6.3434-2.8278 6.3434-6.3423 0-3.4374-2.906-6.3412-6.3434-6.3412m29.372 0c-3.5135 0-6.339 2.9038-6.339 6.3412 0 3.5146 2.8256 6.3423 6.339 6.3423 3.4385 0 6.3434-2.8278 6.3434-6.3423 0-3.4374-2.9049-6.3412-6.3434-6.3412m29.374 0c-3.5146 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8267 6.3423 6.3412 6.3423 3.4374 0 6.3412-2.8278 6.3412-6.3423 0-3.4374-2.9038-6.3412-6.3412-6.3412m29.372 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4385 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9038-6.3412-6.3423-6.3412m29.372 0c-3.5135 0-6.3412 2.9038-6.3412 6.3412 0 3.5146 2.8278 6.3423 6.3412 6.3423 3.4385 0 6.3423-2.8278 6.3423-6.3423 0-3.4374-2.9038-6.3412-6.3423-6.3412" fill="rgb(210, 91, 89)" stroke-width="1.1024"/></g></svg>');
    height: 8px;
    width: 146px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    top: -4px;
    left: 0;
  }
  .maincontent nav ul,
  .maincontent ul.article-list {
    list-style: none;
    padding-left: 0;
  }
  body#article-1 .maincontent {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  body#article-1 .maincontent .social-media {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 1rem 0;
  }
  body#article-1 .maincontent .social-media .social-media-entry {
    margin-right: 0.5rem;
  }
  body#article-1 .maincontent .social-media .social-media-entry .twitter-square:hover {
    color: #1d9bf0;
  }
  body#article-1 .maincontent .social-media .social-media-entry .facebook-official:hover {
    color: #1877f2;
  }
  body#article-1 .maincontent .social-media .social-media-entry .youtube:hover {
    color: #ff0000;
  }
  body#article-1 .maincontent .sub-section {
    display: grid;
    grid-template-columns: 17fr 7fr;
    gap: var(--vertical-gap);
  }
}
.newsteaser .teaser {
  margin-bottom: calc(var(--line-height) * 2);
}
.newsteaser .teaser a {
  display: flex;
  align-items: center;
}
.newsteaser .teaser a svg {
  margin-right: 5px;
}

.members {
  margin: 1rem 0;
}
.members .member-of-the-month {
  margin-bottom: var(--line-height);
}
.members .member-of-the-month svg {
  height: 8px;
  width: auto;
}
.members .member-of-the-month h3, .members .member-of-the-month a {
  display: block;
  text-align: center !important;
}
.members .member-of-the-month .image {
  display: flex;
  justify-content: center;
  margin: var(--line-height);
}
.members .member-of-the-month .image img {
  border-radius: 100%;
  border: 2px solid #fff;
}
.members .get-membership {
  display: flex;
  justify-content: center;
}

.social-media, .members .member-of-the-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
  background: var(--sand);
  border-radius: var(--border-radius);
  padding: calc(var(--vertical-gap) / 2) calc(var(--vertical-gap) / 2) var(--vertical-gap);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

body .page {
  margin: 0 auto;
  max-width: 1600px;
  display: flex;
  padding: 0 var(--horizontal-gap);
}

@media screen and (min-width: 768px) {
  .news-list .news-entry,
  .news-list .news-header {
    padding: 0.5rem 0;
    display: grid;
    grid-template-columns: 18% 64% 18%;
    border-bottom: 1px solid var(--border);
  }
  .news-list .news-entry .author,
  .news-list .news-entry .date,
  .news-list .news-header .author,
  .news-list .news-header .date {
    text-align: center;
  }
  .news {
    padding: var(--vertical-gap) var(--horizontal-gap);
  }
}
footer {
  background-color: var(--black-brown);
}
footer .page {
  display: block;
  padding: var(--vertical-gap) var(--horizontal-gap);
}
footer .page .mainfooter {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: flex-start;
  column-gap: var(--horizontal-gap);
  padding-bottom: var(--vertical-gap);
}
footer .page .mainfooter svg {
  width: 100%;
  max-width: var(--logo-width);
}
footer .page .mainfooter svg path {
  fill: var(--sand);
}
footer .page .mainfooter .contact {
  justify-self: flex-end;
}
footer .page .mainfooter .contact div {
  white-space: nowrap;
  text-align: right;
}
footer .page .copyright {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: var(--horizontal-gap);
  align-items: center;
  font-size: calc(var(--font-size) * 0.8);
  color: var(--sand);
  padding-top: var(--line-height);
  opacity: 0.5;
  flex-wrap: wrap;
}
footer .page .copyright ul {
  column-gap: 2rem;
  order: 2;
}
footer .page .copyright .copyright-info {
  order: 1;
}
footer .page .copyright::before {
  content: "";
  height: 2px;
  background-color: var(--sand);
  opacity: 0.3;
  border-radius: 2px;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
}
footer .page .footer-logo {
  display: flex;
  justify-content: center;
}
footer .page h4 {
  font-size: var(--font-size-h3);
}
footer .page h4, footer .page a, footer .page a:visited, footer .page p, footer .page div {
  color: var(--sand);
  text-decoration: none;
  text-align: center;
}
footer .page ul {
  margin-bottom: var(--line-height);
}
footer .page nav.socialmedia ul {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
footer .page nav.socialmedia ul li {
  width: initial;
}
footer .page nav.socialmedia ul li svg {
  width: 32px;
  height: 32px;
}
footer .page nav.socialmedia ul li svg path {
  fill: var(--sand);
}

@media screen and (min-width: 768px) {
  footer .page {
    position: relative;
  }
  footer .page nav {
    padding: 0 8px;
  }
  footer .page nav ul {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer .page nav ul > li {
    width: 33.333333%;
  }
  footer .page nav ul > li ul li {
    width: 100%;
  }
  footer .page nav ul > li a {
    font-weight: initial;
    text-decoration: none;
  }
  footer .page nav ul > li a:hover {
    color: #fff;
  }
  footer .page nav ul > li span,
  footer .page nav ul > li a {
    color: var(--sand);
  }
  footer .page nav ul > li > span,
  footer .page nav ul > li ul {
    margin: 0 8px;
  }
  footer .page nav ul > li span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  footer .page h4, footer .page a, footer .page a:visited, footer .page p, footer .page div {
    text-align: left;
  }
}
@media screen and (max-width: 1200px) {
  footer .page .mainfooter {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  footer .page .mainfooter {
    grid-template-columns: 1fr;
    gap: var(--line-height);
  }
}
.visible-news, .visible-nav {
  overflow: hidden;
}

.visible-nav header,
.visible-news header {
  z-index: 1001;
}
.visible-nav .loadinglayer,
.visible-news .loadinglayer {
  opacity: 0.95;
  background-color: var(--brown);
}
.visible-nav .loadinglayer .icon,
.visible-news .loadinglayer .icon {
  display: none;
}

.hidden-element-news, .hidden-element-nav {
  z-index: 1001;
  background-color: var(--sand);
  position: fixed;
  top: var(--header-height);
  right: 0px;
  bottom: 0px;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  width: var(--app-width);
  transform: translateX(var(--app-width));
  overflow-y: auto;
  box-shadow: var(--box-shadow);
}

@media screen and (min-width: 768px) {
  .hidden-element-news, .hidden-element-nav {
    transition: all ease-in-out 0.3s;
    width: 50%;
    transform: translateX(50%);
  }
}
.fix-header .hidden-element-news, .fix-header .hidden-element-nav {
  top: var(--header-height-scrolled);
}

.visible-nav .hidden-element-nav,
.visible-news .hidden-element-news {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

html.loaded {
  overflow: auto;
}

.loadinglayer {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transition: all ease 0.3s;
}

.loaded .loadinglayer {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.loaded .loadinglayer .icon {
  visibility: hidden;
}

.icon {
  display: inline-block;
  position: relative;
  width: 81px;
  height: 81px;
  visibility: visible;
}

.icon svg {
  content: " ";
  display: block;
}

#navi ul.dropdown {
  display: block;
}
#navi ul.dropdown > li {
  cursor: default;
  align-items: center;
  color: var(--black);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: 0.6s ease all;
}
#navi ul.dropdown > li span.dropdowntrigger {
  display: flex;
  width: 100%;
  cursor: pointer;
  padding: 10px var(--horizontal-gap);
}
#navi ul.dropdown > li a,
#navi ul.dropdown > li span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--red);
  font-weight: normal;
  font-size: 1.3rem;
}
#navi ul.dropdown > li span::after {
  transition: ease all 0.3s;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path fill="rgb(210, 91, 89)" d="M480-357.847 253.847-584 296-626.153l184 184 184-184L706.153-584 480-357.847Z"/></svg>');
}
#navi ul.dropdown > li > ul {
  left: 0px;
  right: 0px;
  position: absolute;
  background-color: var(--dark-brown);
  margin: 10px 0;
  padding: 10px 0;
  transition: 0.6s ease all;
  opacity: 0;
  max-height: 0px;
}
#navi ul.dropdown > li > ul li {
  display: flex;
  align-items: center;
  padding: 0 var(--horizontal-gap);
}
#navi ul.dropdown > li > ul li a {
  display: block;
  white-space: nowrap;
  padding: 7px;
  font-size: 1rem;
  color: var(--sand);
  text-decoration: none;
  transition: 0.15s ease-in-out all;
  text-underline-offset: 6px;
  text-decoration-color: transparent;
}
#navi ul.dropdown > li > ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-style: solid;
  text-decoration-color: var(--sand);
}
#navi ul.dropdown > li > ul li::before {
  transform: rotate(-90deg);
  content: "";
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path fill="rgb(226 224 223)" d="M480-357.847 253.847-584 296-626.153l184 184 184-184L706.153-584 480-357.847Z"/></svg>');
}
#navi ul.dropdown > li.dropdown-open span::after {
  transform: rotate(180deg);
}
#navi ul.dropdown > li.dropdown-open > ul {
  position: relative;
  opacity: 1;
  max-height: 1000px;
  transition: 0.3s ease-in-out max-height;
}
#navi #search {
  display: none;
}

.search_it-form {
  padding: var(--vertical-gap) var(--horizontal-gap) calc(var(--vertical-gap) - 10px);
  position: relative;
}
.search_it-form input[name=search] {
  display: flex;
  padding: 0 var(--horizontal-gap);
  align-items: center;
  width: 100%;
  border: 0;
  height: var(--search-field-height);
  border-radius: calc(var(--search-field-height) / 2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.search_it-form input[name=search]:focus,
.search_it-form input[name=search]:focus-visible {
  outline-width: 2px;
  outline-color: var(--red);
}

:root {
  --max-width-1: 960px;
  --max-width-2: 1200px;
  --max-width-3: 1472px;
}

.flexcontent {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.flexcontent .u-wrapper {
  width: 100%;
}

.flexcontent.with-background {
  padding-left: calc(var(--gutter) * 2);
  padding-right: calc(var(--gutter) * 2);
}

.flexcontent.with-background.base {
  background-color: var(--red);
}
.flexcontent.with-background.base * {
  color: #fff;
  border-color: #fff;
}
.flexcontent.with-background.base svg path {
  fill: #fff;
}

.flexcontent.with-background.sand {
  background-color: var(--sand);
}

.flexcontent.with-background.padding-top {
  padding-top: calc(var(--gutter) * 2);
}

.flexcontent.with-background.padding-top.padding-top-double {
  padding-top: calc(var(--gutter) * 4);
}

.flexcontent.with-background.padding-bottom {
  padding-bottom: var(--gutter);
}

.flexcontent.with-background.padding-bottom.padding-bottom-double {
  padding-bottom: calc(var(--gutter) * 2);
}

.flexcontent.margin-bottom {
  margin-bottom: var(--line-height);
}

.flexcontent.margin-top {
  margin-top: var(--line-height);
}

.flexcontent.margin-bottom.margin-bottom-double {
  margin-bottom: calc(var(--line-height) * 2);
}

.flexcontent.margin-top.margin-top-double {
  margin-top: calc(var(--line-height) * 2);
}

.flexcontent.max-width-1 .u-wrapper,
.flexcontent.horizontal-centered.max-width-1 {
  max-width: var(--max-width-1);
}

.flexcontent.max-width-2 .u-wrapper,
.flexcontent.horizontal-centered.max-width-2 {
  max-width: var(--max-width-2);
}

.flexcontent.max-width-3 .u-wrapper,
.flexcontent.horizontal-centered.max-width-3 {
  max-width: var(--max-width-3);
}

.flexcontent.horizontal-centered.max-width-1,
.flexcontent.horizontal-centered.max-width-2,
.flexcontent.horizontal-centered.max-width-3 {
  padding-left: calc(var(--gutter) * 2);
  padding-right: calc(var(--gutter) * 2);
}
.flexcontent.horizontal-centered.max-width-1 .u-wrapper,
.flexcontent.horizontal-centered.max-width-2 .u-wrapper,
.flexcontent.horizontal-centered.max-width-3 .u-wrapper {
  max-width: 100%;
}

.flexcontent.horizontal-centered.flexcontent.with-background.margin-bottom,
.flexcontent.horizontal-centered.flexcontent.with-background.margin-top {
  padding-left: calc(var(--gutter) * 2);
  padding-right: calc(var(--gutter) * 2);
}

.flexcontent.vertical-centered > .u-wrapper > .row > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flexcontent .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.flexcontent .text-align .file-downloads {
  margin-bottom: var(--line-height);
}
.flexcontent .text-align .file-downloads .file-download {
  display: flex;
  gap: 10px;
}
.flexcontent audio,
.flexcontent figure.image,
.flexcontent .responsive-video,
.flexcontent pre,
.flexcontent ul,
.flexcontent ol,
.flexcontent dl {
  margin-bottom: var(--line-height);
}
.flexcontent .responsive-video video, .flexcontent .responsive-video iframe {
  display: block;
  width: 100%;
  height: auto;
}
.flexcontent pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 var(--line-height);
  font-size: 14px;
  line-height: 1.46667;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border-radius: 0 code;
  border-radius-padding: 0;
  border-radius-font-size: inherit;
  border-radius-color: inherit;
  border-radius-white-space: pre-wrap;
  border-radius-background-color: transparent;
  border-radius-border-radius: 0;
}
.flexcontent pre code, .flexcontent pre kbd, .flexcontent pre pre, .flexcontent pre samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.flexcontent pre code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0;
}
.flexcontent figure.image {
  position: relative;
  display: flex;
  flex-direction: column;
}
.flexcontent figure.image figcaption {
  position: relative;
  width: 100%;
}
.flexcontent figure.image figcaption .copyright-trigger {
  display: flex;
  align-items: center;
  margin-right: 3px;
}
.flexcontent figure.image figcaption span.copyright {
  position: absolute;
  top: -1.3rem;
  right: 1rem;
  margin: 0;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #fff;
  text-shadow: #000 1px 1px;
  display: flex;
  align-items: center;
}
.flexcontent figure.image figcaption span.copyright a {
  text-decoration: none;
  color: #fff;
}
.flexcontent figure.image.rounded {
  overflow: hidden;
}
.flexcontent figure.image.rounded img {
  border-radius: var(--border-radius);
}
.flexcontent figure.image.center {
  align-items: center;
}
.flexcontent figure.image.right {
  align-items: flex-end;
}
.flexcontent ul {
  list-style: disc;
}
.flexcontent ul li ul {
  margin: calc(var(--line-height) / 2) 0;
  list-style-type: circle;
}
.flexcontent .center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flexcontent .btn a {
  display: flex;
  background-color: var(--base-color);
  height: var(--button-height);
  line-height: calc(var(--button-height) * 0.85);
  border: var(--button-border-width) solid var(--base-color);
  color: #fff;
  justify-content: center;
  padding: 0 var(--button-horizontal-padding);
  border-radius: calc(var(--button-height) / 2);
  transition: ease 0.3s all;
  margin-bottom: var(--line-height);
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: none;
}
.flexcontent .btn a:hover {
  background-color: var(--base-color-light);
  border-color: var(--base-color-light);
}
.flexcontent .btn-ghost a {
  color: var(--base-color);
  background-color: transparent;
}
.flexcontent .btn-ghost a:hover {
  background-color: transparent;
  color: var(--base-color-light);
}

.video {
  margin-bottom: var(--line-height);
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #000;
}
.video .fa-spin {
  position: absolute;
  color: #fff;
  top: 50%;
  margin-top: -28px;
  margin-left: -37px;
  left: 50%;
}

.video::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.video iframe body {
  z-index: 1;
}

a.set-iframe-src {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.set-iframe-src img {
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
a.set-iframe-src svg {
  transform: scale(2);
  text-align: center;
  opacity: 0.9;
  display: block;
  position: absolute;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
a.set-iframe-src svg path {
  fill: #fff;
  transition: all 0.5s ease-in-out;
}
a.set-iframe-src i.fa::before {
  margin-left: 0px;
}

a.set-iframe-src:hover svg {
  opacity: 1;
  transform: scale(2.5);
}

a.set-iframe-src.hidden {
  opacity: 0;
  visibility: hidden;
}
a.set-iframe-src.hidden iframe {
  z-index: 1;
}

a.btn {
  display: inline-flex;
  background-color: var(--base-color);
  height: var(--button-height);
  line-height: calc(var(--button-height) * 0.85);
  border: var(--button-border-width) solid var(--base-color);
  color: #fff;
  justify-content: center;
  padding: 0 var(--button-horizontal-padding);
  border-radius: calc(var(--button-height) / 2);
  transition: ease 0.3s all;
  margin-bottom: var(--line-height);
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: none;
}

a.btn:hover {
  background-color: var(--base-color-light);
  border-color: var(--base-color-light);
}

a.btn-ghost {
  color: var(--base-color);
  background-color: transparent;
}

a.btn-ghost:hover {
  background-color: transparent;
  color: var(--base-color-light);
}

.intro {
  position: relative;
  overflow: hidden;
}
.intro figure.image {
  position: relative;
}
.intro figure.image img {
  object-fit: contain;
}
.intro figure.image figcaption {
  position: absolute;
  bottom: var(--line-height);
  right: var(--gutter);
  color: #fff;
  text-shadow: #000 1px 1px;
}
.intro figure.image figcaption .copyright {
  font-size: 0.7rem;
}
.intro figure.image figcaption .copyright .copyright-trigger {
  margin-right: 5px;
}
.intro figure.image figcaption .copyright a {
  text-decoration: none;
  color: #fff;
}

.intro.intro-header,
.intro.intro-full,
.intro.intro-two-thirds,
.intro.intro-half {
  z-index: 0;
  height: calc(var(--app-height) - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro.intro-header figure.image,
.intro.intro-full figure.image,
.intro.intro-two-thirds figure.image,
.intro.intro-half figure.image {
  display: flex;
}
.intro.intro-header .image_wrapper,
.intro.intro-full .image_wrapper,
.intro.intro-two-thirds .image_wrapper,
.intro.intro-half .image_wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.intro.intro-header .image_wrapper,
.intro.intro-header figure.image,
.intro.intro-header figure.image picture,
.intro.intro-full .image_wrapper,
.intro.intro-full figure.image,
.intro.intro-full figure.image picture,
.intro.intro-two-thirds .image_wrapper,
.intro.intro-two-thirds figure.image,
.intro.intro-two-thirds figure.image picture,
.intro.intro-half .image_wrapper,
.intro.intro-half figure.image,
.intro.intro-half figure.image picture {
  display: block;
  height: 100%;
  width: 100%;
}
.intro.intro-header .image_wrapper img,
.intro.intro-header figure.image img,
.intro.intro-header figure.image picture img,
.intro.intro-full .image_wrapper img,
.intro.intro-full figure.image img,
.intro.intro-full figure.image picture img,
.intro.intro-two-thirds .image_wrapper img,
.intro.intro-two-thirds figure.image img,
.intro.intro-two-thirds figure.image picture img,
.intro.intro-half .image_wrapper img,
.intro.intro-half figure.image img,
.intro.intro-half figure.image picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.intro.intro-header .intro-text,
.intro.intro-full .intro-text,
.intro.intro-two-thirds .intro-text,
.intro.intro-half .intro-text {
  overflow: hidden;
  left: calc(var(--gutter) * 2);
  max-width: 960px;
  bottom: 15%;
  left: 20%;
  right: 20%;
  z-index: 1;
  text-align: center;
}
.intro.intro-header .intro-text h1,
.intro.intro-full .intro-text h1,
.intro.intro-two-thirds .intro-text h1,
.intro.intro-half .intro-text h1 {
  font-size: 3.375rem;
  line-height: 4.4375rem;
}
.intro.intro-header .intro-text h2, .intro.intro-header .intro-text .h2,
.intro.intro-full .intro-text h2,
.intro.intro-full .intro-text .h2,
.intro.intro-two-thirds .intro-text h2,
.intro.intro-two-thirds .intro-text .h2,
.intro.intro-half .intro-text h2,
.intro.intro-half .intro-text .h2 {
  font-size: 2rem;
  line-height: 2.625rem;
  margin-bottom: 2.1875rem;
  font-weight: 500;
}
.intro.intro-header .intro-text p, .intro.intro-header .intro-text ul, .intro.intro-header .intro-text ol,
.intro.intro-full .intro-text p,
.intro.intro-full .intro-text ul,
.intro.intro-full .intro-text ol,
.intro.intro-two-thirds .intro-text p,
.intro.intro-two-thirds .intro-text ul,
.intro.intro-two-thirds .intro-text ol,
.intro.intro-half .intro-text p,
.intro.intro-half .intro-text ul,
.intro.intro-half .intro-text ol {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 2.1875rem;
  font-weight: 500;
}
.intro.intro-header .intro-text ul, .intro.intro-header .intro-text ol,
.intro.intro-full .intro-text ul,
.intro.intro-full .intro-text ol,
.intro.intro-two-thirds .intro-text ul,
.intro.intro-two-thirds .intro-text ol,
.intro.intro-half .intro-text ul,
.intro.intro-half .intro-text ol {
  padding-left: 0;
}
.intro.intro-header .intro-text ul li,
.intro.intro-full .intro-text ul li,
.intro.intro-two-thirds .intro-text ul li,
.intro.intro-half .intro-text ul li {
  padding-left: 2rem;
  position: relative;
}
.intro.intro-header .intro-text ul, .intro.intro-header .intro-text ul li,
.intro.intro-full .intro-text ul,
.intro.intro-full .intro-text ul li,
.intro.intro-two-thirds .intro-text ul,
.intro.intro-two-thirds .intro-text ul li,
.intro.intro-half .intro-text ul,
.intro.intro-half .intro-text ul li {
  list-style: none !important;
}
.intro.intro-header .intro-text ul li::before,
.intro.intro-full .intro-text ul li::before,
.intro.intro-two-thirds .intro-text ul li::before,
.intro.intro-half .intro-text ul li::before {
  content: ">";
  left: 0;
  position: absolute;
  top: -3px;
}
.intro.intro-header .intro-text a.btn-ghost,
.intro.intro-full .intro-text a.btn-ghost,
.intro.intro-two-thirds .intro-text a.btn-ghost,
.intro.intro-half .intro-text a.btn-ghost {
  color: var(--red);
  border-color: var(--red);
}
.intro.intro-header .intro-text::after,
.intro.intro-full .intro-text::after,
.intro.intro-two-thirds .intro-text::after,
.intro.intro-half .intro-text::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.5;
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 1023px) {
  .intro.intro-header .intro-text,
  .intro.intro-full .intro-text,
  .intro.intro-two-thirds .intro-text,
  .intro.intro-half .intro-text {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .intro.intro-header .intro-text,
  .intro.intro-full .intro-text,
  .intro.intro-two-thirds .intro-text,
  .intro.intro-half .intro-text {
    width: 100%;
  }
}

.intro.intro-two-thirds {
  height: calc(var(--app-height) * 0.66 - var(--header-height));
}

.intro.intro-half {
  height: calc(var(--app-height) * 0.5 - var(--header-height));
}

.intro.intro-header {
  height: calc(var(--app-height) / 2 - var(--header-height));
}

.intro.intro-proportional {
  position: relative;
}
.intro.intro-proportional .intro-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

@media only screen and (max-width: 767px) {
  .intro figure.image figcaption {
    font-size: 0.7rem;
    bottom: var(--extra-nav-mobile-height);
  }
  .intro figure.image figcaption p {
    margin: 0;
    line-height: 0.9rem;
  }
  .intro.intro-header .intro-text,
  .intro.intro-full .intro-text {
    padding: 1rem;
    bottom: calc(var(--extra-nav-mobile-height) + 1rem);
    right: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    border-radius: 10px;
  }
  .intro.intro-header .intro-text h1, .intro.intro-header .intro-text h2, .intro.intro-header .intro-text .h2,
  .intro.intro-full .intro-text h1,
  .intro.intro-full .intro-text h2,
  .intro.intro-full .intro-text .h2 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    margin-bottom: 1rem;
  }
  .intro.intro-header .intro-text h1,
  .intro.intro-full .intro-text h1 {
    line-height: 1.25rem;
  }
  .intro.intro-header .intro-text p, .intro.intro-header .intro-text ul, .intro.intro-header .intro-text ol,
  .intro.intro-full .intro-text p,
  .intro.intro-full .intro-text ul,
  .intro.intro-full .intro-text ol {
    font-size: 1.125rem;
    line-height: 1.375rem;
    margin-bottom: 1rem;
  }
  .intro.intro-header .intro-text ul li,
  .intro.intro-full .intro-text ul li {
    padding-left: 1rem;
  }
}
.intromodule {
  position: relative;
}
.intromodule .container {
  height: 100%;
  position: relative;
}
.intromodule .container .intro__text {
  position: absolute;
  left: var(--horizontal-gap);
  top: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - var(--horizontal-gap));
  max-width: 360px;
  gap: 2rem;
}
.intromodule .container .intro__text h1, .intromodule .container .intro__text h2 {
  color: var(--white);
}
.intromodule .container .intro__text .buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intromodule .container .intro__text .buttons .btn {
  background-color: #fff;
  color: var(--red);
  border-color: #fff;
  font-weight: bold;
  transition: all ease 0.3s;
}
.intromodule .container .intro__text .buttons .btn:hover {
  opacity: 0.9;
}
.intromodule .container .intro__text .buttons .btn-ghost {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.intromodule .container .intro__image .image_wrapper figure, .intromodule .container .intro__image .image_wrapper figure picture {
  display: block;
  height: 650px;
}
.intromodule .container .intro__image .image_wrapper figure img, .intromodule .container .intro__image .image_wrapper figure picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (min-width: 1120px) {
  .intromodule .container .intro__text {
    max-width: 28%;
  }
  .intromodule .container .intro__text .textwrapper,
  .intromodule .container .intro__text .buttons {
    max-width: 600px;
  }
  .intromodule .container .intro__text h1 {
    font-size: clamp(2.5rem, 1.3529rem + 2.3529vw, 5rem);
    line-height: clamp(3.5rem, 1.4529rem + 2.3529vw, 6rem);
  }
  .intromodule .container .intro__image .image_wrapper figure, .intromodule .container .intro__image .image_wrapper figure picture {
    height: 100%;
  }
}
html {
  font-size: 16px;
  overflow: hidden;
}

body {
  font-family: "PT Sans", sans-serif;
  color: var(--black);
  font-size: var(--font-size);
  line-height: var(--line-height);
  background-color: var(--black-brown);
}

p, h2, h3 {
  margin-bottom: var(--line-height);
}

p span {
  margin-bottom: 0 !important;
}

hr {
  display: none;
}

.h1-label {
  display: none;
}

a {
  color: var(--red);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--sand);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: all 0.1s ease-in-out;
}

a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

a.glightbox {
  text-decoration: none;
}

.ueberschrift-schwarz::after, .ueberschrift-rot::after {
  content: "";
  clear: both;
}

.ueberschrift-schwarz, .ueberschrift-rot {
  display: inline-block;
  margin-bottom: var(--line-height) !important;
}

.ueberschrift-rot {
  color: var(--red);
}

.video, video {
  margin-bottom: var(--line-height);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

i.fa-file-pdf-o::before {
  color: var(--red);
}

strong, b {
  font-weight: bold;
}

p:empty {
  display: none;
}

main .page .headerimage {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
main .page aside ul {
  margin: 0 0 calc(var(--line-height) * 2) 0;
}
main .page aside ul li {
  margin-bottom: var(--line-height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
main .page aside ul li > a {
  display: block;
}
main .page aside ul li ul {
  display: flex;
  flex-wrap: wrap;
  padding: var(--line-height) 0 var(--line-height) var(--horizontal-gap);
  font-size: 1rem;
}
main .page aside ul li::before {
  content: "";
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="m517.847-480-184-184L376-706.153 602.153-480 376-253.847 333.847-296l184-184Z"/></svg>');
  height: 24px;
  width: 24px;
  display: block;
  margin-right: 5px;
}
main .page aside ul > li.rex-current::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M402.232-480 218.848-664 261-706.153 487.153-480 261-253.847 218.848-296l183.384-184Zm253.999 0L472.847-664 515-706.153 741.152-480 515-253.847 472.847-296l183.384-184Z"/></svg>');
}
main .page.cols-2 {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: var(--horizontal-gap);
}
@media screen and (max-width: 767px) {
  main .page.cols-2 {
    grid-template-columns: 1fr;
  }
}
main .page.cols-3 {
  display: grid;
  grid-template-columns: 18% 60% 22%;
}
main .page.cols-3 aside, main .page.cols-3 .news {
  margin: 1rem;
}
main .page.cols-3 .maincontent {
  margin: 1rem;
}
main .page.cols-3 aside {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 1;
}
main .page.cols-3 .maincontent {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
}
main .page.cols-3 .news {
  grid-column-start: 3;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
}
main .news {
  padding: var(--vertical-gap) var(--horizontal-gap);
}
main .news .newsteaser {
  margin-bottom: calc(var(--line-height) * 2);
}
main .news .newsteaser li {
  position: relative;
  padding-left: 32px;
  margin-bottom: var(--line-height);
}
main .news .newsteaser li::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  height: 24px;
  width: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M402.232-480 218.848-664 261-706.153 487.153-480 261-253.847 218.848-296l183.384-184Zm253.999 0L472.847-664 515-706.153 741.152-480 515-253.847 472.847-296l183.384-184Z"/></svg>');
}
main .news .newsteaser.press li::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M172.309-140.001q-30.308 0-51.308-21t-21-51.308v-535.382q0-30.308 21-51.308t51.308-21h615.382q30.308 0 51.308 21t21 51.308v535.382q0 30.308-21 51.308t-51.308 21H172.309Zm0-59.999h615.382q4.616 0 8.463-3.846 3.846-3.847 3.846-8.463v-535.382q0-4.616-3.846-8.463-3.847-3.846-8.463-3.846H172.309q-4.616 0-8.463 3.846-3.846 3.847-3.846 8.463v535.382q0 4.616 3.846 8.463 3.847 3.846 8.463 3.846Zm83.077-95.386h449.228v-59.998H255.386v59.998Zm0-154.615h147.691v-214.613H255.386v214.613Zm235.384 0h213.844v-59.998H490.77v59.998Zm0-154.615h213.844v-59.998H490.77v59.998ZM160-200V-760-200Z"/></svg>');
}

.richtext {
  clear: both;
}

.image-style-align-left {
  margin-right: 1rem !important;
  margin-bottom: 1rem !important;
  height: auto !important;
}

.image-style-align-right {
  margin-left: 1rem !important;
  margin-bottom: 1rem !important;
  height: auto !important;
}

ul.breadcrumb {
  display: flex;
  align-items: center;
  gap: calc(var(--horizontal-gap) / 2);
  margin: var(--vertical-gap) 0 var(--line-height) 0;
}
ul.breadcrumb li {
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: relative;
  margin-bottom: 0;
}
ul.breadcrumb li a {
  display: flex;
  align-content: center;
}
ul.breadcrumb li:first-child {
  padding-left: 0;
}
ul.breadcrumb li::after {
  content: "/";
  color: var(--brown);
  font-size: 25px;
  position: absolute;
  right: calc(var(--horizontal-gap) / 2.5 * -1);
  top: -1px;
}
ul.breadcrumb li:last-child::after {
  content: "";
}

.article-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: flex-start;
  margin-bottom: var(--line-height);
}
.article-list li span i {
  font-size: small;
  font-style: normal;
}
.article-list li svg {
  margin-top: 2px;
}

.paginate_nav, .paginate_art {
  padding: 1rem 0;
}

.paginate_nav {
  margin: 0 auto;
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paginate_nav > span {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
.paginate_nav > span a {
  text-decoration: none;
}
.paginate_nav span:first-child {
  width: initial;
}
.paginate_nav ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.paginate_nav ul li {
  width: 20px;
  height: 20px;
  background-color: var(--sand);
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginate_nav ul li a {
  display: block;
  text-decoration: none;
}
.paginate_nav ul li span.paktiv {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--red);
}

.paginate_nav:first-child {
  padding-top: 2rem;
}

.rex-nav-pagination {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.rex-nav-pagination ul.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
.rex-nav-pagination ul.pagination li {
  margin: 3px;
}
.rex-nav-pagination ul.pagination li a {
  background-color: var(--sand);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
}
.rex-nav-pagination ul.pagination li.active a {
  color: #fff;
  background-color: var(--red);
}
.rex-nav-pagination ul.pagination li.disabled {
  display: none;
}
.rex-nav-pagination .rex-pagination-count {
  font-size: 0.9rem;
}

.pdf-download {
  background: var(--sand);
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: var(--line-height);
  box-shadow: var(--box-shadow);
}
.pdf-download .header,
.pdf-download .link {
  padding: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pdf-download .header i,
.pdf-download .link i {
  margin-right: 5px;
}
.pdf-download .header a,
.pdf-download .link a {
  color: var(--red);
}
.pdf-download .header {
  background: var(--brown);
  color: var(--sand);
  padding: 7px 13px;
  font-weight: bold;
}

.kammerberichte, .verein {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
.kammerberichte figure figcaption, .verein figure figcaption {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.kammerberichte figure figcaption i, .verein figure figcaption i {
  margin-right: 5px;
}

.splide {
  margin: calc(var(--line-height) * 2) 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.splide .splide__slide {
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
.splide .splide__slide .description {
  position: absolute;
  bottom: 1rem;
  left: 5rem;
  right: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 2.8rem;
  line-height: 3rem;
  line-height: initial;
  font-weight: bold;
  color: #928c84;
}
.splide .splide__pagination {
  bottom: 0rem;
  gap: 9px;
}
.splide .splide__pagination li {
  margin-bottom: 0;
}
.splide .splide__pagination li .splide__pagination__page {
  margin: 0;
  height: 8px;
  width: 8px;
}
.splide .splide__pagination .splide__pagination__page.is-active {
  background: var(--red);
  opacity: 1;
  transform: none;
}
.splide .splide__arrow {
  top: calc(50% - 1.5rem);
}
.splide .splide__arrow svg {
  fill: var(--red);
}

.alert {
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  display: flex;
  padding: 1rem;
  margin-bottom: 2rem;
  background: var(--sand);
}
.alert ul {
  margin: 0;
}

form .form-group, form .formcheckbox, form .xformulartext, form .alert, form .text {
  display: grid;
  margin: 1rem 0;
}
form .form-group input[type=text], form .form-group textarea, form .form-group select, form .formcheckbox input[type=text], form .formcheckbox textarea, form .formcheckbox select, form .xformulartext input[type=text], form .xformulartext textarea, form .xformulartext select {
  padding: 5px;
  border: 1px solid var(--border);
}
form .form-group input[type=text]:focus, form .form-group textarea:focus, form .form-group select:focus, form .formcheckbox input[type=text]:focus, form .formcheckbox textarea:focus, form .formcheckbox select:focus, form .xformulartext input[type=text]:focus, form .xformulartext textarea:focus, form .xformulartext select:focus {
  outline: none;
  border-color: var(--black);
}
form .has-error label {
  color: var(--red);
}
form .has-error input {
  border-color: var(--red) !important;
}
form .formcheckbox label {
  display: flex;
  align-items: center;
}
form .formcheckbox label input[type=checkbox] {
  margin-right: 5px;
}
form .formcheckbox label a {
  margin: 0 4px;
}
form button {
  justify-self: start;
}
form .form-check-group {
  margin-bottom: var(--line-height);
}
form fieldset legend {
  font-weight: bold;
  margin-bottom: var(--line-height);
}
form .checkbox label {
  display: flex;
  align-items: center;
}
form .checkbox label input[type=checkbox] {
  margin-right: 5px;
}
form .input-group-addon {
  margin-right: 5px;
}

.left, .center, .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.left {
  align-items: flex-start;
}

.center {
  align-items: center;
}

.right {
  align-items: flex-end;
}

button,
.btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sand);
  color: var(--black);
  margin-bottom: var(--line-height);
  height: var(--button-height);
  padding: 0 var(--button-horizontal-padding);
  border: var(--button-border-width) solid var(--sand);
  border-radius: var(--button-height);
  transition: ease-in-out all 0.3s;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.2rem;
}

button:hover,
.btn a:hover {
  background-color: var(--sand-hover);
  border-color: var(--sand-hover);
  text-decoration: none;
}

button,
.btn.btn-solid a {
  color: #fff;
  background-color: var(--red);
  border-color: var(--red);
}

button:hover,
.btn.btn-solid a:hover {
  color: #fff;
  background-color: var(--red-hover);
  border-color: var(--red-hover);
}

.btn.btn-ghost a {
  border-color: var(--red);
  background-color: transparent;
  color: var(--red);
}

.btn.btn-ghost a:hover {
  border-color: var(--red-hover);
  color: var(--red-hover);
}

.gallery {
  margin-bottom: var(--line-height);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}

.headline {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background-color: var(--sand);
  margin-bottom: var(--line-height);
}
.headline .headlineblock {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.headline .headlineblock::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20%;
  left: 50%;
  margin-left: -10%;
  height: 1px;
  background-color: var(--red);
}

.image-style-align-left, img[style*="float: left"], img[style*="float:left"] {
  float: left;
  margin: 5px var(--horizontal-gap) var(--line-height) 0 !important;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.socialmediabuttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(var(--horizontal-gap) / 2);
  margin-bottom: var(--line-height);
}
.socialmediabuttons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: var(--button-height);
  padding: 0 calc(var(--horizontal-gap) / 2);
  border-radius: calc(var(--button-height) / 2);
  color: #fff;
  transition: all ease-in-out 0.3s;
}
.socialmediabuttons a i.fa {
  margin-right: 5px;
}
.socialmediabuttons a.whatsapp {
  background-color: #2BB741;
}
.socialmediabuttons a.twitter {
  background-color: #1DA1F2;
}
.socialmediabuttons a.facebook {
  background-color: #4267B2;
}
.socialmediabuttons a.whatsapp:hover {
  background-color: #42d359;
}
.socialmediabuttons a.twitter:hover {
  background-color: #4db5f5;
}
.socialmediabuttons a.facebook:hover {
  background-color: #6283c5;
}

.consent_manager-buttons a {
  text-decoration: none;
}

main > .flexmodule {
  padding-left: var(--horizontal-gap);
  padding-right: var(--horizontal-gap);
}

.flexmodule.red {
  background-color: var(--red);
}
.flexmodule.red * {
  color: #fff;
}
.flexmodule.red a, .flexmodule.red a:visited {
  text-decoration: none;
  transition: ease all 0.3s;
}
.flexmodule.red a:hover {
  text-decoration: underline;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery figure {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.gallery figure figcaption {
  display: none;
}

@media screen and (min-width: 425px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  ul.horizontal {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*# sourceMappingURL=theme.min.css.map */
