@charset "UTF-8";
/* CSS Document */
@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Regular.eot'),
         url('fonts/OpenSans-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Bold.eot'),
         url('fonts/OpenSans-Bold.ttf') format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Italic.eot'),
         url('fonts/OpenSans-Italic.ttf') format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-BoldItalic.eot'),
         url('fonts/OpenSans-BoldItalic.ttf') format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'OpenSansLight';
    src: url('fonts/OpenSans-Light.eot'),
         url('fonts/OpenSans-Light.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSansLight';
    src: url('fonts/OpenSans-Semibold.eot'),
         url('fonts/OpenSans-Semibold.ttf') format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSansLight';
    src: url('fonts/OpenSans-LightItalic.eot'),
         url('fonts/OpenSans-LightItalic.ttf') format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'OpenSansLight';
    src: url('fonts/OpenSans-SemiboldItalic.eot'),
         url('fonts/OpenSans-SemiboldItalic.ttf') format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'OpenSansCond';
    src: url('fonts/OpenSans-CondLight.eot'),
         url('fonts/OpenSans-CondLight.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSansCond';
    src: url('fonts/OpenSans-CondBold.eot'),
         url('fonts/OpenSans-CondBold.ttf') format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSansCond';
    src: url('fonts/OpenSans-CondLightItalic.eot'),
         url('fonts/OpenSans-CondLightItalic.ttf') format("truetype");
    font-weight: normal;
    font-style: italic;
}


:root {
  --text-color: hsl(0deg 0% 20%);
  --link-color: hsl(0deg 100% 45%);
  --link-color-hover: hsl(0deg 100% 70%);
  --title-color: hsl(0deg 0% 20%);
  --grey: hsl(0deg 0% 50%);
  --light-grey: hsl(0deg 0% 80%);
  --light-red: hsl(0deg 100% 90%);
  --page-width: 1024px;
  --pagehead-height: 120px;
  --text-font: 'OpenSans', Arial, Helvetica, sans-serif;
  --title-font: 'OpenSansCond', 'Arial Narrow', Arial, Helvetica, sans-serif;
  --gap: 1rem;
  --doublegap: 2rem;
  --teaser-height: 40vw;
  --divider: 1;
}


* {
	margin:0px;
	padding:0px;
	border:none;
	box-sizing: border-box;
}


.clear {
    clear: both;
}
.vihi {
    position: absolute;
    display: block;
    margin: -1px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.print {
    visibility: hidden;
}

body {
	width:100%;
	background-color: #fff;
    font-family: var(--text-font);
	font-size: 1.2rem;
    line-height: 1.9rem;
	font-weight: 300;
	color: var(--text-color);
}
header, content {
    display: block;
    width: var(--page-width);
    margin: 3vw auto;
    padding: 0 var(--gap);
}


/** GENERAL **/
optgroup
{
    padding-top:3px;
    padding-bottom:3px;
}
    
table {
    border-collapse:collapse;
}
th, td {
    text-align:left;
    vertical-align:top;
}
p {
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
    hyphens: auto;
}
p + p {
	padding-top:16px;
	}
table {
	width: 100%;
}
tr:nth-of-type(even) {
    background: rgba(0,0,0,0.1);
}
thead tr {
    background: var(--link-color);
}
th {
    font-weight: bold;
    white-space: nowrap;
}
td, th {
    padding-left: 10px;
    padding-right:10px;
}
td:first-of-type {
    padding-left: 0;
}
td:last-of-type {
    padding-right: 0;
}
dl {
}
dt {
    float: left;
    clear: left;
    width: 110px;
    font-size: 12px;
    color: var(--grey);
    padding-right: 9px;
}
dd {
    font-size: 12px;
}
.align-center, .text-center {
    text-align: center;
}

/** Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    font-style: normal;
    font-weight: bold;
    font-family: var(--title-font);
    clear: left;
}

h1 {
    margin-bottom: 15px;
    font-size: 52px;
    line-height: 58px;
}
h2 {
    margin: 15px 0px 20px 0px;
    font-size: 32px;
    line-height: 36px;
}
h3 {
    margin:10 0px 8px 0px;
    font-size: 24px;
    line-height: 28px;
}
h4 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 5px;
    margin-top: 30px;
}
h5, h6 {
    font-size: 18px;
    line-height: 20px;
}
hr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--light-grey);
    }
div.divider {
    margin-bottom: 10px;
}


time {
    font-size: 11px;
    color: var(--grey);
}

/** Lists */
ul {
    margin-top: 10px;
    margin-bottom: 10px;
}
li {
	margin:0; 
	padding:0; 
	text-indent: -18px;
	list-style: none;
    margin: 5px 0 5px 22px;
}
li:before {
    content: '•';
    font-weight: bold;
    color: var(--link-color);
    padding-right: 10px;
}


/* frame classes */


/** Links */
a {
	text-decoration:none;
	color: var(--link-color);
    transition: 1s;
	}

a:hover {
	text-decoration:none;
	color: var(--link-color-hover);
    transition: 0s;
	}
.btn {
    width: auto;
    min-width: 20px;
    cursor: pointer;
    display: inline-block;
    padding: 0 1rem;
    border-width: 1px;
    border-style: solid;
    transition: 0.2s;
    font-size: 1rem;
    line-height: 2.1rem;
    user-select: none;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-right: 1rem;
}
.btn.btn-primary {
    border-color: var(--link-color);
    background-color: var(--link-color);
    color: white;
}
.btn.btn-primary:hover {
    background-color: white;
    color: var(--link-color);
}
.btn.btn-secondary {
    border-color: var(--grey);
    background-color: var(--grey);
    color: white;
}
.btn.btn-secondary:hover {
    background-color: white;
    color: var(--grey);
}

/* image gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.gallery a {
    display: flex;
}
.gallery.cols-10 a {
    width: calc(100% / 10 - 4px);
}
.gallery.cols-9 a {
    width: calc(100% / 9 - 4px);
}
.gallery.cols-8 a {
    width: calc(100% / 8 - 4px);
}
.gallery.cols-7 a {
    width: calc(100% / 7 - 4px);
}
.gallery.cols-6 a {
    width: calc(100% / 6 - 4px);
}
.gallery.cols-5 a {
    width: calc(100% / 5 - 4px);
}
.gallery.cols-4 a {
    width: calc(100% / 4 - 4px);
}
.gallery.cols-3 a {
    width: calc(100% / 3 - 4px);
}
.gallery.cols-2 a {
    width: calc(100% / 2 - 4px);
}
.gallery a img {
    width: 100%;
    height: auto;
    border: 1px solid var(--light-grey);
}


.media {
    display: grid;
    grid-auto-rows: 1fr;
    grid-column-gap: var(--doublegap);
    grid-row-gap: var(--doublegap);
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    margin-bottom: 10px;
}
.media > * {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}
.ge-grid-col > * {
    width: 100%;
}



/* forms, powermail, registration */
label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
div.checkbox label, div.radio label {
    margin-top: 0px;
    margin-bottom: 1px;
}
input, 
select, 
textarea {
    border-width: 1px 1px 1px 5px;
    border-color: var(--light-grey);
    border-style: solid;
    padding: 5px 5px;
    font-size: 1rem;
    font-family: var(--text-font);
}

input[required], 
select[required], 
textarea[required],
input[data-validation*=required],
input.required,
select.required,
textarea.required {
    border-left-color: var(--link-color);
}
input[type=text], 
input[type=tel], 
input[type=date], 
input[type=datetime-local], 
input[type=email], 
input[type=url], 
input[type=number], 
input[type=password], 
input[type=submit],
select, 
textarea {
    width: 100%;
    max-width: 500px;
}
.powermail_field .radio,
.powermail_field .checkbox,
.registration .radio ,
.registration .checkbox  {
    display: inline-block;
    margin-right: 1.5rem;
}
input[type=submit][disabled],
button[disabled] {
    opacity: 0.4 !important;
    cursor: not-allowed;
}

fieldset.nolabel legend {
    display: none;
}
fieldset {
    margin-bottom: 40px;
}



/* navigation */
nav {
    user-select: none;
}
.hnav ul, .hnav li {
    text-indent: 0;
    padding: 0;
    list-style: none;
}

.hnav > ul {
    z-index: 200;
    display: flex;
}

.hnav > ul > li {
    display:inline-block;
    z-index: 200;
    position: relative;
}
.hnav a {
    font-family: var(--title-font);
    font-weight: 300;
    color: var(--title-color);
    transition:  0.3s;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 3rem;
    padding: 0 var(--gap);
    height: 3rem;
    display: block;
}
.hnav a:hover,
.hnav li.act > a {
    transition:  0s;
    color: var(--link-color);
}
.hnav > ul > li > a {
    display: inline-block;
}

.hnav > ul > li b {
    display: inline-block;
    width: 100%;
    height: 3rem;
    background: rgba(255,255,255,0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transition: 0s 0.2s;
}
.hnav > ul > li:hover b {
    height: 0;
}


/* sub */
.hnav > ul > li > ul {
    background-color: rgba(255,255,255,0.98);
    position: absolute;
    max-height: calc(100vh - var(--pagehead-height) - 10px);
    overflow: auto;
    left: 0;
    text-align: left;
    opacity: 0;
    transform: scale(1,0);
    transform-origin: top center;
    /*
    transition: opacity 1s;
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.3,0,0.1,1);
    */
    transition: opacity 0.3s linear 0.3s, transform 0s linear 0.6s;
    box-shadow: 3px 10px 30px rgb(0 0 0 / 30%);
    min-width: 204px;
    padding: var(--gap) 0;
    border-radius: 0 0 5px 5px;
}

.hnav > ul > li:hover  ul {
    opacity: 1;
    transform: scale(1,1);
    /*
    transition: opacity 0.6s;
    transition-duration: 0.6s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.3,0,0.1,1);
    */
    transition: opacity 0.2s linear 0s, transform 0s linear 0s;
    }
/* sub sub */ 
.hnav ul ul ul {
    padding-left: var(--gap);
    margin-top: -0.4rem;
    margin-bottom: 0.4rem;
}
.hnav ul ul ul a {
    line-height: 1.8rem;
    height: 1.8rem;
    text-transform: none;
}   


.rootnav {
    position: absolute;
    bottom: 0;
    left: 0;
}

.metanav {
    position: absolute;
    left: 0;
    top: 0;
}

/* meta menu */
.metanav {
    position: absolute;
    top: 8px;
    right: 100px;
}
.metanav > ul,
.metanav > ul > li {
    z-index: 75;
}
.metanav > ul > li > a {
    height: 36px;
}


/* language menu */
.langnav > ul,
.langnav > ul > li {
    z-index: 75;
}
.langnav > ul > li > span {
    display: inline-block;
    height: 36px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 42px;
}



/* print section */
@media only print {
.print {
    visibility: visible;
}
}




/* Responsive Section */
@media only screen 
    and (max-width: 1023px) 
{
:root {
  --page-width: 100%;
}

}


    
@media only screen 
    and (max-width: 767px) 
{

.hnav a {
    padding: 0 9px;
}
.hnav > ul > li:last-of-type > ul {
    text-align: right;
    left: auto;
    right: 0;
}
.hnav > ul > li:last-of-type ul ul {
    padding-left: 0;
    padding-right: var(--gap);
}
.media {
    display: block !important;
}
.media > * {
    width: 100%;
    margin-bottom: var(--doublegap);
}

}


@media only screen 
    and (max-width: 497px) 
{
.hnav a {
    text-transform: none;
    font-size: 0.8rem;
    line-height: 2rem;
    height: 2rem;
}
.hnav > ul > li > a {
    padding: 0 5px;
}

}

