/*
THEME NAME: Transport Media Theme
THEME URI: http://www.motionmill.com
DESCRIPTION: Rich with powerful and dynamic semantic class selectors, Sandbox is a canvas for CSS artists. Based on the sandbox theme and added html5 and boilertemplate specs. Ready for custom post types and custom meta boxes
VERSION: 3.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
AUTHOR: <a href="http://motionmill.com/">Rafa&euml;l Balrak</a>
AUTHOR URI:
TAGS: one-column, two-columns, right-sidebar, fluid-layout, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, translation-ready
*/
/*this does not work if you place it after the reset ... */
/**************************************
***************************************
************ import ******************
***************************************/
/****       reset                 ***/
/********************
*       RESET       *
********************/
/* 
  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/
@import url("https://fonts.googleapis.com/css?family=Merriweather:400,700|Roboto:300,400,700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header,
hgroup, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

/* END RESET CSS */
/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body {
  font: 13px sans-serif;
  *font-size: small;
  *font: x-small;
  line-height: 1.22;
}

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

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

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* 
 * minimal base styles 
 */
/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
body, select, input, textarea {
  color: #444;
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
/* www.aestheticallyloyal.com/public/optimize-legibility/ */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  text-rendering: optimizeLegibility;
}

/* maxvoltar.com/archive/-webkit-font-smoothing */
html {
  -webkit-font-smoothing: antialiased;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none;
}

a, a:active, a:visited {
  color: #607890;
}

a:hover {
  color: #036;
}

ul {
  margin-left: 30px;
}

ol {
  margin-left: 30px;
  list-style-type: decimal;
}

small {
  font-size: 85%;
}

strong, th {
  font-weight: bold;
}

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

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

pre {
  padding: 15px;
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type=radio] {
  vertical-align: text-bottom;
}

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

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

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

/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
/*::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } */
/*  j.mp/webkit-tap-highlight-color */
/*a:link { -webkit-tap-highlight-color: #FF5E99; } */
/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll;
}

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
  width: auto;
  overflow: visible;
}

/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stickyclass {
  display: inherit;
}

.bypostauthor {
  display: inherit;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* 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:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  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. */
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* hide some stuff */
div.skip-link {
  position: absolute;
  right: 1em;
  top: 1em;
  display: none;
}

nav#nav-above {
  margin-bottom: 1em;
  display: none;
}

nav#nav-below {
  margin-top: 1em;
  display: none;
}

div.date {
  display: none;
}

/********************
*    STRUCTURE      *
********************/
body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

h1#blog-title {
  margin: 0;
}

/********************
*    CONTENT STYLES *
********************/
div.entry-content p, div.textwidget p {
  margin-bottom: 1em;
}

div.entry-content ul {
  margin-left: 1em;
  margin-bottom: 1em;
}

div.entry-content ul li {
  margin-left: 1em;
}

div.entry-content ol {
  margin-left: 2em;
  margin-bottom: 1em;
}

/* COMMENTS */
form#commentform .form-label {
  margin: 1em 0 0;
}

form#commentform span.required {
  background: #fff;
  color: #c30;
}

form#commentform, form#commentform p {
  padding: 0;
}

input#author, input#email, input#url, textarea#comment {
  padding: 0.2em;
}

div.comments ol li {
  margin: 0 0 3.5em;
}

textarea#comment {
  height: 13em;
  margin: 0 0 0.5em;
  overflow: auto;
  width: 66%;
}

/*gallery*/
div.gallery .gallery-item img {
  max-width: 100%;
}

p.wp-caption-text {
  font-style: italic;
}

/*pagination navigation*/
div#nav-images {
  margin: 1em 0;
}

nav.navigation {
  height: 1.25em;
}

nav.navigation div.nav-next {
  float: right;
  text-align: right;
}

div.gallery dl, nav.navigation div.nav-previous {
  float: left;
}

input#author, input#email, input#url, nav.navigation div {
  width: 50%;
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * {
    background: transparent !important;
    color: #444 !important;
    text-shadow: none;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a:after {
    content: " (" attr(href) ")";
  }

  abbr:after {
    content: " (" attr(title) ")";
  }

  .ir a:after {
    content: "";
  }

  /* Don't show links for images */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  img {
    page-break-inside: avoid;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}
/*
 * Media queries for responsive design
 */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */
}
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Prevent iOS, WinMobile from adjusting font size */
  html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
  }
}
@media only screen and (max-width: 768px) {
  /* Make sure main menu re-appears when scaled up */
  body {
    font-size: 102%;
  }

  header#header {
    margin-left: 0;
  }

  #header hgroup {
    float: left;
  }

  div#access {
    float: right;
  }

  div#content {
    margin: 0;
  }

  div#container {
    margin: 0;
  }

  aside.sidebar {
    width: 100%;
    clear: both;
    margin-top: 2em;
  }

  span#copyright {
    font-size: 80%;
  }

  div.column {
    float: none;
    width: 100%;
  }

  .blockContent {
    padding: 0 5%;
  }

  div#topbar nav#top-menu {
    float: none;
  }

  div#topbar nav#top-menu ul.menu {
    margin-left: 0;
  }

  div.articleswrap article {
    float: none;
    margin-bottom: 3%;
    margin-right: 0;
    width: 100%;
  }

  .articleWrap div.entry-content {
    float: none;
    margin-left: 0;
    width: 100%;
  }

  p#breadcrumbs {
    display: none;
  }

  span#copyright, span#generator-link {
    display: block;
    float: none;
    text-align: center;
  }

  .callout {
    margin-bottom: 1em;
  }

  div.entry-content textarea {
    max-width: 95%;
  }

  div.entry-content select {
    max-width: 100%;
  }

  div.entry-content img.size-medium, div.entry-content img.size-large, div.entry-content img.size-full {
    width: 100%;
    height: auto;
  }

  #gallery-1 img {
    border: 2px solid #CFCFCF;
    height: auto;
    width: 98%;
  }

  #gallery-1 .gallery-caption {
    font-size: 60%;
    line-height: 1.2;
    margin-left: 0;
  }

  #header {
    margin-bottom: 1em;
  }

  nav#main-navigation-container {
    float: none;
    width: 100%;
    padding: 0.5em 0;
  }

  div#access {
    float: none;
    text-align: left;
  }

  #pull {
    background: #666;
    background: url("images/icon-mobile.png") no-repeat scroll 0 1px/30px 28px #666;
    clear: both;
    color: #fff;
    cursor: pointer;
    display: block;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding-left: 2.5em;
    text-decoration: none;
    visibility: visible;
    font-weight: 800;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 1450px) {
  #spotlight {
    height: 326px;
  }
}
/****        variables           ****/
/*blue*/
/*red*/
/*light grey*/
/****        typography           ****/
/**********************
    typography
**********************/
body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: black;
  font-weight: 200;
}

/******************
    headings
******************/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.8em;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  line-height: 1.5;
}
h1.bodyfont,
h2.bodyfont,
h3.bodyfont,
h4.bodyfont,
h5.bodyfont,
h6.bodyfont {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 200;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.7rem;
}
h2.section-title, h2.page-title {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 200 !important;
  text-transform: uppercase;
  color: black;
  margin-bottom: 1.5rem;
}
h2.section-title.licht, h2.page-title.licht {
  color: #fff;
}
h2.tlhub-section-title:before {
  background-image: url("images/tlhub-logo@3x.png");
  background-repeat: no-repeat;
  background-size: 100px;
  position: absolute;
  left: 0;
}
h2.single-entry-title {
  margin: 1rem 0 0 0;
}

h3.entry-title, h2.entry-title {
  font-weight: 600;
  font-size: 1.1rem;
}
h3.bp-section-title, h2.bp-section-title {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 200;
  text-transform: uppercase;
}
h3.spotlight-artikel-titel, h2.spotlight-artikel-titel {
  text-transform: uppercase;
}
h3.search-entry-title, h2.search-entry-title {
  margin-bottom: 0;
}
h3.search-entry-title a, h2.search-entry-title a {
  color: #0952a0;
}
h3.search-entry-title a:hover, h2.search-entry-title a:hover {
  color: #e30615;
}
h3.search-entry-title, h3.magazine-title, h2.search-entry-title, h2.magazine-title {
  line-height: 1.5;
}
h3.search-entry-title:after, h3.magazine-title:after, h2.search-entry-title:after, h2.magazine-title:after {
  background-color: none;
  height: 0;
  width: 0;
  margin-top: 0;
}

.section-title:after,
.page-title:after,
.entry-title:after {
  content: "";
  display: block;
  height: 4px;
  width: 100px;
  margin: 0;
  margin-top: 0px;
  margin-top: 7px;
  background: #e30615;
  position: relative;
  z-index: 10;
}
.section-title a,
.page-title a,
.entry-title a {
  color: black;
  text-decoration: none;
}
.section-title a:hover,
.page-title a:hover,
.entry-title a:hover {
  color: #e30615;
}
.section-title a:visited,
.page-title a:visited,
.entry-title a:visited {
  color: black;
}

.video h3.entry-title {
  line-height: 1.5;
}

#magazine-highlights .entry-title {
  line-height: 1.5;
}
#magazine-highlights .entry-title:after {
  height: 0;
  width: 0;
  background-color: none;
}

h3 {
  font-size: 1.5rem;
}
h3.widgettitle {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 200;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/****        navigation           ****/
/********************
*    MENU           *
********************/
/********************
*    bootstrap MENU           *
********************/
/*header#header{
    background-color: $color-primary;
    margin-bottom: 2rem;
    h1,
    h2{
        color: #fff;
    }
    a:visited,
    a{
        color: #fff;
        &:hover{
            color: $color-secondary;
        }
    }
    nav.navbar{
        .navbar-brand{
            white-space: normal;
        }
        li{
            margin-left: 1rem;
            a{
                color: #000;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
        }
        ul#menu-main-navigation > li{
            &>a{
                color: #fff;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
        }
        .navbar-toggler{
            color: #fff;
            &:hover{
                background-color: transparent;
            }

        }
    }
}

@media only screen and (max-width: 768px) {
    header#header{
        nav.navbar{
            li{
                margin-bottom: 1rem;
            }
        }
    }

}
*/
/********************
*    MENU           *
********************/
div#menu {
  height: 1.5em;
  margin: 1em 0;
  width: 100%;
}
div#menu ul {
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
div#menu ul li {
  float: left;
}
div#menu ul li:hover ul {
  left: auto;
}
div#menu ul a {
  display: block;
  margin-right: 1em;
  padding: 0.2em 0.5em;
  text-decoration: none;
}
div#menu ul ul {
  left: -999em;
  position: absolute;
  background-color: #eee;
  z-index: 1;
}
div#menu ul ul li {
  float: none;
}
div#menu ul ul ul a {
  font-style: italic;
}

#site-logo img.site-logo {
  width: 270px;
  height: auto;
  padding: 10px;
  padding-top: 20px;
}

@media screen and (max-width: 1200px) {
  header .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #site-logo {
    text-align: center;
    display: none;
  }
}
header#header {
  background-color: #fff;
  padding: 0.5rem 0;
}
header#header .ubermenu {
  color: black;
}
header#header .ubermenu ul li.ubermenu-item-level-0 {
  vertical-align: middle;
}
header#header .ubermenu ul .menu-item-news-cat {
  text-align: right;
  font-family: "Roboto" !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
}
header#header .ubermenu ul .menu-item-border-right {
  border-right: 1px solid #ddd;
}
header#header .ubermenu ul .menu-item-description {
  padding-top: 0 !important;
  text-align: right;
  color: black;
  font-weight: 600;
}
header#header .ubermenu .sticky-menu-only {
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
header#header .ubermenu-main .ubermenu-submenu.ubermenu-submenu-drop {
  border: none;
  background-color: #fff;
}
header#header .ubermenu-main .ubermenu-submenu.ubermenu-submenu-drop input {
  -webkit-box-shadow: none;
  box-shadow: none;
}
header#header .lang-selector img {
  margin: 0px 0.25rem -2px 0;
}
header#header .lang-selector a {
  text-transform: uppercase;
  color: black;
  font-size: 1rem;
}
header#header .lang-selector a:hover {
  color: #e30615;
  text-decoration: none;
}

header#header .ubermenu .ubermenu-colgroup .ubermenu-column,
header#header .ubermenu .ubermenu-custom-content-padded,
header#header .ubermenu .ubermenu-nonlink,
header#header .ubermenu .ubermenu-retractor,
header#header .ubermenu .ubermenu-submenu-padded,
header#header .ubermenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target,
header#header .ubermenu .ubermenu-target,
header#header .ubermenu .ubermenu-widget, header#header .ubermenu-responsive-toggle {
  padding: 0 15px;
}

.shiftnav--scroll-down header#header .ubermenu .sticky-menu-only,
.shiftnav--scroll-up header#header .ubermenu .sticky-menu-only {
  opacity: 1;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

body .shiftnav {
  z-index: 99999999;
}

.search-trigger:visited,
.search-trigger {
  color: #e30615;
  font-size: 1.25rem;
}

#searchModal .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
}
#searchModal .modal-content .modal-header {
  border: none;
}
#searchModal .modal-content .modal-header button {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  box-shadow: none;
  background-color: transparent;
  border: none;
  padding: 0.5rem;
}
#searchModal .modal-content .modal-header button:hover {
  background-color: transparent;
}
#searchModal .modal-content .modal-body form.search-form {
  display: inline-block;
  position: relative;
  width: 100%;
}
#searchModal .modal-content .modal-body form.search-form input {
  width: 100%;
  background-color: #fff;
  border-color: #fff;
  color: black;
  border-width: 2px;
}
#searchModal .modal-content .modal-body form.search-form input:hover, #searchModal .modal-content .modal-body form.search-form input:active, #searchModal .modal-content .modal-body form.search-form input:focus {
  background-color: #fff;
  border-color: #fff;
  color: black;
  border-width: 2px;
  outline: none;
}
#searchModal .modal-content .modal-body form.search-form button[type=submit] {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 0.5rem;
  border: none;
  background-color: transparent;
  color: black;
}
#topnavigation {
  font-size: 0.8rem;
}
#topnavigation ul {
  margin-left: 0;
  list-style-type: none;
}
#topnavigation ul li {
  display: inline-block;
  margin-right: 0.5rem;
}
#topnavigation ul li.btn.btn-primary a {
  color: #fff;
  text-decoration: none;
  text-transform: none;
  font-size: 0.8rem;
}
#topnavigation ul li a {
  color: #5a5a5a;
  text-decoration: underline;
}
#topnavigation ul li a:hover {
  color: #e30615;
}
#topnavigation ul li.wpml-ls-menu-item a {
  display: block;
  background-image: url("images/planet-earth.svg");
  background-repeat: no-repeat;
  background-position: 90% center;
  background-size: 0.8rem;
  color: black;
  text-decoration: none;
}
#topnavigation ul li.wpml-ls-menu-item a:hover {
  color: #e30615;
}

.social-navigation {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.social-navigation ul {
  margin-left: 0;
}
.social-navigation ul li {
  display: inline-block;
  margin-right: 1rem;
}
.social-navigation ul li a {
  color: black;
}
.social-navigation ul li a:hover {
  color: #0952a0;
}

.event-navigation {
  padding: 1rem 0;
}
.event-navigation ul.event-navigation-list {
  text-align: center;
}
.event-navigation ul.event-navigation-list .event-navigation-item {
  display: inline-block;
}
.event-navigation ul.event-navigation-list .event-navigation-item a {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: black;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 700;
}
.event-navigation ul.event-navigation-list .event-navigation-item a:hover {
  color: #0952a0;
}

.ubermenu-submenu .ubermenu-item-level-2 .ubermenu-target {
  font-family: "Roboto", Helvetica, Arial, sans-serif !important;
}
.ubermenu-submenu .ubermenu-item-header.ubermenu-has-submenu-stack > .ubermenu-target {
  border-bottom-width: 2px !important;
  padding-left: 0;
  display: inline-block;
}
.ubermenu-submenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target {
  padding-left: 0;
}

@media only screen and (max-width: 768px) {
  /* Make sure main menu re-appears when scaled up */
  .no-mobile {
    display: none;
    visibility: hidden;
  }

  .mobile-only {
    display: block;
    visibility: visible;
  }

  nav#main-navigation-container {
    float: none;
    width: 100%;
    padding: 0.5em 0;
  }

  div#access {
    float: none;
    text-align: left;
  }

  .mobile-only {
    display: block;
    visibility: visible;
  }

  div#mobile-menu {
    display: block;
    visibility: visible;
  }

  div#mobile-menu ul.menu {
    border-top: 1px solid #fff;
    display: none;
    margin-left: 0;
    padding: 0.4em;
    background: #666;
    list-style-type: none;
  }

  div#mobile-menu ul.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 110%;
  }

  div#mobile-menu ul.menu a:hover {
    color: #ccc;
  }

  div#mobile-menu ul.menu li.menu-item-has-children > a::after {
    content: "\f0da";
    padding-left: 0.5em;
    font-family: "fontawesome";
  }

  div#mobile-menu ul li ul {
    left: -999em;
    position: absolute;
  }

  div#mobile-menu ul ul li {
    float: none;
  }

  div#mobile-menu ul li:hover ul {
    left: 0;
    position: relative;
  }

  #pull {
    background: #666;
    background: url("images/icon-mobile.png") no-repeat scroll 0 1px/30px 28px #666;
    clear: both;
    color: #fff;
    cursor: pointer;
    display: block;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding-left: 2.5em;
    text-decoration: none;
    visibility: visible;
    font-weight: 800;
    text-transform: uppercase;
  }

  #menu {
    display: none;
    visibility: hidden;
  }
}
@media only screen and (min-width: 769px) {
  div#mobile-menu ul.menu {
    display: block !important;
  }
}
.shiftnav-search input.shiftnav-search-input {
  border: none;
  padding: 15px 25px !important;
}

/*************************
        links
*************************/
a {
  color: #0952a0;
}
a:visited {
  color: #0952a0;
}
a:hover, a:focus, a:active {
  color: #e30615;
}
a:focus {
  outline: none;
}
a:hover, a:active {
  outline: 0;
}
a.backtotop {
  color: #999;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: underline;
}
a.backtotop:hover {
  color: #e30615;
}
a.blocklink:hover {
  text-decoration: none;
}
a.licht {
  color: #fff !important;
}
a.licht:hover {
  color: #e30615 !important;
}
a.licht:visited {
  color: #fff !important;
}

a.excerpt-link {
  color: #5a5a5a;
  text-decoration: none;
}
a.excerpt-link:hover {
  text-decoration: none;
}

#secondary-footerbar a {
  color: #f1f2f3;
  text-decoration: underline;
}
#secondary-footerbar a:visited {
  color: #f1f2f3;
}
#secondary-footerbar a:hover, #secondary-footerbar a:focus, #secondary-footerbar a:active {
  color: #e30615;
}

.businesspartner-entry-meta a {
  color: #999;
}
.businesspartner-entry-meta a:hover {
  color: #e30615;
  text-decoration: none;
}

/****        forms           ****/
/****************************
        buttons
****************************/
.btn,
button,
.button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid #e30615;
  background: #e30615;
  color: #fff;
  line-height: 1;
  padding: 0.5rem;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 200;
}
.btn:visited,
button:visited,
.button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: #fff;
}
.btn:hover, .btn:active, .btn:focus,
button:hover,
button:active,
button:focus,
.button:hover,
.button:active,
.button:focus,
input[type=button]:hover,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:hover,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:hover,
input[type=submit]:active,
input[type=submit]:focus {
  border: 1px solid black;
  background-color: black;
  outline: none;
  color: #F7F7F7;
}
.btn.btn-secondary,
button.btn-secondary,
.button.btn-secondary,
input[type=button].btn-secondary,
input[type=reset].btn-secondary,
input[type=submit].btn-secondary {
  background-color: #e30615;
  border-color: #e30615;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus,
button.btn-secondary:hover,
button.btn-secondary:active,
button.btn-secondary:focus,
.button.btn-secondary:hover,
.button.btn-secondary:active,
.button.btn-secondary:focus,
input[type=button].btn-secondary:hover,
input[type=button].btn-secondary:active,
input[type=button].btn-secondary:focus,
input[type=reset].btn-secondary:hover,
input[type=reset].btn-secondary:active,
input[type=reset].btn-secondary:focus,
input[type=submit].btn-secondary:hover,
input[type=submit].btn-secondary:active,
input[type=submit].btn-secondary:focus {
  border: 1px solid black;
  background-color: black;
  outline: none;
  color: #F7F7F7;
}

form .btn,
form button,
form .button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  padding: 0.5rem 1rem;
}

button#shiftnav-toggle-main-button,
button.navbar-toggler,
button.search-submit {
  background: transparent;
  border: none;
  color: black;
}

#filters .btn.btn-primary.selected {
  background-color: #0952a0;
  color: #fff;
  border-color: #0952a0;
}

/****************************
        fields
***************************/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
#footer .footer-widgets input[type=text] {
  color: #5a5a5a;
  border: 1px solid #5a5a5a;
  border-radius: 2px;
  padding: 0.455rem 0.5rem !important;
  background-color: #fff;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
#footer .footer-widgets input[type=text]:focus {
  border: 1px solid #5a5a5a;
  -webkit-box-shadow: 0 0 5px #5a5a5a;
          box-shadow: 0 0 5px #5a5a5a;
  outline: none;
}

select {
  border: 1px solid #5a5a5a;
}

textarea {
  width: 100%;
}

#primary-footerbar .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-radius: 0;
}
#primary-footerbar .gform_wrapper input[type=checkbox] {
  margin-top: 0;
  vertical-align: middle;
}
#primary-footerbar .gfield_consent_label {
  display: inline;
  font-size: 0.9rem;
}

/****        layout           ****/
/******************
    sidebar
****************/
aside.sidebar h3 {
  font-size: 1.2em;
}
aside.sidebar input#s {
  width: 7em;
}
aside.sidebar li {
  list-style: none;
  margin: 0 0 2em;
}
aside.sidebar li form {
  margin: 0.2em 0 0;
  padding: 0;
}
aside.sidebar ul ul {
  margin: 0 0 0 1em;
}
aside.sidebar ul ul li {
  list-style: disc;
  margin: 0 0 0 1px;
}
aside.sidebar ul ul ul {
  margin: 0 0 0 0.5em;
}
aside.sidebar ul ul ul li {
  list-style: circle;
}
aside.sidebar .widget.trans-widget h3.widgettitle {
  display: none;
}
aside.sidebar .widget.trans-widget img {
  max-width: 100%;
  height: auto;
}
aside.sidebar .widget.most-viewed-posts-widget ul {
  list-style-type: none;
  margin-left: 0;
}
aside.sidebar .widget.most-viewed-posts-widget ul li {
  list-style-type: none;
  margin-bottom: 1rem;
}
aside.sidebar .widget.most-viewed-posts-widget ul li h4 {
  font-size: 0.9rem;
}
aside.sidebar .widget.most-viewed-posts-widget ul li a {
  color: black;
  display: block;
  padding-right: 2rem;
  position: relative;
}
aside.sidebar .widget.most-viewed-posts-widget ul li a:hover {
  color: #e30615;
  text-decoration: none;
}
aside.sidebar .widget.most-viewed-posts-widget ul li a::after {
  font-family: "fontawesome";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.75rem;
  color: #e30615;
  line-height: 1;
}

/*****************
    footer
******************/
.footerbar {
  padding: 2rem 0;
}

#footer {
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

#primary-footerbar {
  background-color: #f1f2f3;
}
#primary-footerbar h3.widgettitle {
  font-size: 1.2rem;
}

#secondary-footerbar {
  background-color: #101010;
  color: #f1f2f3;
  font-size: 0.8rem;
}
#secondary-footerbar h3.widgettitle {
  font-size: 1rem;
  font-weight: 600;
}
#secondary-footerbar .widget_nav_menu ul {
  margin-left: 0;
  list-style-type: none;
}
#secondary-footerbar .widget_nav_menu ul li {
  list-style-type: none;
  margin-left: 0;
  border-bottom: 1px solid #f1f2f3;
  margin-bottom: 0.5rem;
}
#secondary-footerbar .widget_nav_menu ul li a {
  color: #f1f2f3;
  display: block;
  padding-bottom: 0.5rem;
  text-decoration: none;
}
#secondary-footerbar .widget_nav_menu ul li a:hover {
  text-decoration: none;
  color: #e30615;
}

/******************************
    Sections
*******************************/
.call-to-action {
  padding: 2rem;
  border-radius: 15px;
  background-color: #0952a0;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
}
.call-to-action a {
  color: #fff;
}
.call-to-action .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 82, 160, 0.75);
  left: 0;
  top: 0;
  border-radius: 15px;
}

.block-section {
  margin-bottom: 2rem;
}
.block-section .block {
  margin-bottom: 1rem;
}
.block-section .block .background-wrapper {
  height: 100%;
  padding: 6rem 1rem 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
}
.block-section .block .background-wrapper .entry-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  max-width: 60%;
  margin-right: 0;
}
.block-section .block .background-wrapper .entry-content.large {
  max-width: 70%;
}

@media screen and (max-width: 768px) {
  .block-section .block .background-wrapper .entry-content {
    max-width: 80%;
  }
  .block-section .block .background-wrapper .entry-content.large {
    max-width: 80%;
  }
}
.highlight-section .highlight-block,
#category-highlights .highlight-block {
  min-height: 480px;
  height: 30vh;
  z-index: 1;
}
.highlight-section .highlight-block .highlight-content,
#category-highlights .highlight-block .highlight-content {
  max-width: 60%;
  margin: 0 auto;
  z-index: 1;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
}
.highlight-section .highlight-block .highlight-content .post-title,
#category-highlights .highlight-block .highlight-content .post-title {
  font-size: 1.2rem;
}
.highlight-section .highlight-block .highlight-content .post-title a,
#category-highlights .highlight-block .highlight-content .post-title a {
  color: black;
}
.highlight-section .highlight-block .highlight-content .post-title a:hover,
#category-highlights .highlight-block .highlight-content .post-title a:hover {
  color: #e30615;
  text-decoration: none;
}

.highlight-section {
  background-color: #ddd;
}
.highlight-section .highlight-posts h2.entry-title {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.highlight-section .highlight-post-big {
  height: 350px;
  min-height: auto;
}
.highlight-section .the-post-thumbnail img {
  max-width: 100%;
  height: auto;
}
.highlight-section .post-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.highlight-section .post-wrapper img {
  border-radius: 5px;
}
.highlight-section article.archive-highlight-post .post-wrapper {
  background-color: #fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.highlight-section article.archive-highlight-post .post-wrapper .the-post-thumbnail img,
.highlight-section article.archive-highlight-post .post-wrapper header img {
  width: 100%;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.highlight-section article.archive-highlight-post .post-wrapper .entry-content {
  padding: 1rem;
}

.event-home-section {
  background-color: #f1f2f3;
}

#event-highlights,
#video-highlights,
#magazine-highlights {
  background-color: #f1f2f3;
}
#event-highlights .event-sides h2.entry-title,
#event-highlights .video-sides h2.entry-title,
#video-highlights .event-sides h2.entry-title,
#video-highlights .video-sides h2.entry-title,
#magazine-highlights .event-sides h2.entry-title,
#magazine-highlights .video-sides h2.entry-title {
  line-height: 1.5;
}

#event-highlights {
  background-color: #222;
}
#event-highlights .event-sides .spotlight-artikel-titel {
  border-bottom: 1px solid;
  margin-bottom: 2rem;
  display: inline-block;
}
#event-highlights .event-sides h2.entry-title a {
  color: #fff;
}
#event-highlights .event-sides h2.entry-title::after {
  border: none;
  height: 0;
  width: 0;
  content: "";
}

.video-sides .video h2.entry-title {
  line-height: 1.5;
}

#business-partner-section {
  background-color: #f1f2f3;
}
#business-partner-section .businesspartner-entry-meta {
  color: #999;
  font-size: 0.9rem;
  line-height: 2;
}

.business-partner-category-section .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.business-partner-category-section .overlay.dark-overlay {
  background-color: rgba(8, 8, 8, 0.35);
}

.bp-highlight {
  background-color: #f1f2f3;
}

.related-posts-section {
  font-size: 0.9rem;
}
.related-posts-section article.related-content {
  margin-bottom: 1rem;
}
.related-posts-section article.related-content .relatedcontent h2.entry-title {
  font-size: 0.9rem;
}

#recent-publications {
  font-size: 0.8rem;
  background-color: #f1f2f3;
}
#recent-publications h3.magazine-title {
  font-size: 1rem;
}
#recent-publications h3.magazine-title a {
  color: black;
}
#recent-publications h3.magazine-title a:hover {
  color: #e30615;
}

.tabs-section {
  background-color: #f1f2f3;
}
.tabs-section ul.nav-pills {
  margin-left: 0;
}
.tabs-section ul.nav-pills li {
  margin-right: 1rem;
}
.tabs-section .businesspartner-entry-meta {
  color: #999;
  font-size: 0.9rem;
  line-height: 2;
}

.column-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.column-section .content-block {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-section {
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-section .overlay.overlay-white {
  background-color: rgba(255, 255, 255, 0.5);
}
.page-section .overlay.overlay-dark {
  background-color: rgba(0, 0, 0, 0.5);
}
.page-section.section-large {
  min-height: 100vh;
  padding-top: 0;
}
.page-section.two_column_image .img-div {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}
.page-section.two_column_image .img-div.addimagemargin {
  margin-top: 2em;
  margin-bottom: 2em;
}
.page-section.two_column_image .content {
  padding: 3rem 1rem;
}
.page-section.two_column_image.licht {
  color: #fff;
}
.page-section.hasbackgroundimage {
  background-size: cover;
  background-position: center center;
}
.page-section.licht, .page-section.light-text {
  color: #fff;
}
.page-section.licht .outline-block, .page-section.light-text .outline-block {
  border-color: #fff;
}
.page-section.licht .hasseparator, .page-section.light-text .hasseparator {
  background-image: url(images/arrow-white.png);
}
.page-section.licht input[type=text],
.page-section.licht input[type=email],
.page-section.licht input[type=url],
.page-section.licht input[type=password],
.page-section.licht input[type=search],
.page-section.licht input[type=number],
.page-section.licht input[type=tel],
.page-section.licht input[type=range],
.page-section.licht input[type=date],
.page-section.licht input[type=month],
.page-section.licht input[type=week],
.page-section.licht input[type=time],
.page-section.licht input[type=datetime],
.page-section.licht input[type=datetime-local],
.page-section.licht input[type=color],
.page-section.licht textarea, .page-section.light-text input[type=text],
.page-section.light-text input[type=email],
.page-section.light-text input[type=url],
.page-section.light-text input[type=password],
.page-section.light-text input[type=search],
.page-section.light-text input[type=number],
.page-section.light-text input[type=tel],
.page-section.light-text input[type=range],
.page-section.light-text input[type=date],
.page-section.light-text input[type=month],
.page-section.light-text input[type=week],
.page-section.light-text input[type=time],
.page-section.light-text input[type=datetime],
.page-section.light-text input[type=datetime-local],
.page-section.light-text input[type=color],
.page-section.light-text textarea {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.page-section.licht ::-webkit-input-placeholder, .page-section.light-text ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.page-section.licht ::-moz-placeholder, .page-section.light-text ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.page-section.licht :-ms-input-placeholder, .page-section.light-text :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.page-section.licht :-moz-placeholder, .page-section.light-text :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.page-section .textblockwrap {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-section .watermark {
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  position: absolute;
}
.page-section .rowwrapper .row:first-child {
  padding-top: 1em;
}
.page-section .rowwrapper .row:last-child {
  padding-bottom: 1em;
}
.page-section .rowwrapper .row.no-padding {
  padding: 0 !important;
}
.page-section.gallery-section {
  overflow: hidden;
  padding: 3rem 0;
}
.page-section.gallery-section .flexslider {
  border: none;
  border-radius: 0;
}
.page-section.gallery-section .flexslider .flex-direction-nav a::before {
  font-size: 30px;
}
.page-section.gallery-section .flexslider .flex-control-paging li a {
  background-color: #CBD0D3;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page-section.gallery-section .flexslider .flex-control-paging li a:hover {
  background-color: #5a5a5a;
}
.page-section.gallery-section .flexslider .flex-control-paging li a.flex-active {
  background-color: #e30615;
  outline: none;
}
.page-section .content-row .entry-content ul {
  list-style-type: none;
}
.page-section .content-row .entry-content ul li {
  margin-left: 0;
  padding-left: 1em;
  margin-bottom: 0.5em;
}
.page-section .content-row .entry-content ul li::before {
  display: inline-block;
  content: "\f105";
  font-family: "fontawesome";
  display: inline-block;
  margin-left: -1em;
  /* same as padding-left set on li */
  width: 1em;
  /* same as padding-left set on li */
}
.page-section .content-row .entry-content ul li.gfield {
  padding-left: 0;
}
.page-section .content-row .entry-content ul li.gfield::before {
  display: none;
  content: "";
}
.page-section .next-arrow {
  z-index: 1;
  position: absolute;
  bottom: 3rem;
}

@media screen and (max-width: 768px) {
  #header-spotlight.header-small, #header-spotlight.header-medium, #header-spotlight.header-large {
    padding-top: 250px;
    height: auto;
  }

  .page-section {
    min-height: 200px !important;
  }
}
/******************************
    Sections
*******************************/
#blog-intro {
  margin: 1rem 0 2rem 0;
}
#blog-intro #featured-post {
  margin-bottom: 0;
}

.block-section {
  margin-bottom: 2rem;
}
.block-section .block {
  margin-bottom: 1rem;
}
.block-section .block .background-wrapper {
  height: 100%;
  padding: 6rem 1rem 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
}
.block-section .block .background-wrapper .entry-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  max-width: 60%;
  margin-right: 0;
}
.block-section .block .background-wrapper .entry-content.large {
  max-width: 70%;
}

@media screen and (max-width: 768px) {
  .block-section .block .background-wrapper .entry-content {
    max-width: 80%;
  }
  .block-section .block .background-wrapper .entry-content.large {
    max-width: 80%;
  }
}
.column-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.column-section .content-block {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-section {
  position: relative;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-section .overlay.overlay-white {
  background-color: rgba(255, 255, 255, 0.5);
}
.page-section .overlay.overlay-dark {
  background-color: rgba(0, 0, 0, 0.5);
}
.page-section.section-large {
  min-height: 100vh;
  padding-top: 0;
}
.page-section.two_column_image .img-div {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}
.page-section.two_column_image .img-div.addimagemargin {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-section.two_column_image .content {
  padding: 3rem 1rem;
}
.page-section.two_column_image.licht {
  color: #fff;
}
.page-section.hasbackgroundimage {
  background-size: cover;
  background-position: center center;
}
.page-section.licht, .page-section.light-text {
  color: #fff;
}
.page-section.licht .post-author, .page-section.light-text .post-author {
  color: #fff;
}
.page-section.licht blockquote, .page-section.light-text blockquote {
  color: #fff;
}
.page-section.licht .outline-block, .page-section.light-text .outline-block {
  border-color: #fff;
}
.page-section.licht .hasseparator, .page-section.light-text .hasseparator {
  background-image: url(images/arrow-white.png);
}
.page-section.licht input[type=text],
.page-section.licht input[type=email],
.page-section.licht input[type=url],
.page-section.licht input[type=password],
.page-section.licht input[type=search],
.page-section.licht input[type=number],
.page-section.licht input[type=tel],
.page-section.licht input[type=range],
.page-section.licht input[type=date],
.page-section.licht input[type=month],
.page-section.licht input[type=week],
.page-section.licht input[type=time],
.page-section.licht input[type=datetime],
.page-section.licht input[type=datetime-local],
.page-section.licht input[type=color],
.page-section.licht textarea, .page-section.light-text input[type=text],
.page-section.light-text input[type=email],
.page-section.light-text input[type=url],
.page-section.light-text input[type=password],
.page-section.light-text input[type=search],
.page-section.light-text input[type=number],
.page-section.light-text input[type=tel],
.page-section.light-text input[type=range],
.page-section.light-text input[type=date],
.page-section.light-text input[type=month],
.page-section.light-text input[type=week],
.page-section.light-text input[type=time],
.page-section.light-text input[type=datetime],
.page-section.light-text input[type=datetime-local],
.page-section.light-text input[type=color],
.page-section.light-text textarea {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.page-section.licht ::-webkit-input-placeholder, .page-section.light-text ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.page-section.licht ::-moz-placeholder, .page-section.light-text ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.page-section.licht :-ms-input-placeholder, .page-section.light-text :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.page-section.licht :-moz-placeholder, .page-section.light-text :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.page-section .textblockwrap {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.page-section .watermark {
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  position: absolute;
}
.page-section .rowwrapper .row:first-child {
  padding-top: 1rem;
}
.page-section .rowwrapper .row:last-child {
  padding-bottom: 1rem;
}
.page-section .rowwrapper .row.no-padding {
  padding: 0 !important;
}
.page-section.gallery-section {
  overflow: hidden;
  padding: 3rem 0;
}
.page-section.gallery-section .flexslider {
  border: none;
  border-radius: 0;
}
.page-section.gallery-section .flexslider .flex-direction-nav a::before {
  font-size: 30px;
}
.page-section.gallery-section .flexslider .flex-control-paging li a {
  background-color: #CBD0D3;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page-section.gallery-section .flexslider .flex-control-paging li a:hover {
  background-color: #5a5a5a;
}
.page-section.gallery-section .flexslider .flex-control-paging li a.flex-active {
  background-color: #e30615;
  outline: none;
}
.page-section .content-row .entry-content ul {
  list-style-type: none;
}
.page-section .content-row .entry-content ul li {
  margin-left: 0;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  background: url("images/bullet-red.svg") no-repeat 0 12px/10px;
}
.page-section .content-row .entry-content ul li::before {
  display: inline-block;
  /*content:"\f105";
  font-family: 'fontawesome';*/
  display: inline-block;
  margin-left: -1rem;
  /* same as padding-left set on li */
  width: 1rem;
  /* same as padding-left set on li */
}
.page-section .content-row .entry-content ul li.gfield {
  padding-left: 0;
  background: none;
}
.page-section .content-row .entry-content ul li.gfield::before {
  display: none;
  content: "";
  background: none;
}
.page-section .content-row .item {
  margin-bottom: 2rem;
}
.page-section .next-arrow {
  z-index: 1;
  position: absolute;
  bottom: 3rem;
}

@media screen and (max-width: 768px) {
  #header-spotlight.header-small, #header-spotlight.header-medium, #header-spotlight.header-large {
    padding-top: 250px;
    height: auto;
  }

  .page-section {
    min-height: 200px !important;
  }
}
/****        elements           ****/
/***********************
        classes
***********************/
/* 
 * Non-semantic helper classes 
 */
/* for image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* >> The Magnificent CLEARFIX << */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

.clear {
  clear: both;
}

.alignright, img.alignright {
  float: right;
  margin: 0 0 0 1em;
}

.alignleft, img.alignleft {
  float: left;
  margin: 0 1em 0 0;
}

.aligncenter, img.aligncenter {
  display: block;
  margin: 0 auto 1em auto;
  text-align: center;
}

.entry-title, .entry-meta {
  clear: both;
}

footer.edit-link {
  clear: both;
}

.backgroundimage {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.well {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.well.transparent-well {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}
.well.grey-well {
  background-color: #f1f2f3;
}

.vertical-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.event-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

.text-primary {
  color: #0952a0 !important;
}
.text-primary a {
  color: #0952a0 !important;
}
.text-primary a:hover {
  color: black !important;
}

.text-secondary {
  color: #e30615 !important;
}
.text-secondary a {
  color: #e30615 !important;
}
.text-secondary a:hover {
  color: black !important;
}

/******************************
    elements
*******************************/
/* feat video plug */
.fvp-dynamic {
  height: 100%;
}
.fvp-dynamic:hover .fvp-actionicon {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.fvp-dynamic:hover img.wp-post-image {
  opacity: 0.65 !important;
}
.fvp-dynamic .fvp-actionicon {
  display: block;
  background-image: url(/wp-content/plugins/featured-video-plus/img/playicon.png);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.fvp-dynamic img.wp-post-image {
  opacity: 0.75 !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#cookie-notice {
  z-index: 9999999;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#topbar {
  background-color: #F1F2F3;
  font-size: 0.8rem;
}
#topbar .lang-search-block {
  text-align: right;
  padding-top: 1rem;
}
#topbar .lang-search-block .lang-selector img {
  margin: 0px 0.25rem -2px 0;
}
#topbar .lang-search-block .lang-selector a {
  text-transform: uppercase;
  color: black;
}
#topbar .lang-search-block .lang-selector a:hover {
  color: #e30615;
  text-decoration: none;
}
#topbar .lang-search-block .topbar-search a {
  color: #e30615;
}

#topbar .search-form {
  position: relative;
}

#topbar .search-form.active {
  width: 100%;
  padding-left: 170px;
}

#topbar .search-form .search-box input {
  width: 100%;
  background-color: #fff;
  border-color: transparent;
  color: black;
  border-width: 0;
}

#topbar .search-form .search-box input:hover, #topbar .search-form .search-box input:active, #topbar .search-form .search-box input:focus {
  background-color: #fff;
  border-color: transparent;
  color: black;
  border-width: 0;
  outline: none;
}

#topbar .search-form .search-box button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  color: #e30615;
  padding: 0.4rem 0.5rem;
}

@media screen and (max-width: 1200px) {
  #topbar .search-form .search-box {
    width: 60%;
  }
}
#breadcrumb-section {
  font-size: 0.8rem;
  padding: 1rem 0;
  color: #5a5a5a;
}
#breadcrumb-section a {
  color: #5a5a5a;
  text-decoration: underline;
}
#breadcrumb-section a:hover {
  color: #e30615;
}

.the-post-thumbnail {
  margin-bottom: 1rem;
}
.the-post-thumbnail img {
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

.business-partner-logo {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  width: 200px;
}
.business-partner-logo img {
  max-width: 100%;
  height: auto;
}

.advertisement-placeholder {
  text-align: center;
  padding: 1rem 0;
}
.advertisement-placeholder img {
  max-width: 100%;
  height: auto;
}

.single-post-thumbnail img {
  /*height:80vh;
  width:auto;*/
  max-height: 80vh;
  max-width: 100%;
  width: auto;
}

.single-social-sharing {
  margin-top: -1.5rem;
  margin-bottom: 1rem;
}

/*.video {
  iframe {
    max-width:100%;
    height:auto;
  }
}*/
select.bpdropdown {
  width: 80%;
  padding: 0.5rem;
}

#video-chapters .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
#video-chapters .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.category-entry-meta,
.single-entry-meta {
  font-size: 0.8rem;
  color: #CBD0D3;
  margin-bottom: 2rem;
}
.category-entry-meta time,
.category-entry-meta .cat-links,
.single-entry-meta time,
.single-entry-meta .cat-links {
  margin-right: 1rem;
}
.category-entry-meta .post-author,
.single-entry-meta .post-author {
  color: #000;
  text-transform: uppercase;
  margin-right: 1rem;
  font-size: 0.8rem;
}
.category-entry-meta .tag-links a,
.single-entry-meta .tag-links a {
  font-style: italic;
  color: #CBD0D3;
  text-decoration: underline;
  margin-right: 0.5rem;
}
.category-entry-meta .tag-links a:hover,
.single-entry-meta .tag-links a:hover {
  color: #e30615;
  text-decoration: none;
}

.post-views {
  margin-right: 1rem;
}

.post-author {
  color: #000;
  text-transform: uppercase;
  margin-right: 1rem;
  font-size: 0.8rem;
}

.category-entry-meta {
  margin-bottom: 0;
  color: black;
}
.category-entry-meta .tag-links a {
  color: black;
}

#header {
  padding: 1rem 0;
}

.advertorial-title {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #e30615;
  font-size: 0.7rem;
}

.advertorial-section .post-author {
  display: none;
}
.advertorial-section article.post.mb-5 {
  margin-bottom: 0 !important;
}
.advertorial-section .entry-content {
  display: none;
}

.tlhub-logo img {
  max-width: 100%;
  height: auto;
}

.entry-date {
  color: #5a5a5a;
  font-size: 0.8rem;
  font-style: italic;
}

.archive-excerpt {
  font-size: 0.9rem;
  color: #5a5a5a;
}

.search-entry-date {
  margin-bottom: 1rem;
}

.tag-links,
.cat-links {
  font-size: 0.8rem;
  text-transform: uppercase;
}
.tag-links a,
.cat-links a {
  color: black;
}
.tag-links a:hover,
.cat-links a:hover {
  color: #e30615;
  text-decoration: none;
}

ul.widgetlist {
  list-style-type: none;
  margin-left: 0;
}
ul.widgetlist li {
  list-style-type: none;
  margin-bottom: 1rem;
}
ul.widgetlist li h4 {
  font-size: 0.9rem;
}
ul.widgetlist li a {
  color: black;
  display: block;
  padding-right: 2rem;
  position: relative;
}
ul.widgetlist li a:hover {
  color: #e30615;
  text-decoration: none;
}
ul.widgetlist li a::after {
  font-family: "fontawesome";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.75rem;
  color: #e30615;
  line-height: 1;
}
ul.widgetlist.job-list {
  -moz-column-count: 2;
  -moz-column-gap: 1rem;
  -moz-column-rule: none;
  -webkit-column-count: 2;
  -webkit-column-gap: 1rem;
  -webkit-column-rule: none;
  column-count: 2;
  column-gap: 1rem;
  column-rule: none;
}
ul.widgetlist.job-list li.job-item {
  position: relative;
}
ul.widgetlist.job-list li.job-item .vacature-company,
ul.widgetlist.job-list li.job-item .vacature-date,
ul.widgetlist.job-list li.job-item .vacature-city {
  font-size: 0.8rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.bp-archive-item {
  margin-bottom: 2rem;
}
.bp-archive-item .the-post-thumbnail {
  text-align: center;
  border: 1px solid #f1f2f3;
  padding: 1rem;
  margin-bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 200px;
}
.bp-archive-item .the-post-thumbnail a {
  display: block;
  position: relative;
}
.bp-archive-item .the-post-thumbnail a img {
  border-radius: 0;
  max-width: 150px;
  height: auto;
}
.bp-archive-item .content-block {
  background-color: #f1f2f3;
}
.bp-archive-item .content-block .businesspartner-entry-meta {
  color: #999;
  font-size: 0.9rem;
  line-height: 2;
}

.single-event #header {
  display: none;
}

.business-partner-list {
  -moz-column-count: 3;
  -moz-column-gap: 1rem;
  -moz-column-rule: none;
  -webkit-column-count: 3;
  -webkit-column-gap: 1rem;
  -webkit-column-rule: none;
  column-count: 3;
  column-gap: 1rem;
  column-rule: none;
}
.business-partner-list .business-partner-list-item a {
  text-transform: lowercase;
}

/** featherlight **/
.featherlight-swipe-aware .featherlight-next, .featherlight-swipe-aware .featherlight-previous {
  display: block;
}

@media screen and (max-width: 768px) {
  .footerbar .widget,
.sidebar .widget {
    margin-bottom: 2rem;
  }
}
iframe {
  max-width: 100%;
}

.TM-HL-SB {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 300px;
  height: 600px;
  padding-right: 0;
}
.TM-HL-SB .ad-wrapper {
  width: 300px;
}

/************************
*       PAGINATION      *
*************************/
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
}
.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #5a5a5a;
  background: #f1f2f3;
}
.pagination a:hover {
  color: #fff;
  background: #e30615;
}
.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #0952a0;
  color: #fff;
}
