@charset "UTF-8";
/*
Theme Name: 50
Author: RegioHelden GmbH
Author URI: https://www.regiohelden.de/
Description: RegioHelden Marketing Website Template
Version: 1.10.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rh-50

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 50 is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
 50's SASS is based on Sequana.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Columns
5.0 Forms
6.0 Navigation
	5.1 Links
	5.2 Menus
7.0 Accessibility
8.0 Alignments
9.0 Clearings
10.0 Widgets
11.0 Content
	11.1 Posts and pages
	11.2 Asides
	11.3 Comments
12.0 Footer
13.0 Media
	13.1 Captions
	13.2 Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%; /* http://www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}

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

ol,
ul {
  list-style: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
}

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

blockquote, q {
  quotes: "" "";
}

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

a img {
  border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  text-rendering: optimizelegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1;
  margin: 3.5rem 0 1.5rem 0;
}

.row-content-inner .column > div:first-child > :first-child {
  margin-top: 0;
}

.row-content-inner .column > div:last-child > :last-child {
  margin-bottom: 0;
}

h1 {
  margin: 0 0 1.5rem 0;
  font-size: 32px;
  font-size: 3.2rem;
}
h1 a,
h1 a:visited {
  color: #333;
  text-decoration: none;
}
h1 a:hover {
  color: #bf6f00;
  text-decoration: none;
}

h2 {
  font-size: 30px;
  font-size: 3rem;
}

h3 {
  font-size: 28px;
  font-size: 2.8rem;
}

h4 {
  font-size: 26px;
  font-size: 2.6rem;
}

h5 {
  font-size: 24px;
  font-size: 2.4rem;
}

h6 {
  font-size: 22px;
  font-size: 2.2rem;
}

p {
  margin-bottom: 2.4rem;
}

b,
strong {
  font-weight: 700;
}

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

blockquote {
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  padding: 0 0 0 1em;
  font-style: italic;
}

address {
  margin: 0 0 2.4rem;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

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

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

.single .entry-content ul:not(.benefit-list):not(.default-list) li::before,
.privacy-policy .entry-content ul:not(.benefit-list):not(.default-list) li::before,
.blog .entry-content ul:not(.benefit-list):not(.default-list) li::before,
.paragraph ul:not(.benefit-list):not(.default-list) li::before,
.textwidget ul:not(.benefit-list):not(.default-list) li::before,
.accordion-content ul:not(.benefit-list):not(.default-list) li::before,
.tab-content ul:not(.benefit-list):not(.default-list) li::before {
  content: "";
  display: inline-block;
  height: 0.6rem;
  width: 0.6rem;
  margin: 0 1.8rem 0 -2.4rem;
  background: #333;
  vertical-align: 0.3rem;
}

.textwidget ul:not(.benefit-list):not(.default-list) {
  padding-left: 0;
}

.single .entry-content ul:not(.default-list),
.privacy-policy .entry-content ul:not(.default-list),
.blog .entry-content ul:not(.default-list),
.paragraph ul:not(.default-list),
.accordion-content ul:not(.default-list) {
  list-style: none;
  margin: 0 0 2.4rem 0;
}
.single .entry-content ul:not(.default-list) li,
.privacy-policy .entry-content ul:not(.default-list) li,
.blog .entry-content ul:not(.default-list) li,
.paragraph ul:not(.default-list) li,
.accordion-content ul:not(.default-list) li {
  padding: 0 0 0 2.4rem;
}
@media only screen and (min-width: 1024px) {
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 52% 48%;
    grid-template-columns: 52% 48%;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n) {
    -ms-grid-column: 2;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n-1),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n-1),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n-1),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n-1),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(2n-1) {
    -ms-grid-column: 1;
    padding-right: 4%;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(3),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(4),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(3),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(4),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(3),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(4),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(3),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(4),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(3),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(4) {
    -ms-grid-row: 2;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(5),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(6),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(5),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(6),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(5),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(6),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(5),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(6),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(5),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(6) {
    -ms-grid-row: 3;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(7),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(8),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(7),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(8),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(7),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(8),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(7),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(8),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(7),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(8) {
    -ms-grid-row: 4;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(9),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(10),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(9),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(10),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(9),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(10),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(9),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(10),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(9),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(10) {
    -ms-grid-row: 5;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(11),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(12),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(11),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(12),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(11),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(12),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(11),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(12),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(11),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(12) {
    -ms-grid-row: 6;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(13),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(14),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(13),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(14),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(13),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(14),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(13),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(14),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(13),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(14) {
    -ms-grid-row: 7;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(15),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(16),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(15),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(16),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(15),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(16),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(15),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(16),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(15),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(16) {
    -ms-grid-row: 8;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(17),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(18),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(17),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(18),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(17),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(18),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(17),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(18),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(17),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(18) {
    -ms-grid-row: 9;
  }
  .single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(19),
.single .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(20),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(19),
.privacy-policy .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(20),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(19),
.blog .entry-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(20),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(19),
.paragraph ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(20),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(19),
.accordion-content ul:not(.default-list):not(.long-list):not(.flexible-list) > :nth-child(20) {
    -ms-grid-row: 10;
  }
  .single .entry-content ul:not(.default-list).flexible-list,
.privacy-policy .entry-content ul:not(.default-list).flexible-list,
.blog .entry-content ul:not(.default-list).flexible-list,
.paragraph ul:not(.default-list).flexible-list,
.accordion-content ul:not(.default-list).flexible-list {
    columns: 2;
  }
}

ul.benefit-list:not(.default-list) li {
  padding: 0 0 0 1.5em;
  position: relative;
}
ul.benefit-list:not(.default-list) li::before {
  position: absolute;
  left: 0;
  top: 0.32em;
  display: block;
  font-family: "icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e915";
  color: #f28d00;
}

.blog .entry-content ol {
  margin: 2.4rem 0 2.4rem 2.5rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .blog .entry-content ul,
.blog .entry-content ol {
    margin: 2.4rem 0 2.4rem 2.6rem;
  }
}

.single .entry-content ol,
.privacy_policy .entry-content ol,
.blog .entry-content ol,
.content-area ol {
  margin: 0 0 2.4rem 2.5rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .single .entry-content ul,
.single .entry-content ol,
.privacy_policy .entry-content ul,
.privacy_policy .entry-content ol,
.blog .entry-content ul,
.blog .entry-content ol,
.content-area ul,
.content-area ol {
    margin: 0 0 2.4rem 2.6rem;
  }
}
.single .entry-content li,
.privacy_policy .entry-content li,
.blog .entry-content li,
.content-area li {
  margin-bottom: 0.5rem;
}
.single .entry-content li:last-child,
.privacy_policy .entry-content li:last-child,
.blog .entry-content li:last-child,
.content-area li:last-child {
  margin-bottom: 0;
}
.single .entry-content ol,
.privacy_policy .entry-content ol,
.blog .entry-content ol,
.content-area ol {
  list-style: decimal;
}
.single .entry-content li > ul,
.single .entry-content li > ol,
.privacy_policy .entry-content li > ul,
.privacy_policy .entry-content li > ol,
.blog .entry-content li > ul,
.blog .entry-content li > ol,
.content-area li > ul,
.content-area li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
.single .entry-content dt,
.privacy_policy .entry-content dt,
.blog .entry-content dt,
.content-area dt {
  font-weight: bold;
}
.single .entry-content dd,
.privacy_policy .entry-content dd,
.blog .entry-content dd,
.content-area dd {
  margin: 0 1.5em 2.4rem;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}
img.crazy_lazy[src^="data:"] {
  background-color: #fafafa;
  min-height: 16px;
  width: 100%;
}

figure {
  margin: 0;
}

table {
  margin: 0 0 2.4rem 0;
  width: 100%;
}

th {
  font-weight: 700;
}

#secondary td, #secondary th  {
  padding: 0;
}

#primary .zebra tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.1);
}
#primary .zebra tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
4.0 Columns
--------------------------------------------------------------*/
.row-content::after,
.row-content-inner::after {
  clear: both;
  content: "";
  display: table;
}

.column {
  margin-bottom: 1.6em;
}
.column.no-margin {
  margin-bottom: 0;
}

.no-margin .column {
  margin-bottom: 0;
}

@media only screen and (min-width: 1024px) {
  .column {
    margin-right: 2.5%;
    position: relative;
  }
  .column:last-child {
    margin-right: 0;
  }
  .column.full {
    width: 100%;
    margin-right: 0;
  }
  .column.two-thirds {
    float: left;
    width: 65.8%;
  }
  .two-thirds + .third {
    margin-right: 0;
  }
  .column.half {
    float: left;
    width: 48.75%;
  }
  .column.third {
    float: left;
    width: 31.66%;
  }
  .third:nth-child(3n) {
    margin-right: 0;
  }
  .third:nth-child(3n+4) {
    clear: left;
  }
  .column.fourth {
    float: left;
    width: 23.12%;
  }
  .column.three-fourths {
    float: left;
    width: 74.36%;
  }
  .fourth:nth-child(4n) {
    margin-right: 0;
  }
  .fourth:nth-child(4n+5) {
    clear: left;
  }
  .column.fifth {
    float: left;
    width: 17.99%;
  }
  .column.sixt {
    float: left;
    width: 14.58%;
  }
  .column.flow-opposite {
    float: right;
  }
}
/*--------------------------------------------------------------
5.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%; /* Corrects font size not being inherited in all browsers */
  margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

.rh-contact {
  margin-bottom: 2.4rem;
}

a.btn,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 0;
  background-color: #f28d00;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  padding: 0.9rem 1rem;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
}
a.btn svg,
button svg,
input[type=button] svg,
input[type=reset] svg,
input[type=submit] svg {
  fill: #fff;
}

a.btn:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: #fff;
  border: 0;
  cursor: pointer;
  background-color: #bf6f00;
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  background-color: #bf6f00;
}

form::after {
  clear: both;
  content: " ";
  display: block;
}
form.validate-now :invalid {
  background-color: rgba(255, 0, 0, 0.23) !important;
}

input:disabled,
input:hover:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.6;
}

input[type=range], input[type=color] {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
}

input,
textarea {
  display: block;
  -webkit-transition: border 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out;
  -ms-transition: border 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out;
  transition: border 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.5rem;
  margin: 0.1rem 0 1rem;
  line-height: 1;
  box-sizing: border-box;
  background-color: #fff;
  background-clip: padding-box;
}

.rh-form input:not([type=submit]) {
  line-height: 1;
}

input[readonly],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  height: 1.9em;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  border: 2px solid rgba(0, 0, 0, 0.4);
}

input[type=submit]:hover,
input[type=submit]:focus {
  border: none;
}

input[type=radio],
input[type=radio]:hover,
input[type=radio]:active,
input[type=radio]:focus,
input[type=radio]:checked,
input[type=checkbox],
input[type=checkbox]:hover,
input[type=checkbox]:active,
input[type=checkbox]:focus,
input[type=checkbox]:checked {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  font-size: 0;
  height: 0;
  width: 0;
  border: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  top: 0;
  z-index: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.data-privacy-notice,
.required-notice {
  float: right;
  font-size: 0.8em;
  line-height: 1;
  opacity: 0.8;
}

.required-notice {
  float: left;
}

.element-data-usage {
  font-size: 0.8em;
}

label {
  display: block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-clip: padding-box;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
label.radio, label.checkbox, label.embed-privacy-label {
  position: relative;
  margin: 0.1rem 0 1rem;
  padding: 0 0 0 2.8rem;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
label.select {
  position: relative;
  width: 100%;
}
label::after, label::before {
  background-clip: padding-box;
}

.checkbox::before,
.embed-privacy-label::before {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  z-index: 2;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.checkbox:hover::before .embed-privacy-label:hover::before {
  border: 2px solid rgba(0, 0, 0, 0.4);
}

input[type=checkbox]:checked + .checkbox::before,
input[type=checkbox]:checked + .embed-privacy-label::before {
  transform: rotate(-45deg);
  height: 0.8rem;
  border-color: #f28d00;
  border-top: 0 solid rgba(0, 0, 0, 0);
  border-right: 0 solid rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
}

.radio::before,
.radio::after {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  z-index: 2;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 100%;
}

.radio::before {
  transform-origin: center center;
  transform: scale3d(0, 0, 1);
}

.radio::after {
  z-index: 1;
}

.radio:hover::after {
  border: 2px solid rgba(0, 0, 0, 0.4);
}

input[type=radio]:checked + .radio:hover::after {
  transform: none;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

input[type=radio]:checked + .radio::before {
  border-color: #f28d00;
  background-color: #f28d00;
  transform: scale3d(0.5, 0.5, 1);
}

select {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-border-radius: 0;
  border-radius: 0;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: rgba(0, 0, 0, 0);
  border: 0;
  height: 1.75em;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  margin: 0;
  cursor: pointer;
}

.rh-form select {
  line-height: 1;
}

select::-ms-expand {
  display: none !important;
}

select::-ms-value {
  background-color: rgba(0, 0, 0, 0) !important;
  color: #333 !important;
}

option {
  color: #333;
  background: #fff;
}

.select-wrap {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 0.1rem 0 1rem;
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.2);
  position: relative;
  line-height: 1;
}
.select-wrap:hover {
  border: 2px solid rgba(0, 0, 0, 0.4);
}
.select-wrap:hover::after {
  border-top: 0.6rem solid rgba(0, 0, 0, 0.4);
}
.select-wrap::after {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  height: 0;
  width: 0;
  border-left: 0.7rem solid rgba(0, 0, 0, 0);
  border-right: 0.7rem solid rgba(0, 0, 0, 0);
  border-top: 0.6rem solid #C6C6C6;
  transform: rotate(0deg);
}

textarea {
  width: 100%;
  resize: vertical;
  overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top; /* Improves readability and alignment in all browsers */
  min-height: 5.3em;
  line-height: 1.5;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  -ms-appearance: textfield;
  appearance: textfield;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

@media only screen and (min-width: 840px) {
  .contact-rows-2 .form-element,
.contact-rows-3 .form-element {
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
    padding: 0.01rem 0;
  }
  .contact-rows-2 .custom-elements {
    -webkit-columns: 2;
    columns: 2;
  }
  .contact-rows-3 .custom-elements {
    -webkit-columns: 3;
    columns: 3;
  }
}
.form-error {
  background-color: #fdf3f2;
  border-color: #e74c3c;
  color: #e74c3c;
}
.form-error + label {
  color: #e74c3c;
}
.form-error:hover, .form-error:focus {
  background-color: #fdf3f2;
  border-color: #e74c3c;
  color: #e74c3c;
}
.form-error::-webkit-input-placeholder {
  color: #e74c3c;
}
.form-error::-moz-placeholder {
  color: #e74c3c;
}
.form-error::-ms-input-placeholder {
  color: #e74c3c;
}
.form-error::placeholder {
  color: #e74c3c;
}

.form-error-list {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #e74c3c;
  color: #fff;
  display: inline-block;
  list-style: none;
  margin: 0 0 8px !important;
  padding: 2px 8px;
  position: relative;
  top: -6px;
}
.form-error-list::before {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e74c3c rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 0 5px 5px 5px;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  top: -5px;
  transform: rotate(360deg);
  width: 0;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
  /*rtl:begin:ignore*/
  /*
  */
  left: 0;
  /*
  /*rtl:end:ignore*/
  /*
  */
}

/*
/*rtl:begin:ignore*/
/*
/*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
  /*rtl:begin:ignore*/
  /*
  */
  right: 0;
  /*
  /*rtl:end:ignore*/
  /*
  */
}

/*
/*rtl:begin:ignore*/
/*
/*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch \0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
6.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #f28d00;
  text-decoration: none;
}
a:hover {
  color: #bf6f00;
  text-decoration: underline;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
#mobile-menu-toggle,
#mobile-menu-toggle-inside {
  font-size: 17px;
  font-size: 1.7rem;
  color: #fff;
  line-height: 2;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: left;
  white-space: nowrap;
}
#mobile-menu-toggle .icon, #mobile-menu-toggle .lightBoxLink, #mobile-menu-toggle .lightBoxIcon,
#mobile-menu-toggle-inside .icon,
#mobile-menu-toggle-inside .lightBoxLink,
#mobile-menu-toggle-inside .lightBoxIcon {
  vertical-align: -1px;
}

.main-navigation {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: width 0.3s;
  width: 0;
  z-index: 1000;
}
.main-navigation > div {
  padding: 0;
}
.main-navigation > div > ul {
  min-width: 216px;
  width: 100%;
}
.main-navigation > .container {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media only screen and (min-width: 840px) {
  .nav-center .main-navigation > .container {
    justify-content: center;
  }
}
@media only screen and (min-width: 840px) {
  .main-navigation > .container {
    flex-direction: row;
  }
  .nav-right .main-navigation > .container {
    justify-content: flex-end;
  }
}
.main-navigation ul.nav-menu {
  text-indent: 0;
  flex-wrap: wrap;
}
.main-navigation ul.nav-menu li {
  border-top: 1px solid #d37105;
  box-sizing: border-box;
  display: block;
  margin-bottom: -1px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.main-navigation ul.nav-menu li a {
  border-bottom: 1px solid #d37105;
  color: #fff;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2.3;
  overflow: hidden;
  padding: 10px 4rem 10px 2rem;
  text-align: left;
  text-overflow: ellipsis;
  transform: translateZ(0);
  white-space: nowrap;
}
.main-navigation ul.nav-menu li .dropdown-toggle {
  color: #fff;
  height: 58px;
  line-height: 58px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 48px;
}
.main-navigation ul.nav-menu li.current-menu-ancestor > ul:not(.sub-menu-closed), .main-navigation ul.nav-menu li.current_page_ancestor > ul:not(.sub-menu-closed) {
  display: block;
}
.main-navigation ul.nav-menu li:hover > a, .main-navigation ul.nav-menu li:focus > a {
  background-color: #d37105;
  text-decoration: none;
}
.main-navigation ul.nav-menu li:not(.menu-item-has-children) > a {
  padding-right: 4rem;
}
.main-navigation ul.nav-menu li:not(.menu-item-has-children) > a > .dropdown-toggle {
  display: none;
}
.main-navigation ul.sub-menu {
  border-left: 10px solid #d37105;
  display: none;
  margin: 0;
}
.main-navigation ul.sub-menu li {
  border-top: 0;
  margin-right: 0;
}
.main-navigation ul.sub-menu li a {
  text-align: left;
}
.main-navigation ul.sub-menu li ul li {
  margin: 0;
}
.main-navigation ul.sub-menu li:last-child {
  border-bottom: 0;
}
.main-navigation ul.sub-menu.sub-menu-open {
  display: block;
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
  background-color: #d37105;
}
.main-navigation.nav-open {
  height: auto;
  display: block;
  overflow: auto;
  width: 256px;
}
.main-navigation.nav-open .current-menu-ancestor > a > .dropdown-toggle:not(.closed):not(.open),
.main-navigation.nav-open .current_page_ancestor > a > .dropdown-toggle:not(.closed):not(.open) {
  -webkit-transform: none;
  transform: none;
}
@media only screen and (min-width: 840px) {
  .main-navigation {
    height: 0;
  }
}

.nav-before + .main-navigation,
.nav-before + #mobile-menu-toggle {
  order: 1;
}
@media only screen and (min-width: 840px) {
  .nav-before + .main-navigation,
.nav-before + #mobile-menu-toggle {
    order: 0;
  }
}

.nav-flex .main-navigation,
.nav-flex #mobile-menu-toggle {
  order: 1;
}
@media only screen and (min-width: 840px) {
  .nav-flex .main-navigation,
.nav-flex #mobile-menu-toggle {
    order: 0;
  }
}

.admin-bar .main-navigation {
  top: 46px;
}

.fixed #mobile-menu-toggle {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
.fixed#masthead {
  position: relative;
  z-index: 999;
}

@media only screen and (min-width: 840px) {
  #masthead.nav-fixed-wrapper .secondary-toggle {
    flex: 0 1 105px;
  }
}
.nav-fixed-wrapper.fixed .nav-wrapper {
  margin-top: 52px;
  position: static;
}
@media only screen and (min-width: 840px) {
  .nav-fixed-wrapper.fixed .nav-wrapper {
    margin-top: 0;
  }
  .nav-fixed-wrapper.fixed .nav-wrapper #mobile-menu-toggle {
    position: static;
  }
}

.nav-open .fixed #mobile-menu-toggle {
  left: 256px;
}

.admin-bar .fixed #mobile-menu-toggle,
.admin-bar .fixed .nav-fixed-wrapper .nav-wrapper {
  top: 46px;
}
@media only screen and (min-width: 783px) {
  .admin-bar .fixed #mobile-menu-toggle,
.admin-bar .fixed .nav-fixed-wrapper .nav-wrapper {
    top: 32px;
  }
}
.admin-bar .fixed .nav-fixed-wrapper .nav-wrapper {
  margin-top: 0;
}

#nav-blocker {
  bottom: 0;
  left: 100%;
  position: fixed;
  right: 0;
  top: 0;
  transition: left 0.3s ease-in-out;
  z-index: 99999;
}

.nav-open #nav-blocker {
  left: 256px;
}

.widget_nav_menu ul.menu li {
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.widget_nav_menu ul.menu li a {
  display: block;
  margin-bottom: 7px;
  padding: 10px;
  text-align: center;
  transition: all 0.25s linear;
}
.widget_nav_menu ul.menu li .sub-menu {
  width: 90%;
  margin-left: 10%;
}
.widget_nav_menu ul.menu li.current-menu-item, .widget_nav_menu ul.menu li.current-menu-ancestor, .widget_nav_menu ul.menu li.current_page_item, .widget_nav_menu ul.menu li.current_page_ancestor {
  background-color: #d37105;
}
.widget_nav_menu ul.menu li:hover, .widget_nav_menu ul.menu li:focus {
  background-color: rgba(0, 0, 0, 0.2);
}
.widget_nav_menu ul.menu li:hover > a, .widget_nav_menu ul.menu li:focus > a {
  color: #fff;
  text-decoration: none;
}
.widget_nav_menu ul.menu li:hover .sub-menu li a, .widget_nav_menu ul.menu li:focus .sub-menu li a {
  opacity: 0.5;
}
.widget_nav_menu ul.menu li:hover .sub-menu li:hover a, .widget_nav_menu ul.menu li:focus .sub-menu li:hover a {
  opacity: 1;
}

.widget_nav_menu ul.sub-menu {
  margin-top: 0;
}

.main-navigation-widgets {
  order: -1;
}
@media only screen and (min-width: 840px) {
  .main-navigation-widgets {
    order: 0;
  }
}
.main-navigation-widgets .widget_search {
  height: 100%;
}
.main-navigation-widgets .widget_search > form {
  align-items: center;
  display: -ms-flex;
  display: flex;
  height: 100%;
}
.main-navigation-widgets .widget_search label {
  padding: 1rem 2rem;
}
.main-navigation-widgets .widget_search input[type=search] {
  margin: 0;
  padding: 0.5rem 0.5rem 0.25rem;
}

.posts-navigation {
  margin-block-start: 2.4rem;
}
.posts-navigation .page-numbers {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.posts-navigation .page-number {
  border: 2px solid currentColor;
  border-right-width: 0;
  color: currentColor;
  display: block;
  padding: 0.15rem 0.75rem;
  text-decoration: none;
}
.posts-navigation .page-number:not(.dots):focus, .posts-navigation .page-number:not(.dots):hover, .posts-navigation .page-number.current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.posts-navigation .page-number.dots {
  color: currentColor;
}
.posts-navigation .page-number-item {
  margin: 0;
}
.posts-navigation .page-number-item:first-child .page-number {
  border-radius: 3px 0 0 3px;
}
.posts-navigation .page-number-item:last-child .page-number {
  border-radius: 0 3px 3px 0;
  border-right-width: 2px;
}
.posts-navigation .page-number-item:not(.current):not(.first):not(.last):not(.next):not(.prev) {
  display: none;
}
@media (min-width: 500px) {
  .posts-navigation .page-number-item:not(.current):not(.first):not(.last):not(.next):not(.prev) {
    display: block;
  }
}

/*--------------------------------------------------------------
7.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
  background-color: #f1f1f1;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #333;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
8.0 Alignments
--------------------------------------------------------------*/
.align-center {
  text-align: center;
}

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

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

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
9.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-footer:before,
.site-footer:after,
.widget::before,
.widget::after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-footer:after,
.widget::after {
  clear: both;
}

/*--------------------------------------------------------------
10.0 Header
--------------------------------------------------------------*/
#masthead {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: stretch;
}
#masthead > .secondary-toggle {
  background-color: #f28d00;
}
#masthead .container {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
#masthead .main-navigation .container {
  padding-left: 0;
  padding-right: 0;
}
#masthead .header-widget {
  display: none;
}
.rh-imprint #masthead .header-widget > *:not(.rh-slider), .privacy-policy #masthead .header-widget > *:not(.rh-slider) {
  display: none !important;
}
#masthead > .nav-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 840px) {
  #masthead > .nav-wrapper {
    align-items: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 auto;
    max-width: 1095px;
  }
  #masthead > .nav-wrapper > .site-header,
#masthead > .nav-wrapper > .main-navigation {
    flex: 1 1 auto;
    width: auto;
  }
  #masthead > .nav-wrapper > .site-header.nav-open,
#masthead > .nav-wrapper > .main-navigation.nav-open {
    height: auto;
    width: 256px;
  }
  .nav-center #masthead > .nav-wrapper > .main-navigation {
    flex-grow: 1000;
  }
  #masthead > .nav-wrapper > .secondary-toggle {
    background-color: #f28d00;
  }
  #masthead.nav-fixed-wrapper, #masthead.fixed.fixed-wrapper {
    left: 0;
    margin-top: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 110;
  }
  #masthead .secondary-toggle {
    flex: 0 1;
    margin-right: 4rem;
  }
  #masthead .fixed-wrapper {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 110;
  }
}

@media only screen and (min-width: 783px) {
  .admin-bar #masthead.fixed-wrapper, .admin-bar #masthead.nav-fixed-wrapper {
    top: 32px;
  }
}
.admin-bar #masthead.fixed-wrapper.fixed, .admin-bar #masthead.nav-fixed-wrapper.fixed {
  padding-top: 52px;
}
@media only screen and (min-width: 783px) {
  .admin-bar #masthead.fixed-wrapper.fixed, .admin-bar #masthead.nav-fixed-wrapper.fixed {
    padding-top: 0;
  }
}

.site-header {
  flex-grow: 1;
}

.custom-logo {
  margin: 15px 0 5px;
}

.logo-right .site-branding {
  text-align: right;
}

.logo-center .site-branding {
  text-align: center;
}

.site-header.nav-before,
.nav-wrapper .site-header {
  order: 2;
}

@media only screen and (min-width: 840px) {
  .nav-wrapper .site-header {
    order: 0;
  }
  .logo-right .nav-wrapper .site-header {
    order: 2;
  }
}
.site-title {
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 0;
}

.secondary-toggle {
  display: block;
}

.main-navigation {
  background-color: #f28d00;
}

.keyvisual {
  background-position: center top;
  background-size: cover;
}
.keyvisual > .wp-caption-text {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2px 0 0 0;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.75;
  padding: 0.3rem 0.8rem;
  position: absolute;
  right: 0;
  text-align: right;
  z-index: 50;
}
.keyvisual .container {
  position: relative;
  height: 100%;
  padding: 0;
}
.keyvisual.container {
  padding: 0;
}

.keyvisual-widgets {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.rh-imprint .keyvisual-widgets > *:not(.rh-slider), .privacy-policy .keyvisual-widgets > *:not(.rh-slider) {
  display: none !important;
}
.keyvisual-widgets .widget {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}
.keyvisual-widgets .rh-slider {
  position: static;
  text-align: left;
}
.keyvisual-widgets .widget-title {
  margin: 0 0 0.5em 0;
}
.keyvisual-widgets .widget_text {
  padding: 2rem 2.5rem;
  background-color: #f28d00;
  line-height: 1;
}
.keyvisual-widgets .icon, .keyvisual-widgets .lightBoxLink, .keyvisual-widgets .lightBoxIcon {
  margin: 0 0.25em 0 0;
  vertical-align: -0.15em;
  font-size: 1.3em;
}

.sidebar-left .keyvisual-widgets .widget_text {
  left: 0;
  right: 0;
}
@media only screen and (min-width: 840px) {
  .sidebar-left .keyvisual-widgets .widget_text {
    right: auto;
  }
}

@media only screen and (min-width: 840px) {
  .mono .keyvisual-widgets .widget_text {
    width: calc(275px + 4rem);
  }
  .mono .keyvisual-widgets .widget_text {
    right: 4rem;
  }
  .mono.sidebar-left .keyvisual-widgets .widget_text {
    left: 4rem;
  }
}
@media only screen and (min-width: 1135px) {
  .mono .keyvisual-widgets .widget_text {
    width: calc(300px);
  }
}
@media only screen and (min-width: 840px) {
  #masthead .header-widget {
    display: block;
    font-size: 18px;
    line-height: 1.27;
    padding: 25px 0;
    text-align: right;
    color: rgb(242, 135, 34);
  }
  .site-header {
    display: inline-flex;
  }
  .site-branding {
    flex-grow: 1;
  }
  .keyvisual-widgets .widget {
    text-align: left;
  }
  .keyvisual-widgets .widget_text {
    width: calc(275px + 8rem);
    left: auto;
    padding: 3rem 4rem;
  }
}
@media only screen and (min-width: 1135px) {
  .keyvisual-widgets .widget_text {
    width: calc(300px + 8rem);
  }
}
/*--------------------------------------------------------------
10.1 Custom Widgets
--------------------------------------------------------------*/
.keyvisual-widgets .widget_claim {
  left: 2.5rem;
  top: 34px;
  background-color: rgba(0, 0, 0, 0);
  text-shadow: 1px 1px 1px #000;
  font-size: 2.5rem;
  line-height: 1;
  z-index: 4;
}

.keyvisual-widgets .widget_badge {
  padding: 3rem 4rem;
  width: 142px;
  height: 142px;
  border-radius: 100%;
  top: 1rem;
  right: 1rem;
  left: auto;
  background-color: #bf6f00;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 5;
}

.keyvisual-widgets .widget_badge .widget-title {
  font-size: 1.4rem;
  line-height: 1;
}

@media only screen and (min-width: 840px) {
  .keyvisual-widgets .widget_badge {
    right: 2.5rem;
  }
  .keyvisual-widgets .widget_claim {
    line-height: 1.4em;
  }
}
/*--------------------------------------------------------------
11.0 Content
--------------------------------------------------------------*/
body.nav-open {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
body.nav-open > .site {
  width: 100%;
}
body.nav-open.admin-bar > .site {
  margin-top: 46px !important;
}
@media only screen and (min-width: 840px) {
  body.nav-open {
    position: static;
  }
  body.nav-open.admin-bar > .site:not(.fixed) {
    margin-top: 0 !important;
  }
}

.site {
  height: 100%;
  margin: 0;
  transition: margin-left 0.3s ease;
  width: 100%;
}
.site.nav-open {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  margin-left: 256px;
}

.container {
  max-width: 1095px;
  margin: 0 auto;
  padding: 2rem;
}

.page-template-page-full .site-content {
  padding: 2rem 0;
}
.page-template-page-full .site-content .row-content-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media only screen and (min-width: 840px) {
  .container {
    padding: 4rem;
  }
  body.mono .site-info.container,
body.mono .site-header.container, body.mono:not(.nav-open) #masthead .main-navigation .container,
body.mono .keyvisual .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  body.mono #masthead .main-navigation .container {
    transition: padding-left 0s linear 1s, padding-right 0s linear 1s;
  }
  body.mono.nav-open #masthead .main-navigation .container {
    transition: none;
  }
  .page-template-page-full .site-info.container {
    padding: 1em 4rem;
  }
  .page-template-page-full .site-content {
    max-width: 100%;
    padding: 4rem 0;
  }
  .page-template-page-full .site-content .row-content-inner {
    max-width: 1095px;
    margin: 0 auto;
    padding: 0 4rem;
  }
  #content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: stretch;
    justify-content: space-between;
    align-items: flex-start;
  }
  #primary {
    flex: 1;
    order: 2;
    width: calc(100% - 275px - 4rem);
  }
  .page-template-page-blank #primary {
    width: 100%;
  }
}
/*--------------------------------------------------------------
11.01 Posts and pages
--------------------------------------------------------------*/
.blog article {
  padding-bottom: 40px;
}

.sticky {
  display: block;
}

.hentry {
  margin: 0;
}

.entry-meta,
.cat-links,
.entry-footer,
.comments-link {
  margin-bottom: 1.5rem;
}

.byline,
.updated:not(.published) {
  display: none;
}

.attachment-post-thumbnail {
  width: 100%;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

nav.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
nav.post-navigation .nav-previous,
nav.post-navigation .nav-next {
  width: 25%;
  max-width: calc(50% - 15px);
  flex: 1 1 25%;
}
nav.post-navigation .nav-next a {
  text-align: right;
}
nav.post-navigation .nav-previous a {
  text-align: left;
}
nav.post-navigation a {
  border: none;
  background-color: #f28d00;
  color: #fff;
  cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: none; /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 14px;
  font-size: 1.4rem;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-border-radius: 0;
  border-radius: 0;
  font-weight: normal;
  padding: 10px 15px;
  display: block;
  -webkit-transition: all 0.75s linear;
  -moz-transition: all 0.75s linear;
  -ms-transition: all 0.75s linear;
  -o-transition: all 0.75s linear;
  transition: all 0.75s linear;
}
nav.post-navigation .end-of-road {
  height: 50px;
  line-height: 50px;
  background-color: #ccc;
  display: block;
  text-align: center;
  color: #fff;
}
nav.post-navigation .end-of-road.next-link {
  float: left;
}
nav.post-navigation a.btn:hover {
  cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
  color: #fff;
  background-color: #bf6f00;
}

.entry-footer {
  padding: 0.8em 0;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}
.entry-footer span {
  display: block;
}
.entry-footer span.vcard {
  display: inline;
}

/*--------------------------------------------------------------
11.02 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
11.03 Comments
--------------------------------------------------------------*/
.comment-list {
  margin: 5em 0;
  list-style: none;
}

.children {
  list-style: none;
}

.comments-area {
  margin-top: 3.5em;
  border-top: 5px solid #2c3e50;
}

.comments-title {
  text-align: right;
  margin-top: 0.5em;
}

.comment-meta {
  background-color: #eaeaea;
  border-top: 1px solid #eee;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
}
.comment-meta div {
  padding: 8px;
  height: 37px;
  line-height: 21px;
}

.comment-metadata {
  background-color: #f4f4f4;
  border-top: 1px solid #ddd;
  padding: 8px;
  height: 37px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 21px;
  color: #2c3e58;
}
.comment-metadata .comment-controls {
  text-transform: uppercase;
  float: right;
  font-size: 10px;
  font-size: 1rem;
  color: #bbb;
}
.comment-metadata .comment-controls a {
  color: #bbb;
}

.comment-metadata .reply {
  display: inline-block;
}

.comment-main {
  background-color: #fbfbfb;
  padding: 8px;
}
.comment-main div {
  padding: 8px;
}

.bypostauthor .comment-main {
  background-color: #ffffe0;
}

.comment-author {
  float: left;
  text-align: center;
  width: 115px;
}

.comment-content {
  margin-left: 115px;
}
.comment-content a {
  word-wrap: break-word;
}

.nav-links a:hover {
  text-decoration: none;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 3.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: right;
  text-align: right;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: left;
}

/*--------------------------------------------------------------
11.04 Modules
--------------------------------------------------------------*/
/*--------------------------------------------------------------
11.05 CTA
--------------------------------------------------------------*/
.cta {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.8;
  border: 5px solid #f28d00;
  padding: 1em;
  margin-bottom: 2.4rem;
}
.cta.button {
  padding: 0;
}
.cta.button a {
  display: block;
  padding: 1em;
}

.cta p {
  margin-bottom: 0;
}

a.proxy-number {
  color: currentColor;
}
a.proxy-number:hover {
  color: currentColor;
}

/*--------------------------------------------------------------
11.06 Tab
--------------------------------------------------------------*/
.tab-container {
  margin-bottom: 2.4rem;
}
.tab-container .tab-menu {
  font-size: 0;
  margin: 0 0 -3px;
  padding: 0;
  position: relative;
}
.tab-container .tab-menu > li {
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 3px;
  font-size: 16px;
  display: block;
  margin: 0 0 -3px 0;
  border-color: #eee;
}
.tab-container .tab-menu > li::before {
  display: none;
}
.tab-container .tab-menu > li > a {
  display: block;
  padding: 0.6rem 2rem 0.4rem;
  outline: none;
  text-decoration: none;
  color: #333;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-container .tab-menu > li.tab-active {
  background-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.tab-container .tab-menu > li:hover {
  background-color: #fafafa;
}
.tab-container .tab-content {
  background-color: #f8f8f8;
  border: 3px solid #eee;
  display: none;
}
.tab-container .tab-content.tab-visible {
  display: block;
}
.tab-container .tab-inner {
  padding: 2rem;
}

@media only screen and (min-width: 840px) {
  .tab-container .tab-menu > li {
    display: inline-block;
    margin: 0 -3px -3px 0;
  }
}
/*--------------------------------------------------------------
11.07 Accordion
--------------------------------------------------------------*/
.accordion {
  background-color: #f8f8f8;
  border: 3px solid #eee;
  margin-bottom: 2.4rem;
}
.accordion + .accordion {
  margin-top: -2.6rem;
}
.accordion .accordion-title {
  padding: 10px;
}
.accordion .accordion-title h3 {
  font-size: 2rem;
  margin: 0;
}
.accordion .accordion-title h3 a {
  display: flex;
}
.accordion .accordion-title h3 a .icon, .accordion .accordion-title h3 a .lightBoxLink, .accordion .accordion-title h3 a .lightBoxIcon {
  align-self: center;
  margin-right: 5px;
  transition: transform 0.2s;
}
.accordion .accordion-title h3 a:hover, .accordion .accordion-title h3 a:focus {
  outline: none;
  text-decoration: none;
}
.accordion .accordion-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, opacity 0.3s;
}
.accordion .accordion-content {
  padding: 10px;
}
.accordion .accordion-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
11.08 Slider
--------------------------------------------------------------*/
.unslider {
  overflow: auto;
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 2.4rem;
}
.unslider img {
  display: block;
}
.unslider .slider-item {
  position: relative;
}
.unslider-wrap {
  position: relative;
}
.unslider-wrap.unslider-carousel > li {
  float: left;
}
.unslider-wrap.unslider-carousel > li::before {
  display: none;
}
.unslider-vertical > ul {
  height: 100%;
}
.unslider-vertical li {
  float: none;
  width: 100%;
}
.unslider-fade {
  position: relative;
}
.unslider-fade .unslider-wrap li {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 8;
}
.unslider-fade .unslider-wrap li.unslider-active {
  z-index: 10;
}
.unslider ul,
.unslider ol,
.unslider ul li {
  list-style: none;
  /* Reset any weird spacing */
  margin: 0;
  padding: 0;
  border: none;
}
.unslider ul::before,
.unslider ol::before,
.unslider ul li::before {
  content: none;
}
.unslider .slider:not(.rh-slider-hidden) {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.unslider-arrow {
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 0 !important;
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 40px;
  left: 20px;
  line-height: 40px;
  margin-top: -20px;
  opacity: 0.75;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 40px;
  z-index: 20;
}
.unslider-arrow.next {
  left: auto;
  right: 20px;
}
.unslider-arrow.next::before {
  left: 2px;
  transform: rotate(90deg);
}
.unslider-arrow.prev::before {
  right: 2px;
  transform: rotate(-90deg);
}
.unslider-arrow:hover {
  opacity: 1;
  text-decoration: none;
}
.unslider-arrow::before {
  content: "\e914";
  display: block;
  font-size: 40px;
  position: relative;
}

.unslider-nav {
  bottom: 15px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 10;
}
.unslider-nav ol {
  list-style: none;
  text-align: center;
}
.unslider-nav ol li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background: #f28d00;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999em;
  cursor: pointer;
}
.unslider-nav ol li.unslider-active {
  background: #d37105;
  cursor: default;
}

.rh-slider-hidden {
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}
.rh-slider-hidden > li {
  float: left;
}
.rh-slider-hidden > li:not(:first-child) {
  display: none;
}

.rh-slider .slider:not(.unslider-wrap) .slider-item:not(:first-child) {
  display: none;
}

.rh-slider-text {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.rh-slider-text > a,
.rh-slider-text > div {
  box-sizing: border-box;
  color: #fff;
  display: block;
  height: 100%;
  padding: 20px 30px;
  width: 100%;
}
.rh-slider-text > a:hover {
  color: #fff;
  text-decoration: none;
}

.keyvisual .content-width-slider .unslider {
  bottom: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.keyvisual .content-width-slider .unslider img {
  width: 100%;
}

/*--------------------------------------------------------------
11.09 Icons
--------------------------------------------------------------*/
.icon, .lightBoxLink, .lightBoxIcon {
  /* use !important to prevent issues with browser extensions that change fonts */
  display: inline-block;
  font-family: "icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon.top, .top.lightBoxLink, .top.lightBoxIcon {
  /* nothing here */
}

.icon.right, .right.lightBoxLink, .right.lightBoxIcon {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon.bottom, .bottom.lightBoxLink, .bottom.lightBoxIcon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon.left, .left.lightBoxLink, .left.lightBoxIcon {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.icon.circle, .circle.lightBoxLink, .circle.lightBoxIcon {
  background: #333;
  border-radius: 100%;
  padding: 0.1071428571em 0.1428571429em 0.1785714286em 0.1428571429em;
}

.icon.square, .square.lightBoxLink, .square.lightBoxIcon {
  background: #333;
  border-radius: 0.2142857143em;
  padding: 0.1071428571em 0.1428571429em 0.1785714286em 0.1428571429em;
}

.icon.search::before, .search.lightBoxLink::before, .search.lightBoxIcon::before {
  content: "\e900";
}

.icon.kununu::before, .kununu.lightBoxLink::before, .kununu.lightBoxIcon::before {
  content: "\e901";
}

.icon.star::before, .star.lightBoxLink::before, .star.lightBoxIcon::before {
  content: "\e902";
}

.icon.map-marker::before, .map-marker.lightBoxLink::before, .map-marker.lightBoxIcon::before {
  content: "\e917";
}

.icon.clock-o::before, .clock-o.lightBoxLink::before, .clock-o.lightBoxIcon::before {
  content: "\e918";
}

.icon.youtube-play::before, .youtube-play.lightBoxLink::before, .youtube-play.lightBoxIcon::before {
  content: "\e903";
}

.icon.youtube::before, .youtube.lightBoxLink::before, .youtube.lightBoxIcon::before {
  content: "\e904";
}

.icon.xing::before, .xing.lightBoxLink::before, .xing.lightBoxIcon::before {
  content: "\e905";
}

.icon.upload::before, .upload.lightBoxLink::before, .upload.lightBoxIcon::before {
  content: "\e906";
}

.icon.twitter::before, .twitter.lightBoxLink::before, .twitter.lightBoxIcon::before {
  content: "\e907";
}

.icon.phone::before, .phone.lightBoxLink::before, .phone.lightBoxIcon::before {
  content: "\e908";
}

.icon.mail::before, .mail.lightBoxLink::before, .mail.lightBoxIcon::before {
  content: "\e909";
}

.icon.instagram::before, .instagram.lightBoxLink::before, .instagram.lightBoxIcon::before {
  content: "\e90a";
}

.icon.google-plus::before, .google-plus.lightBoxLink::before, .google-plus.lightBoxIcon::before {
  content: "\e90b";
}

.icon.file-text::before, .file-text.lightBoxLink::before, .file-text.lightBoxIcon::before {
  content: "\e90c";
}

.icon.facebook::before, .facebook.lightBoxLink::before, .facebook.lightBoxIcon::before {
  content: "\e90d";
}

.icon.download::before, .download.lightBoxLink::before, .download.lightBoxIcon::before {
  content: "\e90e";
}

.icon.close::before, .close.lightBoxLink::before, .close.lightBoxIcon::before {
  content: "\e90f";
}

.icon.chevron::before, .chevron.lightBoxLink::before, .chevron.lightBoxIcon::before {
  content: "\e910";
}

.icon.caret::before, .caret.lightBoxLink::before, .caret.lightBoxIcon::before {
  content: "\e911";
}

.icon.bars::before, .bars.lightBoxLink::before, .bars.lightBoxIcon::before {
  content: "\e912";
}

.icon.arrow::before, .arrow.lightBoxLink::before, .arrow.lightBoxIcon::before {
  content: "\e913";
}

.icon.angle::before, .angle.lightBoxLink::before, .angle.lightBoxIcon::before {
  content: "\e914";
}

.icon.checkmark::before, .checkmark.lightBoxLink::before, .checkmark.lightBoxIcon::before {
  content: "\e915";
}

.icon.pencil::before, .pencil.lightBoxLink::before, .pencil.lightBoxIcon::before {
  content: "\e916";
}

/*--------------------------------------------------------------
11.10 Embed
--------------------------------------------------------------*/
.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-bottom: 2.4rem;
}
.embed iframe,
.embed object,
.embed embed,
.embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-google-maps .embed-privacy-overlay {
  background: url(assets/images/gmap.svg) scroll no-repeat center center/cover;
  min-height: 250px;
  position: relative;
}
.embed-google-maps .embed-privacy-overlay::after {
  background-color: rgba(0, 0, 0, 0.6);
  bottom: -1%;
  content: "";
  display: block;
  left: -1%;
  position: absolute;
  right: -1%;
  top: -1%;
  transition: background-color 0.25s ease-in-out;
}
.embed-google-maps .embed-privacy-overlay:hover::after {
  background-color: rgba(0, 0, 0, 0.7);
}

.embed-privacy-container {
  overflow: hidden;
}

.embed-privacy-content {
  line-height: 0;
}

.embed-privacy-inner {
  position: relative;
  z-index: 1;
}

.embed-privacy-label > input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -ms-appearance: checkbox;
  appearance: auto;
  display: inline;
  font-size: inherit;
  height: auto;
  opacity: 1;
  width: auto;
}

.embed-privacy-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.footer-widgets .embed-privacy-container {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
11.11 Lightbox
--------------------------------------------------------------*/
.lightBoxOverlay {
  height: 0;
  overflow: hidden;
  transition: background-color 0.2s ease-in-out;
  width: 0;
  -webkit-overflow-scrolling: touch;
}

.lightBoxOverlay.visible {
  background-color: rgba(0, 0, 0, 0.85);
  bottom: 0;
  height: auto;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: auto;
  z-index: 1000;
}

.lightBoxBox {
  height: 100%;
  overflow: auto;
}

.lightBoxContainer {
  background-color: #fff;
  box-shadow: 0 0 30px #000;
  display: none;
  left: 30px;
  padding: 3px;
  position: absolute;
  right: 30px;
  transform: translate(0, -50%);
  top: 50%;
}
@media only screen and (min-width: 840px) {
  .lightBoxContainer {
    left: auto;
    max-width: 100%;
    right: auto;
    transform: translate(0, -50%);
  }
  .lightBoxContainer .iframe-content {
    min-height: 400px;
    min-width: 700px;
  }
}
.lightBoxContainer iframe {
  border: 0;
  width: 100%;
}
.lightBoxContainer.too-high {
  bottom: 10px;
  transform: translate(0, 0);
  top: 30px;
}
.admin-bar .lightBoxContainer.too-high {
  top: 81px;
}
@media only screen and (min-width: 783px) {
  .admin-bar .lightBoxContainer.too-high {
    top: 67px;
  }
}
.lightBoxContainer.too-high.has-navigation {
  bottom: 60px;
}
.lightBoxContainer.too-wide {
  left: 30px;
  right: 30px;
}

.visible .lightBoxContainer.visible {
  display: block;
}
.visible .lightBoxContainer.visible + .lightBoxLoading {
  display: none;
}
.visible .lightBoxLoading {
  display: block;
}

.lightBoxIcon {
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: block;
  font-size: 21px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: -30px;
  text-align: center;
  top: -30px;
  width: 30px;
  z-index: 10;
}
.lightBoxIcon::before {
  content: "\e90f";
}
.lightBoxIcon:hover {
  color: #fff;
}

.lightBoxLoading {
  animation: spin 1s infinite linear;
  border: 0.3rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  height: 24px;
  left: 50%;
  margin: -12px 0 0 -12px;
  position: fixed;
  top: 50%;
  width: 24px;
}

.lightBoxContainer img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.lightBoxContent {
  background-color: #fff;
  height: 100%;
  width: 100%;
}

.lightBoxNavigation {
  bottom: -50px;
  display: flex;
  justify-content: space-between;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  transform: translateX(-50%);
}
.lightBoxNavigation > li {
  display: inline-block;
}

.lightBoxLink {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  height: 50px;
  width: 50px;
}
.lightBoxLink.next, .lightBoxLink.prev {
  font-size: 25px;
  line-height: 50px;
  text-align: center;
}
.lightBoxLink.next::before, .lightBoxLink.prev::before {
  content: "\e910";
}
.lightBoxLink.next {
  transform: rotate(90deg);
}
.lightBoxLink.prev {
  transform: rotate(270deg);
}
.lightBoxLink:hover {
  color: #fff;
  text-decoration: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
11.12 Announcement
--------------------------------------------------------------*/
.announcement {
  background-color: rgba(0, 0, 0, 0.05);
  margin-bottom: 2em;
  padding: 3.5rem 4rem;
}
.announcement h2:first-child,
.announcement p:first-child,
.announcement div:first-child {
  margin-top: 0;
}
.announcement p:last-child,
.announcement :last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
11.13 Blog
--------------------------------------------------------------*/
body.blog .postvisual,
body.blog .keyvisual,
body.archive:not(.post-type-archive-jobs):not(.search) .postvisual,
body.archive:not(.post-type-archive-jobs):not(.search) .keyvisual,
body.author .postvisual,
body.author .keyvisual,
body.single .postvisual,
body.single .keyvisual {
  position: relative;
  overflow: hidden;
}
body.blog .postvisual .wp-caption-text,
body.blog .keyvisual .wp-caption-text,
body.archive:not(.post-type-archive-jobs):not(.search) .postvisual .wp-caption-text,
body.archive:not(.post-type-archive-jobs):not(.search) .keyvisual .wp-caption-text,
body.author .postvisual .wp-caption-text,
body.author .keyvisual .wp-caption-text,
body.single .postvisual .wp-caption-text,
body.single .keyvisual .wp-caption-text {
  font-size: 10px;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 50;
  padding: 0.3rem 0.8rem;
  opacity: 0.75;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  text-align: right;
  border-radius: 2px 0 0 0;
  line-height: 1.8;
}
body.blog .postvisual > a,
body.blog .keyvisual > a,
body.archive:not(.post-type-archive-jobs):not(.search) .postvisual > a,
body.archive:not(.post-type-archive-jobs):not(.search) .keyvisual > a,
body.author .postvisual > a,
body.author .keyvisual > a,
body.single .postvisual > a,
body.single .keyvisual > a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}
body.blog .postvisual > a > img,
body.blog .keyvisual > a > img,
body.archive:not(.post-type-archive-jobs):not(.search) .postvisual > a > img,
body.archive:not(.post-type-archive-jobs):not(.search) .keyvisual > a > img,
body.author .postvisual > a > img,
body.author .keyvisual > a > img,
body.single .postvisual > a > img,
body.single .keyvisual > a > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
body.blog .postvisual a,
body.blog .keyvisual a,
body.archive:not(.post-type-archive-jobs):not(.search) .postvisual a,
body.archive:not(.post-type-archive-jobs):not(.search) .keyvisual a,
body.author .postvisual a,
body.author .keyvisual a,
body.single .postvisual a,
body.single .keyvisual a {
  color: #fff;
}
body.blog .postvisual,
body.archive:not(.post-type-archive-jobs):not(.search) .postvisual,
body.author .postvisual,
body.single .postvisual {
  height: 250px;
}
@media only screen and (min-width: 840px) {
  body.blog:not(.single) article.show-post-thumbnail:not(.sticky),
body.archive:not(.post-type-archive-jobs):not(.search):not(.single) article.show-post-thumbnail:not(.sticky),
body.author:not(.single) article.show-post-thumbnail:not(.sticky),
body.single:not(.single) article.show-post-thumbnail:not(.sticky) {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
  }
  body.blog:not(.single) article.show-post-thumbnail:not(.sticky) .entry-wrapper,
body.archive:not(.post-type-archive-jobs):not(.search):not(.single) article.show-post-thumbnail:not(.sticky) .entry-wrapper,
body.author:not(.single) article.show-post-thumbnail:not(.sticky) .entry-wrapper,
body.single:not(.single) article.show-post-thumbnail:not(.sticky) .entry-wrapper {
    margin-left: 2.5%;
    flex: 1 0 66.66%;
  }
  body.blog:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual,
body.archive:not(.post-type-archive-jobs):not(.search):not(.single) article.show-post-thumbnail:not(.sticky) .postvisual,
body.author:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual,
body.single:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual {
    background-size: cover;
    flex: 0 1 auto;
    height: auto;
    line-height: 0;
    margin: 3.5rem 0 0 0;
  }
  body.blog:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a,
body.archive:not(.post-type-archive-jobs):not(.search):not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a,
body.author:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a,
body.single:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a {
    display: block;
    height: 100%;
    width: 100%;
  }
  body.blog:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a:hover,
body.archive:not(.post-type-archive-jobs):not(.search):not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a:hover,
body.author:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a:hover,
body.single:not(.single) article.show-post-thumbnail:not(.sticky) .postvisual > a:hover {
    text-decoration: none;
  }
}

/*--------------------------------------------------------------
11.11 Sidebar
--------------------------------------------------------------*/
#secondary {
  order: 3;
  flex: 1 100%;
}

@media only screen and (min-width: 840px) {
  .no-sidebar #main {
    margin: 0;
  }
  #secondary {
    margin-left: 4rem;
    overflow: hidden;
    width: 100%;
  }
  .sidebar-left #secondary {
    margin-left: 0;
    margin-right: 4rem;
    order: 1;
  }
  .site-footer {
    clear: both;
    width: 100%;
  }
}
@media only screen and (min-width: 840px) {
  #secondary {
    max-width: 275px;
  }
}
@media only screen and (min-width: 1135px) {
  #secondary {
    max-width: 300px;
  }
}
.textwidget > :last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
11.12 Widgets
--------------------------------------------------------------*/
#secondary .widget,
#secondary .rh-contact,
#secondary .rh-slider,
#secondary .rh-map,
#secondary .rh-plaintext {
  /* Make sure select elements fit in widgets */
  margin-bottom: 2.5em;
  padding-bottom: 2.5em;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
#secondary .widget select,
#secondary .rh-contact select,
#secondary .rh-slider select,
#secondary .rh-map select,
#secondary .rh-plaintext select {
  max-width: 100%;
}
#secondary .widget:last-child,
#secondary .rh-contact:last-child,
#secondary .rh-slider:last-child,
#secondary .rh-map:last-child,
#secondary .rh-plaintext:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#secondary .widget-title,
#secondary .rh-contact h2,
#secondary .rh-slider h2,
#secondary .rh-map h2 {
  margin: 0 0 1em 0;
}

/* Phonebox */
.phonebox a {
  color: currentColor;
}

/* Search widget */
.widget_search .search-submit {
  display: none;
}

.widget_nav_menu ul.menu li {
  display: block;
  margin-bottom: 12px;
}

.widget_nav_menu ul.sub-menu {
  margin-top: 12px;
}

@media only screen and (min-width: 1024px) {
  .widget_nav_menu ul.sub-menu {
    margin: 10px 0 12px 20px;
  }
}
/*--------------------------------------------------------------
11.13 404 Page
--------------------------------------------------------------*/
.error404 .site-main {
  margin: 0 auto;
}
.error404 .site-main .wp-block-search .wp-block-search__input {
  height: auto;
  margin: 0;
  width: auto;
}
.error404 .site-main .wp-block-search .wp-block-search__button {
  width: 20%;
}
.error404 .site-main .wp-block-search label {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap; /* added line */
  width: 1px;
}
.error404 .content-area {
  width: 100%;
}
.error404 .column h2 {
  font-size: 20vw;
  opacity: 0.22;
  margin: 0;
  line-height: 1;
}

@media only screen and (min-width: 840px) {
  .error404 .column h2 {
    font-size: 19vw;
    padding-right: 3vw;
  }
  .error404 .site-main .search-form input {
    display: inline-block;
  }
  .error404 .site-main .search-form .search-field {
    max-width: 60%;
  }
}
@media only screen and (min-width: 840px) {
  .error404 .row-content-inner {
    display: flex;
  }
  .error404 .column:first-child {
    align-items: center;
    border-right: 1px solid #666;
    display: flex;
  }
  .error404 .column:not(:first-child) {
    margin-left: 5%;
  }
}
@media only screen and (min-width: 1024px) {
  .error404 .column h2 {
    font-size: 22rem;
  }
}
/*--------------------------------------------------------------
11.13 Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-bottom: 2rem;
}

/*--------------------------------------------------------------
12.0 Footer
--------------------------------------------------------------*/
.site-footer {
  text-align: center;
}
@media only screen and (min-width: 840px) {
  .site-footer .widget {
    text-align: left;
  }
}

.footer-widgets {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-widgets .rh-contact,
.footer-widgets .rh-slider,
.footer-widgets .rh-map,
.footer-widgets .rh-plaintext,
.footer-widgets .widget {
  flex: 0 0 100%;
}
@media only screen and (min-width: 840px) {
  .footer-widgets .rh-contact,
.footer-widgets .rh-slider,
.footer-widgets .rh-map,
.footer-widgets .rh-plaintext,
.footer-widgets .widget {
    padding-right: 0.5em;
    flex: 1 1 48%;
  }
  .footer-widgets .rh-contact:nth-child(2n),
.footer-widgets .rh-slider:nth-child(2n),
.footer-widgets .rh-map:nth-child(2n),
.footer-widgets .rh-plaintext:nth-child(2n),
.footer-widgets .widget:nth-child(2n) {
    padding-left: 0.5em;
    padding-right: 0;
  }
  .footer-widgets .rh-contact:nth-child(2n-1):last-child,
.footer-widgets .rh-slider:nth-child(2n-1):last-child,
.footer-widgets .rh-map:nth-child(2n-1):last-child,
.footer-widgets .rh-plaintext:nth-child(2n-1):last-child,
.footer-widgets .widget:nth-child(2n-1):last-child {
    padding-right: 0;
  }
}

.footer-widgets .widget:last-child {
  margin-right: 0;
}

.site-info {
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: stretch;
}

.footer-credits {
  flex: 1 0 100%;
}
@media only screen and (min-width: 600px) {
  .footer-credits {
    flex: 1 1 auto;
    margin-right: 2rem;
  }
}
.footer-credits > span {
  display: block;
}
@media only screen and (min-width: 600px) {
  .footer-credits > span {
    display: inline-block;
  }
  .footer-credits > span:not(:last-child):after {
    content: " // ";
  }
}
.footer-credits > span:not(:last-child) {
  margin-right: 5px;
}

.site-info {
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 13px;
  font-size: 1.3rem;
}

#master-footer {
  background-color: #222;
}
#master-footer .widget {
  margin-bottom: 2.5em;
}

#rh-branding {
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  #rh-branding {
    margin: 0;
  }
}

.footer-branding {
  fill: currentColor;
}

.icon.rh-1, .rh-1.lightBoxIcon, .rh-1.lightBoxLink,
.icon.rh-3,
.rh-3.lightBoxIcon,
.rh-3.lightBoxLink {
  color: #f28d00;
}

@media only screen and (min-width: 1024px) {
  .site-footer {
    text-align: left;
  }
  .site-info,
#master-footer {
    padding: 0;
  }
  .site-info {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  #master-footer {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}
.site-footer,
.site-footer a {
  text-decoration: none;
  color: #333;
}

/*--------------------------------------------------------------
12.1 Google Map (GMap)
--------------------------------------------------------------*/
.rh-map {
  color: #000;
  width: 100%;
}

.map {
  height: 250px;
  margin: 0;
  padding: 0;
  width: 100%;
}

/*--------------------------------------------------------------
13.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
13.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}
.wp-caption .wp-caption-text {
  color: #fff;
  padding: 0.8075em;
  background-color: #f8f8f8;
  text-align: left;
}

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

/*--------------------------------------------------------------
13.2 Galleries
--------------------------------------------------------------*/
.rh-gallery {
  margin-bottom: 2.4rem;
}
.rh-gallery.blur .gallery .gallery-thumbnail img {
  transform: translateZ(0);
}
.rh-gallery.blur .gallery .gallery-thumbnail-description {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateZ(0);
  transition: opacity 0.5s ease;
}
.rh-gallery.blur .gallery .with-description:hover img {
  -webkit-filter: blur(5px);
  -ms-filter: blur(5px);
  -o-filter: blur(5px);
  filter: blur(5px);
}
.rh-gallery.blur .gallery .with-description:hover .gallery-thumbnail-description {
  opacity: 1;
}
.rh-gallery.fade .gallery .gallery-thumbnail-description {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateZ(0);
  transition: opacity 0.5s ease;
}
.rh-gallery.fade .gallery .with-description:hover .gallery-thumbnail-description {
  opacity: 1;
}
.rh-gallery.flip .gallery .gallery-thumbnail > * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 0.5s;
}
.rh-gallery.flip .gallery .gallery-thumbnail > .gallery-image,
.rh-gallery.flip .gallery .gallery-thumbnail > .gallery-text {
  z-index: 2;
}
.rh-gallery.flip .gallery .gallery-thumbnail > :not(.gallery-image):not(.gallery-text) {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotateX(-180deg);
  z-index: 1;
}
.rh-gallery.flip .gallery .gallery-thumbnail-description {
  background-color: #000;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateZ(0);
}
.rh-gallery.flip .gallery .with-description:hover .gallery-thumbnail > div {
  transform: rotateX(180deg) translate(50%, 50%);
  transform-origin: 50% 0;
  z-index: 1;
}
.rh-gallery.flip .gallery .with-description:hover .gallery-thumbnail > a {
  transform: translateZ(0);
  z-index: 2;
}
.rh-gallery.move .gallery .gallery-thumbnail-description {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateZ(0);
  transition: top 0.3s ease;
}
.rh-gallery.move .gallery .with-description:hover .gallery-thumbnail-description {
  top: 0;
}

.gallery.rh-gallery-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: -0.5vw;
  padding: 0;
}
.gallery.rh-gallery-list a:hover {
  color: #fff;
}
.gallery.rh-gallery-list > .gallery-item {
  flex: 0 1 auto;
  margin-bottom: 0;
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail {
  line-height: 0;
  height: 12vw;
  margin: 0.5vw;
  position: relative;
  overflow: hidden;
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail > div:not(.gallery-thumbnail-description) {
  height: 100%;
  left: 0;
  position: absolute;
  transform: translate(50%, 50%);
  top: 0;
  width: 100%;
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail > div:not(.gallery-thumbnail-description) > a {
  display: block;
  height: 100%;
  width: 100%;
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail > div:not(.gallery-thumbnail-description).gallery-image img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
  width: auto;
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail > div:not(.gallery-thumbnail-description).gallery-text {
  padding: 10px;
  transform: translateZ(0);
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail > a {
  display: block;
  height: 100%;
  position: relative;
}
.gallery.rh-gallery-list > .gallery-item > .gallery-thumbnail.gallery-text-item {
  line-height: 1.8;
}
.gallery.rh-gallery-list > .gallery-item::before {
  content: none;
}
.gallery.rh-gallery-list .gallery-thumbnail-description {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: none;
  line-height: 1.2;
  padding: 10px;
}
@media only screen and (min-width: 840px) {
  .gallery.rh-gallery-list .gallery-thumbnail-description {
    display: block;
  }
}
.gallery.rh-gallery-list .gallery-thumbnail-description h3 {
  font-size: 20px;
  font-size: 2rem;
  margin: 0 0 10px;
}
.gallery.rh-gallery-list.gallery-columns-1 > .gallery-item {
  flex-basis: 100%;
}
.gallery.rh-gallery-list.gallery-columns-1 > .gallery-item > .gallery-thumbnail {
  height: 51vw;
}
@media only screen and (min-width: 1135px) {
  .gallery.rh-gallery-list.gallery-columns-1 > .gallery-item > .gallery-thumbnail {
    height: 400px;
  }
}
.gallery.rh-gallery-list.gallery-columns-2 > .gallery-item {
  flex-basis: 50%;
}
.gallery.rh-gallery-list.gallery-columns-2 > .gallery-item > .gallery-thumbnail {
  height: 27vw;
}
@media only screen and (min-width: 1135px) {
  .gallery.rh-gallery-list.gallery-columns-2 > .gallery-item > .gallery-thumbnail {
    height: 297px;
  }
}
.gallery.rh-gallery-list.gallery-columns-3 > .gallery-item {
  flex-basis: 100%;
}
.gallery.rh-gallery-list.gallery-columns-3 > .gallery-item > .gallery-thumbnail {
  height: 51vw;
}
@media only screen and (min-width: 840px) {
  .gallery.rh-gallery-list.gallery-columns-3 > .gallery-item > .gallery-thumbnail {
    height: 18vw;
  }
}
@media only screen and (min-width: 1135px) {
  .gallery.rh-gallery-list.gallery-columns-3 > .gallery-item > .gallery-thumbnail {
    height: 230px;
  }
}
@media only screen and (min-width: 840px) {
  .gallery.rh-gallery-list.gallery-columns-3 > .gallery-item {
    flex-basis: 33.333%;
  }
}
.gallery.rh-gallery-list.gallery-columns-4 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item {
  flex-basis: 50%;
}
.gallery.rh-gallery-list.gallery-columns-4 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item > .gallery-thumbnail {
  height: 31vw;
}
@media only screen and (min-width: 415px) {
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item {
    flex-basis: 33.333%;
  }
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item > .gallery-thumbnail {
    height: 17vw;
  }
}
@media only screen and (min-width: 840px) {
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item, .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item {
    flex-basis: 25%;
  }
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item > .gallery-thumbnail, .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item > .gallery-thumbnail {
    height: 15vw;
  }
}
@media only screen and (min-width: 415px) {
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item {
    flex-basis: 50%;
  }
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item > .gallery-thumbnail {
    height: 31vw;
  }
}
@media only screen and (min-width: 840px) {
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item {
    flex-basis: 25%;
  }
  .gallery.rh-gallery-list.gallery-columns-4 > .gallery-item > .gallery-thumbnail {
    height: 15vw;
  }
}
@media only screen and (min-width: 1135px) {
  .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item {
    flex-basis: 20%;
  }
  .gallery.rh-gallery-list.gallery-columns-5 > .gallery-item > .gallery-thumbnail {
    height: 156px;
  }
  .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item {
    flex-basis: 16.666%;
  }
  .gallery.rh-gallery-list.gallery-columns-6 > .gallery-item > .gallery-thumbnail {
    height: 136px;
  }
  .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item {
    flex-basis: 14.2857142857%;
  }
  .gallery.rh-gallery-list.gallery-columns-7 > .gallery-item > .gallery-thumbnail {
    height: 120px;
  }
  .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item {
    flex-basis: 12.5%;
  }
  .gallery.rh-gallery-list.gallery-columns-8 > .gallery-item > .gallery-thumbnail {
    height: 100px;
  }
  .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item {
    flex-basis: 11.1111%;
  }
  .gallery.rh-gallery-list.gallery-columns-9 > .gallery-item > .gallery-thumbnail {
    height: 86px;
  }
}

.full .rh-gallery {
  overflow: hidden;
}
.full .rh-gallery-list {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.rh-gallery-2 .rh-gallery-2-list {
  margin-bottom: calc(2.6rem - 10px);
  margin-left: 0;
}

.rh-gallery-2-list {
  line-height: 0;
}
.rh-gallery-2-list .gallery-image {
  text-align: center;
}
.rh-gallery-2-list .gallery-item {
  display: inline-block;
  margin-bottom: 10px;
}
.rh-gallery-2-list .gallery-item:last-child {
  margin-bottom: 10px;
}
.rh-gallery-2-list .gallery-thumbnail {
  overflow: hidden;
  position: relative;
}
.rh-gallery-2-list .gallery-thumbnail-description {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: none;
  line-height: 1.2;
  padding: 10px;
}
@media only screen and (min-width: 840px) {
  .rh-gallery-2-list .gallery-thumbnail-description {
    display: block;
  }
}
.rh-gallery-2-list .gallery-thumbnail-description h3 {
  font-size: 20px;
  font-size: 2rem;
  margin: 0 0 10px;
}
.rh-gallery-2-list .rh-gallery-text-item {
  line-height: 1.6;
}
.rh-gallery-2-list.gallery-grid {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.rh-gallery-2-list.gallery-grid .gallery-item {
  display: block;
}
.rh-gallery-2-list.gallery-grid .gallery-image {
  line-height: 0;
}
.rh-gallery-2-list.gallery-grid.gallery-columns-3, .rh-gallery-2-list.gallery-grid.gallery-columns-5, .rh-gallery-2-list.gallery-grid.gallery-columns-7, .rh-gallery-2-list.gallery-grid.gallery-columns-9 {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
.rh-gallery-2-list.gallery-grid.gallery-columns-2, .rh-gallery-2-list.gallery-grid.gallery-columns-4, .rh-gallery-2-list.gallery-grid.gallery-columns-6, .rh-gallery-2-list.gallery-grid.gallery-columns-8 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media only screen and (min-width: 415px) {
  .rh-gallery-2-list.gallery-grid.gallery-columns-3, .rh-gallery-2-list.gallery-grid.gallery-columns-6, .rh-gallery-2-list.gallery-grid.gallery-columns-9 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media only screen and (min-width: 840px) {
  .mono .rh-gallery-2-list.gallery-grid.gallery-columns-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .mono .rh-gallery-2-list.gallery-grid.gallery-columns-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .mono .rh-gallery-2-list.gallery-grid.gallery-columns-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
  .mono .rh-gallery-2-list.gallery-grid.gallery-columns-7 {
    -webkit-column-count: 7;
    -moz-column-count: 7;
    column-count: 7;
  }
  .mono .rh-gallery-2-list.gallery-grid.gallery-columns-8 {
    -webkit-column-count: 8;
    -moz-column-count: 8;
    column-count: 8;
  }
  .mono .rh-gallery-2-list.gallery-grid.gallery-columns-9 {
    -webkit-column-count: 9;
    -moz-column-count: 9;
    column-count: 9;
  }
}
@media only screen and (min-width: 1135px) {
  .rh-gallery-2-list.gallery-grid.gallery-columns-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .rh-gallery-2-list.gallery-grid.gallery-columns-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .rh-gallery-2-list.gallery-grid.gallery-columns-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
  .rh-gallery-2-list.gallery-grid.gallery-columns-7 {
    -webkit-column-count: 7;
    -moz-column-count: 7;
    column-count: 7;
  }
  .rh-gallery-2-list.gallery-grid.gallery-columns-8 {
    -webkit-column-count: 8;
    -moz-column-count: 8;
    column-count: 8;
  }
  .rh-gallery-2-list.gallery-grid.gallery-columns-9 {
    -webkit-column-count: 9;
    -moz-column-count: 9;
    column-count: 9;
  }
}
.rh-gallery-2-list.gallery-proportional, .rh-gallery-2-list.gallery-square {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
}
.rh-gallery-2-list.gallery-proportional > .gallery-item, .rh-gallery-2-list.gallery-square > .gallery-item {
  flex: 0 0 50%;
}
.rh-gallery-2-list.gallery-proportional .gallery-thumbnail, .rh-gallery-2-list.gallery-square .gallery-thumbnail {
  margin-right: 10px;
}
@media only screen and (min-width: 415px) {
  .rh-gallery-2-list.gallery-proportional.gallery-columns-3 > .gallery-item, .rh-gallery-2-list.gallery-proportional.gallery-columns-6 > .gallery-item, .rh-gallery-2-list.gallery-proportional.gallery-columns-9 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-3 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-6 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-9 > .gallery-item {
    flex: 0 0 33.333333%;
  }
}
@media only screen and (min-width: 840px) {
  .mono .rh-gallery-2-list.gallery-proportional.gallery-columns-4 > .gallery-item, .mono .rh-gallery-2-list.gallery-square.gallery-columns-4 > .gallery-item {
    flex: 0 0 25%;
  }
  .mono .rh-gallery-2-list.gallery-proportional.gallery-columns-5 > .gallery-item, .mono .rh-gallery-2-list.gallery-square.gallery-columns-5 > .gallery-item {
    flex: 0 0 20%;
  }
  .mono .rh-gallery-2-list.gallery-proportional.gallery-columns-6 > .gallery-item, .mono .rh-gallery-2-list.gallery-square.gallery-columns-6 > .gallery-item {
    flex: 0 0 16.666666%;
  }
  .mono .rh-gallery-2-list.gallery-proportional.gallery-columns-7 > .gallery-item, .mono .rh-gallery-2-list.gallery-square.gallery-columns-7 > .gallery-item {
    flex: 0 0 14.2857142857%;
  }
  .mono .rh-gallery-2-list.gallery-proportional.gallery-columns-8 > .gallery-item, .mono .rh-gallery-2-list.gallery-square.gallery-columns-8 > .gallery-item {
    flex: 0 0 12.5%;
  }
  .mono .rh-gallery-2-list.gallery-proportional.gallery-columns-9 > .gallery-item, .mono .rh-gallery-2-list.gallery-square.gallery-columns-9 > .gallery-item {
    flex: 0 0 11.111111%;
  }
}
@media only screen and (min-width: 1135px) {
  .rh-gallery-2-list.gallery-proportional.gallery-columns-4 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-4 > .gallery-item {
    flex: 0 0 25%;
  }
  .rh-gallery-2-list.gallery-proportional.gallery-columns-5 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-5 > .gallery-item {
    flex: 0 0 20%;
  }
  .rh-gallery-2-list.gallery-proportional.gallery-columns-6 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-6 > .gallery-item {
    flex: 0 0 16.666666%;
  }
  .rh-gallery-2-list.gallery-proportional.gallery-columns-7 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-7 > .gallery-item {
    flex: 0 0 14.2857142857%;
  }
  .rh-gallery-2-list.gallery-proportional.gallery-columns-8 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-8 > .gallery-item {
    flex: 0 0 12.5%;
  }
  .rh-gallery-2-list.gallery-proportional.gallery-columns-9 > .gallery-item, .rh-gallery-2-list.gallery-square.gallery-columns-9 > .gallery-item {
    flex: 0 0 11.111111%;
  }
}

/*--------------------------------------------------------------
13.3 Parallax
--------------------------------------------------------------*/
.row-content {
  position: relative;
  z-index: 2;
}
.row-content.parallax {
  z-index: 1;
}

.rh-parallax-element {
  overflow: hidden;
}

.rh-parallax-background {
  background: scroll no-repeat center center/cover;
  height: 50vh;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 1025px) {
  .rh-parallax-background {
    background-attachment: fixed;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .rh-parallax-background {
    background-attachment: scroll;
  }
}

_:-ms-fullscreen, :root .rh-parallax-background {
  background-attachment: scroll;
  transform: none;
}

_:-ms-lang(x), _:-webkit-full-screen, .rh-parallax-background {
  transform: none;
}

.rh-parallax-base {
  position: relative;
  z-index: 1;
}
.rh-parallax-base > div {
  padding: 4rem;
}
@media only screen and (min-width: 840px) {
  .rh-parallax-base > div {
    max-width: 1095px;
    margin: 0 auto;
  }
}

.rh-parallax-image-content {
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}

.parallax-fixed .rh-parallax-background {
  transform: none;
}
.parallax-fixed .rh-parallax-image-content {
  position: fixed;
}

/*--------------------------------------------------------------
13.4 Parallax
--------------------------------------------------------------*/
.mobile-pop {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
  width: 0;
}
.mobile-pop.visible {
  height: auto;
  opacity: 1;
  overflow: visible;
  width: auto;
}

/*--------------------------------------------------------------
13.5 Responsive Embed
--------------------------------------------------------------*/
.embed {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*--------------------------------------------------------------
14.0 Tesing (optional)
--------------------------------------------------------------*/
