/*
 * @package: package name
 *
 * @version: 1.0
 * @author: Robert Becker <becker.robert.93@gmail.com> <becker@pega-sus.de>
 * @company: PEGASUS Werbeagentur GmbH
 * @release: 08.2016
 *
 * @media: all
 * @description: Theme for the new website.
 *
 *
 */
/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
/*
 * Styles for basic tags.
 *
 * RB
 */
* {
  box-sizing: border-box; }

::selection {
  background: #3C4646;
  color: #fff; }

::-moz-selection {
  background: #3C4646;
  color: #fff; }

html {
  padding: 0;
  position: relative;
  min-height: 100%; }

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden; }

iframe {
  max-width: 100%;
  width: 100%; }

ul {
  list-style: outside none disc; }

hr {
  background-color: #ccc;
  border-color: #ccc; }

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

blockquote {
  padding: 0.1rem 0;
  padding-left: 1rem;
  border-left: 2px solid #FF9900;
  font-style: italic;
  margin: 1rem 0;
  color: #FF9900; }

/*
 * Styles for global classes.
 */
.show-for-print {
  display: none; }

.section {
  padding: 1rem 0; }

@media print {
  .hide-for-print {
    display: none !important; }
  .show-for-print {
    display: block; } }

/*
 * Styles for figures.
 *
 * RB
 */
figure {
  padding: 0;
  margin: 0.5rem 0 1rem; }
  figure.float-left {
    margin-right: 2rem; }
  figure.float-right {
    margin-left: 2rem; }

figcaption, .news.news-single .news-img-caption {
  padding-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: bold;
  font-style: italic; }

/*
 * Including the webfonts.
 */
@font-face {
  font-family: "Roboto Slab";
  src: url("../Fonts/Roboto_Slab/RobotoSlab-Regular.eot?#iefix");
  src: url("../Fonts/Roboto_Slab/RobotoSlab-Regular.eot?#iefix") format("eot"), url("../Fonts/Roboto_Slab/RobotoSlab-Regular.woff") format("woff"), url("../Fonts/Roboto_Slab/RobotoSlab-Regular.ttf") format("truetype"), url("../Fonts/Roboto_Slab/RobotoSlab-Regular.svg") format("svg");
  font-weight: 400; }

@font-face {
  font-family: "Open Sans";
  src: url("../Fonts/Open_Sans/OpenSans-Regular.eot?#iefix");
  src: url("../Fonts/Open_Sans/OpenSans-Regular.eot?#iefix") format("eot"), url("../Fonts/Open_Sans/OpenSans-Regular.woff") format("woff"), url("../Fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype"), url("../Fonts/Open_Sans/OpenSans-Regular.svg") format("svg");
  font-weight: 400; }

/*
 * Styles for forms.
 */
form {
  padding: 0; }

input, button, select, option, .button, textarea {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 1rem;
  box-shadow: none; }
  input:hover, input:focus, button:hover, button:focus, select:hover, select:focus, option:hover, option:focus, .button:hover, .button:focus, textarea:hover, textarea:focus {
    background: none;
    box-shadow: none; }

label,
legend {
  color: #3C4646;
  padding: 0;
  margin: 0; }

textarea {
  min-height: 10em;
  max-height: 20em;
  max-width: 100%;
  min-width: 80%; }

input[type="text"], input[type="password"], input[type="tel"], input[type="date"], input[type="email"] {
  border: 1px solid #e0e0e0;
  padding: 0.4rem;
  position: relative;
  transition: all ease-in-out 0.4s;
  margin: 0 0 1rem;
  box-shadow: none; }
  input[type="text"]:hover, input[type="password"]:hover, input[type="tel"]:hover, input[type="date"]:hover, input[type="email"]:hover {
    color: #1C344C;
    border: 1px solid #1C344C; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="date"]:focus, input[type="email"]:focus {
    border: 1px solid #1C344C; }

textarea {
  border: 1px solid #e0e0e0;
  padding: 0.4rem;
  position: relative;
  transition: all ease-in-out 0.4s;
  margin: 0 0 1rem;
  box-shadow: none; }
  textarea:hover {
    color: #1C344C;
    border: 1px solid #1C344C; }
  textarea:focus {
    border: 1px solid #1C344C; }

.button,
button,
input[type="button"],
input[type="submit"] {
  background-color: #FF9900;
  padding: 0.6em;
  color: #fff;
  margin: 0;
  border: none;
  font-size: 1.05rem;
  display: inline-block;
  transition: all ease-in-out 0.3s; }
  .button:focus,
  button:focus,
  input[type="button"]:focus,
  input[type="submit"]:focus {
    background-color: #FF9900; }
  .button:hover,
  button:hover,
  input[type="button"]:hover,
  input[type="submit"]:hover {
    background-color: #cc7a00; }
  
.powermail_fieldwrap_info-text-multiple-files{
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 0.85rem;
  padding-top: 0.25rem;
}
#c1884 > div > div > form.powermail_form_16 > div.grid-x.align-center > div {
  width: 90% !important;
  order: 2 !important;
}

@media screen and (max-width: 639px) {
    #page-body > div.section > div.grid-x.grid-padding-x > div.cell.small-12.medium-8{
    order: 1;
  }
}

@media screen and (max-width: 639px) {#page-body > div.section > div.grid-x.grid-padding-x > div.cell.small-12.medium-4{
    order: 2;
  }
}

#c1882 > h2.text-center strong{
  display: none !important;
}

#c133 > div.news.news-single > div.article > div.header > h3{
  display: none !important;
}

form.powermail_form_16 div.align-center{
  justify-content: left !important;
}

.powermail_fieldwrap_dateiupload-job-application-form .powermail_field input{
  margin-bottom: 0 !important;
}

/*
 * Styles for links.
 *
 * RB
 */
a {
  text-decoration: none; }
  a:link, a:active, a:visited {
    color: #99CC00; }
  a:hover {
    color: #739900; }
  a.external-link-new-window, a[target="_blank"] {
    display: inline-block; }
    a.external-link-new-window:after, a[target="_blank"]:after {
      font-family: 'fontello';
      content: '\f08e';
      font-size: 0.7em;
      margin-left: 3px;
      position: absolute;
      margin-top: -5px; }
  a.download:after {
    font-family: 'fontello';
    content: '\e806';
    font-size: 0.7em;
    margin-left: 3px;
    vertical-align: super; }
  a.button {
    background-color: #FF9900;
    padding: 0.6em;
    color: #fff;
    margin: 0;
    border: none;
    font-size: 1.05rem;
    display: inline-block;
    transition: all ease-in-out 0.3s; }
    a.button:focus {
      background-color: #FF9900; }
    a.button:hover {
      background-color: #cc7a00; }
    a.button:after {
      content: '';
      display: none; }
    a.button.style--outlines {
      background-color: transparent;
      border: 1px solid #FF9900;
      color: #FF9900;
      position: relative;
      overflow: hidden;
      z-index: 10; }
      a.button.style--outlines:before {
        content: '';
        border-radius: 5rem;
        height: 0;
        z-index: -1;
        width: 0;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: all ease-in-out 0.4s;
        background-color: #FF9900; }
      a.button.style--outlines:hover {
        color: #fff; }
        a.button.style--outlines:hover:before {
          height: 400px;
          width: 400px; }

@media print {
  a[href]:after {
    content: "";
    display: none; }
  a.external[href]:after {
    content: " (" attr(href) ")";
    display: inline-block;
    color: #000; } }

/*
 * Styles for navigations.
 *
 * RB
 */
nav ul {
  padding: 0;
  margin: 0;
  list-style: none; }

nav a,
nav span.nolink {
  display: block;
  padding: 0.5rem;
  font-size: 1.1em; }

nav ul.horizontal-menu li {
  display: inline-block; }

#area-partner .horizontal-menu li:nth-child(5) a {
    color: #FF9900;
    font-weight: bold;
    font-size: 0.9em;
}

#area-partner .only-mobile {
  display: inline-block;
  border-width: 2px;
  font-weight: bold;
}
@media (min-width: 640px) {
  #area-partner .only-mobile {
    display: none;
  }
}


/*
 * Styles for tables.
 *
 * RB
 */
table {
  margin: 1.6rem 0;
  width: 100%; }
  table th {
    background-color: transparent;
    font-weight: 400;
    text-align: left; }
  table td, table th {
    display: block; }
    @media (min-width: 640px) {
      table td, table th {
        display: table-cell; } }
  table thead {
    background-color: transparent;
    border: none; }
  table tbody {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1); }
    table tbody tr {
      background-color: transparent; }
      table tbody tr:nth-child(2n) {
        background-color: transparent; }
      table tbody tr td, table tbody tr th {
        padding: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #111; }
  table.horizontal-th tr:first-child td,
  table.horizontal-th tr th,
  table.vertical-th tr td:first-child {
    border: 1px solid transparent;
    padding: 0.5rem;
    text-align: left;
    background-color: transparent; }

/*
 * Styles for the typography.
 */
body {
  line-height: 1.5em;
  font-size: 1.05rem;
  color: #3C4646;
  font-family: "Open Sans", Arial, sans-serif, Times;
  font-weight: 400; }

h1, h2, h3, h4, h5 {
  font-family: "Roboto Slab", Arial, sans-serif, Times;
  font-weight: 400;
  line-height: 1.3em;
  margin-top: 1.6rem; }

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1C344C; }

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #1C344C; }

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: #1C344C; }

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: #1C344C; }

@media (min-width: 1024px) {
  h1 {
    font-size: 2.2rem; }
  h2 {
    font-size: 1.8rem; }
  h3 {
    font-size: 1.6rem; }
  h4 {
    font-size: 1.4rem; } }

p {
  margin-bottom: 1.5rem; }
  p.text-center {
    text-align: center; }

/*
 * Styles for the text & media ce.
 *
 * RB
 */
.ce-textpic .ce-row {
  display: flex; }
  .ce-textpic .ce-row .ce-column {
    padding: 0 0.5rem; }
    .ce-textpic .ce-row .ce-column:first-child {
      padding-left: 0; }
    .ce-textpic .ce-row .ce-column:last-child {
      padding-right: 0; }

.ce-textpic.ce-intext.ce-left .ce-gallery {
  margin-right: 1.5rem;
  float: left; }

.ce-textpic.ce-intext.ce-left:after {
  content: '';
  height: 1px;
  clear: both;
  display: table; }

.ce-textpic iframe,
.ce-textpic img {
  border: 1px solid #ccc;
  padding: 0.5rem; }

.ce-textpic.ce-intext figure.image {
  display: table;
  width: 200px;
  /* This can be any width, so long as it's narrower than any image */ }
  .ce-textpic.ce-intext figure.image img {
    max-width: none; }
  .ce-textpic.ce-intext figure.image img, .ce-textpic.ce-intext figure.image figcaption, .ce-textpic.ce-intext figure.image .news.news-single .news-img-caption, .news.news-single .ce-textpic.ce-intext figure.image .news-img-caption {
    display: table-row;
    vertical-align: bottom; }

/*
 * Styles for the upload ce.
 *
 * RB
 */
.ce-uploads .file img {
  border: 1px solid #ccc; }

.ce-uploads img {
  padding: 0; }

/**
 * styles for alerts.
 *
 * RB
 */
.alert {
  padding: 0.7rem 0.7rem;
  margin-bottom: 1rem;
  margin-top: 10px;
  border: 1px solid transparent;
  position: relative; }
  .alert.success, .alert.alert-success {
    color: #3FB54B;
    background-color: #d9f0db;
    background-color: rgba(63, 181, 75, 0.2);
    border-color: #c5e9c9;
    border-color: rgba(63, 181, 75, 0.3); }
    .alert.success.with-arrow-left:before, .alert.success.with-arrow-right:before, .alert.success.with-arrow-center:before, .alert.alert-success.with-arrow-left:before, .alert.alert-success.with-arrow-right:before, .alert.alert-success.with-arrow-center:before {
      border-bottom-color: #9fdaa5;
      border-bottom-color: rgba(63, 181, 75, 0.5); }
  .alert.info, .alert.alert-info {
    color: #005C9A;
    background-color: #ccdeeb;
    background-color: rgba(0, 92, 154, 0.2);
    border-color: #b3cee1;
    border-color: rgba(0, 92, 154, 0.3); }
    .alert.info.with-arrow-left:before, .alert.info.with-arrow-right:before, .alert.info.with-arrow-center:before, .alert.alert-info.with-arrow-left:before, .alert.alert-info.with-arrow-right:before, .alert.alert-info.with-arrow-center:before {
      border-bottom-color: #80aecd;
      border-bottom-color: rgba(0, 92, 154, 0.5); }
  .alert.warning, .alert.alert-warning {
    color: #FFCE39;
    background-color: #fff5d7;
    background-color: rgba(255, 206, 57, 0.2);
    border-color: #fff0c4;
    border-color: rgba(255, 206, 57, 0.3); }
    .alert.warning.with-arrow-left:before, .alert.warning.with-arrow-right:before, .alert.warning.with-arrow-center:before, .alert.alert-warning.with-arrow-left:before, .alert.alert-warning.with-arrow-right:before, .alert.alert-warning.with-arrow-center:before {
      border-bottom-color: #ffe79c;
      border-bottom-color: rgba(255, 206, 57, 0.5); }
  .alert.danger, .alert.alert-danger {
    color: #FF4628;
    background-color: #ffdad4;
    background-color: rgba(255, 70, 40, 0.2);
    border-color: #ffc8bf;
    border-color: rgba(255, 70, 40, 0.3); }
    .alert.danger.with-arrow-left:before, .alert.danger.with-arrow-right:before, .alert.danger.with-arrow-center:before, .alert.alert-danger.with-arrow-left:before, .alert.alert-danger.with-arrow-right:before, .alert.alert-danger.with-arrow-center:before {
      border-bottom-color: #ffa394;
      border-bottom-color: rgba(255, 70, 40, 0.5); }
  .alert.with-arrow-left:before, .alert.with-arrow-right:before, .alert.with-arrow-center:before {
    content: ' ';
    position: absolute;
    top: 0;
    margin-top: -11px;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent; }
  .alert.with-arrow-left:before {
    left: 0; }
  .alert.with-arrow-right:before {
    right: 0; }
  .alert.with-arrow-center:before {
    left: 50%;
    margin-left: -10px; }

/**
 * Styles for carousels.
 *
 * RB
 */
.el-carousel {
  margin: 1rem 0;
  padding: 1rem 0; }
  .el-carousel.style--dark {
    background-color: #3C4646; }
  .el-carousel:after {
    content: '';
    clear: both;
    display: table; }

/*
 * Styles for category selections.
 *
 * RB
 */
.el-category {
  position: relative; }
  .el-category > .cat-color {
    height: 26px;
    width: 26px;
    position: absolute; }
  .el-category > .cat-title {
    padding: 0 0.5rem;
    line-height: 26px;
    margin-left: 26px;
    color: #3C4646; }
    .el-category > .cat-title h1, .el-category > .cat-title h2, .el-category > .cat-title h3, .el-category > .cat-title h4 {
      margin: 0;
      color: #3C4646; }

/*
 * Styles for the download files.
 *
 * RB
 */
.el-file.style--thumbs {
  margin: 1rem 0 1rem;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0; }
  .el-file.style--thumbs:last-child {
    border-bottom: none; }
  @media (min-width: 640px) {
    .el-file.style--thumbs {
      border: none; } }
  .el-file.style--thumbs .f-name {
    margin: 0 0 1rem;
    font-size: 1.3em; }
  .el-file.style--thumbs .f-thumb-container {
    float: left;
    width: 33%;
    margin-right: 2rem;
    max-height: 200px;
    overflow: hidden;
    display: none; }
    @media (min-width: 640px) {
      .el-file.style--thumbs .f-thumb-container {
        display: block; } }
    @media (min-width: 1024px) {
      .el-file.style--thumbs .f-thumb-container {
        width: 25%; } }
    .el-file.style--thumbs .f-thumb-container img {
      border: none;
      border: 1px solid #ccc;
      padding: 0; }
  .el-file.style--thumbs:after {
    content: '';
    height: 1px;
    clear: both;
    display: table; }

.el-file.style--list {
  margin: 0; }
  .el-file.style--list .f-name {
    font-size: 1em;
    margin: 0;
    display: inline-block;
    padding-right: 0.5rem; }

/*
 * Styles for infoboxes.
 *
 * RB
 */
.el-infobox {
  padding: 0.75rem;
  border-radius: 4px;
  background-color: #eee;
  border: 1px solid #ddd;
  margin: 1rem 0; }
  .el-infobox a.button {
    display: block;
    float: right; }

/*
 * Styles for the preloader.
 *
 * RB
 */
.el-popup {
  width: 100%;
  height: 100%; }

/*
 * Styles for the preloader.
 *
 * RB
 */
.preloader {
  position: absolute;
  z-index: 1100;
  background-color: white;
  height: 100%;
  width: 100%; }
  .preloader .preloader-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    background: #1C344C;
    border-radius: 50px;
    transform-origin: center center;
    animation: preloader_5 1.5s infinite linear; }
    .preloader .preloader-animation:after {
      position: absolute;
      width: 70px;
      height: 70px;
      border-top: 5px solid #3C4646;
      border-bottom: 5px solid #3C4646;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-radius: 50px;
      content: '';
      top: -20px;
      left: -20px; }

@keyframes preloader_5 {
  0% {
    transform: rotateZ(0deg); }
  50% {
    transform: rotateZ(180deg); }
  100% {
    transform: rotateZ(360deg); } }

/**
 * Styles for seperators
 *
 * RB
 */
.el-seperator {
  display: none; }
  @media (min-width: 640px) {
    .el-seperator {
      display: block; } }
  .el-seperator .s-image {
    background-image: url(fileadmin/user_upload/marego-verkehrsbund.de/PageContent/Dummy/Header/header-1.jpg);
    background-position: center center;
    margin: 2rem -50%;
    background-size: cover;
    height: 9rem; }

/*
 * Styles for the social bar.
 *
 * RB
 */
.social-bar {
  margin: 2rem 0 1rem;
  text-align: center; }
  .social-bar .sb-inner {
    text-align: left;
    background-color: #cfdee5;
    padding: 1rem;
    border-radius: 5px;
    display: inline-block; }
    .social-bar .sb-inner h3, .social-bar .sb-inner h4, .social-bar .sb-inner h5 {
      color: #3C4646; }
    .social-bar .sb-inner .sb-invitation {
      float: left; }
      .social-bar .sb-inner .sb-invitation *:first-child {
        margin-top: 0; }
    .social-bar .sb-inner nav.socials {
      display: inline-block; }
      .social-bar .sb-inner nav.socials .item a, .social-bar .sb-inner nav.socials .item .nolink {
        font-size: 2.2rem;
        padding: 0.65rem 0.5rem 0.65rem 0; }

/*
 * Styles for the team.
 *
 * RB
 */
.el-team .t-name {
  margin-top: 0; }

.el-team .t-email.t-contactOption {
  margin: 1rem 0 0; }

.el-team .t-contactOption {
  margin: 0.5rem 0; }
  .el-team .t-contactOption span {
    padding-right: 0.25rem;
    display: inline-block; }

/*
 * Styles for teaser elements.
 *
 * RB
 */
.el-teaser {
  position: relative;
  margin: 1rem 0 3rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }
  .el-teaser .t-media img {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-right: -1px; }
  .el-teaser .t-title {
    font-size: 1.4rem;
    padding: 1rem;
    margin: 0; }
  .el-teaser .t-description {
    color: #3C4646;
    padding: 0 1rem 1rem; }
    @media (min-width: 1024px) {
      .el-teaser .t-description p {
        height: 76px; } }
  .el-teaser .t-more {
    background-color: #fff;
    color: #1C344C;
    padding: 5px .6em 5px .6em;
    margin: 1.4rem 0 0;
    display: inline-block; }
    .el-teaser .t-more:hover {
      background-color: #e6e6e6; }

/*
 * Styles for the breadcrumb navigation.
 *
 * RB
 */
nav.mod-navigation-breadcrumb {
  font-size: 0.9rem;
  padding: 0.4rem 0; }
  nav.mod-navigation-breadcrumb li {
    background-color: #0080B6;
    position: relative;
    height: 38px;
    display: block;
    float: left; }
    nav.mod-navigation-breadcrumb li a, nav.mod-navigation-breadcrumb li .nolink {
      padding: 0.7rem 1.5rem 0 0;
      display: block; }
      nav.mod-navigation-breadcrumb li a img, nav.mod-navigation-breadcrumb li .nolink img {
        width: 90%; }
    nav.mod-navigation-breadcrumb li:last-child:after {
      display: none; }
    nav.mod-navigation-breadcrumb li:after {
      content: '';
      left: 100%;
      top: 0;
      border-top: 19px solid transparent;
      border-bottom: 19px solid transparent;
      position: absolute;
      height: 20px;
      width: 19px; }

/*
 * Styles for the main navigation.
 *
 * RB
 */
nav.mod-navigation-main a, nav.mod-navigation-main .nolink {
  padding: 0.8rem 0.5rem 0.7rem 0.5rem;
  font-size: 1.1rem;
  display: block; }

nav.mod-navigation-main li {
  position: relative; }

/*
 * Styles for the main navigation.
 *
 * RB
 */
nav.mod-navigation-secondary a, nav.mod-navigation-secondary .nolink {
  padding: 0.8rem 0.5rem 0.7rem 0.5rem;
  font-size: 1.1rem;
  display: block; }

nav.mod-navigation-secondary li {
  position: relative; }

@media (min-width: 640px) {
  nav.mod-navigation-secondary .active:after,
  nav.mod-navigation-secondary .current:after {
    content: ' ';
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 1rem;
    background-color: #99CC00;
    display: block;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0; } }

/*
 * Styles for the social navigation.
 */
/**
 * Styles for the jQuery plugin flexisel
 *
 * RB
 */
.nbs-flexisel-container {
  position: relative;
  max-width: 100%;
  padding: 0 2rem; }

.nbs-flexisel-ul {
  position: relative;
  width: 99999px;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
  display: flex;
  align-items: stretch; }

.nbs-flexisel-inner {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%; }

.nbs-flexisel-item {
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  position: relative;
  line-height: 0px;
  display: flex;
  align-items: center; }

.nbs-flexisel-item img {
  max-width: 100%;
  cursor: pointer;
  position: relative;
  margin: 1rem auto; }

/*** Navigation ***/
.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
  padding: 5px 10px;
  position: absolute;
  cursor: pointer;
  z-index: 4;
  top: 40%; }

.nbs-flexisel-nav-left {
  left: 10px; }

.nbs-flexisel-nav-left:before,
.nbs-flexisel-nav-right:before {
  content: "";
  background-image: url(../Images/Slider/arrows.svg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  text-indent: 0;
  line-height: 2.8em;
  color: #111;
  font-weight: 800;
  position: absolute;
  background-color: #fff;
  width: 2.8em;
  height: 2.8em;
  left: 50%;
  top: 50%;
  margin-top: -1.4em;
  margin-left: -1.4em;
  border-radius: 50%; }

.nbs-flexisel-nav-left:before {
  background-position: -5% 0; }

.nbs-flexisel-nav-left.disabled {
  opacity: 0.4; }

.nbs-flexisel-nav-right {
  right: 5px; }

.nbs-flexisel-nav-right:before {
  background-position: 105% 0; }

.nbs-flexisel-nav-right.disabled {
  opacity: 0.4; }

/*
 * Styles for the tx indexed_search
 *
 */
.tx-indexedsearch-resultsets .tx-indexedsearch-searchwords {
  margin: 1rem 0;
  border-left: 8px solid #1C344C;
  padding: 0.5rem 1rem;
  font-size: 1.2rem; }

.tx-indexedsearch-resultsets .tx-indexedsearch-browsebox ul {
  list-style: none; }
  .tx-indexedsearch-resultsets .tx-indexedsearch-browsebox ul li {
    padding: 0 1rem 0 0;
    display: inline-block; }
    .tx-indexedsearch-resultsets .tx-indexedsearch-browsebox ul li:before, .tx-indexedsearch-resultsets .tx-indexedsearch-browsebox ul li:after {
      display: none; }

.tx-indexedsearch-resultsets .tx-indexedsearch-results .tx-indexedsearch-res {
  border-top: 1px solid #ccc; }
  .tx-indexedsearch-resultsets .tx-indexedsearch-results .tx-indexedsearch-res:last-child {
    border-bottom: 1px solid #ccc; }

/*
 * Styles for the tx 'news'.
 *
 * RB
 *
 */
.news.news-single .news-img-wrap {
  float: left; }
  .news.news-single .news-img-wrap .mediaelement {
    margin: 0.5rem 2rem 0 0; }

.news.news-single .teaser-text {
  font-size: 1.2em; }

.news .news-list-view .article {
  margin: 2rem 0; }

.news .news-list-view h3 {
  margin-top: 0; }

.news .news-list-view .page-navigation p {
  display: none; }

.news .news-list-view .page-navigation ul.f3-widget-paginator {
  list-style: none;
  padding: none;
  margin: 1rem 0; }
  .news .news-list-view .page-navigation ul.f3-widget-paginator li {
    display: inline-block;
    background-color: #399BB1;
    color: #fff;
    padding-left: 0;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4); }
    .news .news-list-view .page-navigation ul.f3-widget-paginator li a {
      color: #fff;
      padding: 0.1rem 0.6rem;
      display: block; }
    .news .news-list-view .page-navigation ul.f3-widget-paginator li.current {
      padding: 0.1rem 0.6rem;
      background-color: #1C344C; }
    .news .news-list-view .page-navigation ul.f3-widget-paginator li:before {
      display: none; }

.news .news-list-view .page-navigation:first-child {
  display: none; }

/**
 * Styles for the ext:pgs_partner.
 *
 * RB
 */
.tx-pgspartner .view--latest .row {
  display: flex;
  align-items: stretch; }

.tx-pgspartner .view--latest .column {
  display: flex;
  align-items: center; }

.tx-pgspartner .view--list {
  margin-bottom: 2rem; }
  .tx-pgspartner .view--list .pp-partner {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 1rem;
    min-height: 9rem;
    margin: 1rem 0;
    display: flex;
    align-items: center; }
  .tx-pgspartner .view--list .pp-media-wrap {
    margin-right: 1rem; }
    .tx-pgspartner .view--list .pp-media-wrap img {
      width: auto;
      height: auto;
      max-height: 8rem;
      max-width: 8rem; }

/*
 * Styles for the PGS slider
 *
 * RB
 */
.tx-pgsslider ul.ps-slider {
  list-style: none;
  margin: 0;
  padding: 0; }
  .tx-pgsslider ul.ps-slider li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch; }

.tx-pgsslider .ps-image-wrapper {
  width: 100%;
  position: relative; }
  @media (min-width: 640px) {
    .tx-pgsslider .ps-image-wrapper {
      width: 50%; } }
  .tx-pgsslider .ps-image-wrapper .ps-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0; }
  .tx-pgsslider .ps-image-wrapper .ps-spreadImage {
    visibility: hidden; }

.tx-pgsslider .ps-captions {
  display: none;
  background-color: #F5F4F3;
  width: 50%; }
  @media (min-width: 640px) {
    .tx-pgsslider .ps-captions {
      display: block; } }

.tx-pgsslider .ps-caption {
  padding: 2rem 4rem 4rem;
  height: 100%;
  display: flex;
  align-items: center; }
  .tx-pgsslider .ps-caption .line {
    font-size: 2rem;
    line-height: 3rem;
    width: 100%; }
    .tx-pgsslider .ps-caption .line:nth-child(2) {
      margin-bottom: 2rem; }

/*
 * Styles for the Slippry slider.
 *
 * RB
 */
.sy-box {
  position: relative; }

.sy-pager li.sy-active a {
  background-color: #99CC00; }

.sy-pager {
  width: auto;
  margin: 1em 2rem 1rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  display: none; }
  @media (min-width: 640px) {
    .sy-pager {
      display: block; } }

@media print {
  .sy-slides-crop,
  .sy-list,
  .sy-slide {
    position: relative;
    overflow: visible;
    left: 0 !important; }
  .sy-slide {
    border-bottom: 1px solid #ccc;
    margin-bottom: 2rem; }
  .sy-box .sy-slides-wrap ul.sy-controls,
  .sy-filler {
    display: none; } }

/*
 * Styles for the body of the page.
 *
 * RB
 */
#page-body {
  position: relative;
  z-index: 20; }
  #page-body .section {
    margin: 1rem 0;
    padding: 1rem; }
    @media (min-width: 640px) {
      #page-body .section {
        padding: 1rem 0; } }
  #page-body > .section:first-child {
    margin-top: 0;
    padding-top: 1rem; }
    @media (min-width: 640px) {
      #page-body > .section:first-child {
        padding-top: 2rem; } }
  #page-body > .section:last-child {
    padding-bottom: 1rem; }
    @media (min-width: 640px) {
      #page-body > .section:last-child {
        padding-bottom: 2rem; } }

@media print {
  #page-body {
    padding-top: 0rem; }
    #page-body .section {
      padding: 0; } }

/*
 * Styles for the page footer.
 *
 * RB
 */
footer#page-footer {
  padding: 0;
  top: 100%;
  width: 100%;
  background-color: #eee;
  padding: 1.5rem 0 0;
  overflow: hidden;
  position: absolute; }

#page-footer-top nav.mod-navigation-main a,
#page-footer-top nav.mod-navigation-main span.nolink {
  color: #3C4646;
  padding: 0.5rem 2rem 0.5rem 0;
  font-size: 1rem; }

#page-footer-top nav .current {
  font-weight: bold; }

#page-footer-bottom {
  position: relative;
  /*&:after{
		content:'';
		position:absolute;
		background-color:#7BAA3A;
		width:1000px;
		height:5rem;
		left:0;right:0;top:2rem;
		margin:0 auto;

		transform:rotate(-5deg);
	}*/ }
  #page-footer-bottom > .inner {
    z-index: 10;
    position: relative;
    text-align: right; }
  #page-footer-bottom nav.mod-navigation-secondary {
    padding: 0 1rem;
    background-color: #7BAA3A;
    margin: 0 auto;
    border-radius: 1.5rem 1.5rem 0 0;
    display: inline-block; }
    #page-footer-bottom nav.mod-navigation-secondary a {
      color: #fff;
      font-size: 1rem; }

/*
 * Styles for the page header.
 *
 * RB
 */
#page-header {
  position: relative;
  width: 100%;
  top: 0;
  padding: 0.4rem 0;
  border-bottom: 4px solid #C3C3C3; }
  #page-header .inner:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (min-width: 640px) {
      #page-header .inner:first-of-type {
        align-items: flex-end; } }
  #page-header #page-logo {
    width: 4.5rem;
    height: 4.5rem; }
    @media (min-width: 640px) {
      #page-header #page-logo {
        width: 100%;
        max-width: 16rem;
        height: auto; } }
    #page-header #page-logo a {
      display: block;
      padding: 0.5rem; }
      @media (min-width: 640px) {
        #page-header #page-logo a {
          padding: 0.5rem 0; } }
  #page-header .menu-opener {
    font-size: 1.6em;
    padding: 0.5rem; }
  @media (min-width: 640px) {
    #page-header .menu-opener {
      display: none; } }
  #page-header .mod-navigation-main {
    display: none; }
    #page-header .mod-navigation-main .current:before {
      content: '';
      position: absolute;
      background-color: #99CC00;
      width: 100vw;
      height: 4px;
      top: 100%;
      right: 0;
      margin-top: 7px;
      margin-right: 50%; }
    #page-header .mod-navigation-main .current:after {
      z-index: 10;
      width: 1.2rem;
      height: 1.2rem;
      border-radius: 1rem;
      border: 4px solid #99CC00;
      background-color: #fff;
      font-size: 2rem;
      display: block;
      position: absolute;
      margin: 0 auto;
      left: 0;
      right: 0;
      content: '';
      margin-top: -0.25rem; }
    @media (min-width: 640px) {
      #page-header .mod-navigation-main {
        display: block; } }

@media print {
  header .menu-opener {
    display: none; } }

/*
 * Styles for the page header.
 *
 * RB
 */
#menu-popup {
  position: fixed;
  top: 0;
  z-index: 1000; }
  #menu-popup .popup-canvas {
    height: 2rem;
    width: 2rem;
    background-color: #3C4646;
    overflow: hidden;
    clip: rect(0, auto, auto, 0);
    transition: all ease-in-out 1s;
    border-radius: 2000px;
    position: absolute;
    top: -50rem;
    left: -50rem;
    right: -50rem;
    margin: auto auto;
    bottom: -50rem; }
  #menu-popup.open .popup-canvas {
    height: 2000px;
    width: 2000px; }
  #menu-popup .popup-inner {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 2rem; }
    #menu-popup .popup-inner nav span.nolink {
      color: #fff; }
    #menu-popup .popup-inner nav.mod-navigation-main ul li {
      display: block; }
    #menu-popup .popup-inner nav.mod-navigation-secondary {
      position: absolute;
      bottom: 0; }
  #menu-popup .popup-preloader {
    height: 2rem;
    width: 2rem;
    position: fixed;
    transition: all ease-in-out 1s;
    top: 0;
    left: 0;
    right: 0;
    margin: auto auto;
    bottom: 0;
    opacity: 1; }
  #menu-popup.open .popup-preloader {
    opacity: 0.1; }
  #menu-popup .menu-closer {
    margin: 0 auto;
    width: 3rem;
    height: 3rem;
    border: 1px solid #fff;
    border-radius: 3rem;
    padding: 0.75rem 0;
    text-align: center; }

/*
 * Styles for split screens.
 *
 * RB
 */
.el-split {
  display: flex;
  height: 100%;
  flex-direction: column; }
  .el-split .s-area {
    height: 50vh;
    width: 100vw;
    display: flex;
    align-items: center; }
  @media (min-width: 640px) {
    .el-split {
      flex-direction: row; }
      .el-split .s-area {
        height: 100vh;
        width: 50vw; }
        .el-split .s-area:nth-child(2) {
          padding-left: 5rem;
          padding-right: 5rem; } }

.s-area {
  position: relative; }
  .s-area .a-introduction {
    text-transform: uppercase;
    font-size: 0.8em; }
  .s-area .a-target {
    text-transform: uppercase;
    font-size: 3.4em;
    margin: 1.6rem 0 2.2rem; }
  .s-area .inner {
    width: 100%;
    text-align: center; }
  .s-area.style--dark {
    background-color: #3c4646;
    color: #fff; }

/**
 * Structure of the page.
 *
 * RB
 */
#page-wrapper {
  position: relative;
  min-height: 100vh; }

/*
 * Skelton of the page.
 */
/*
 * Styles for the contact template.
 *
 * RB
 */
body.tpl-contact .s-area {
  order: 1; }
  body.tpl-contact .s-area .frame {
    width: 100%; }
  body.tpl-contact .s-area:first-child {
    order: 2; }
    @media (min-width: 640px) {
      body.tpl-contact .s-area:first-child {
        order: 1; } }

@media (min-width: 640px) {
  body.tpl-contact .cell:nth-child(2) {
    padding: 0 3rem; } }

/*
 * Styles for the landing template.
 *
 * RB
 */
.tpl-landing #area-passenger {
  background-color: #3c4646; }

.tpl-landing #page-logo {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 10rem;
  display: none; }
  @media (min-width: 640px) {
    .tpl-landing #page-logo {
      display: block; } }

.tpl-landing .s-area {
  padding: 2rem;
  padding-bottom: 5rem; }
  .tpl-landing .s-area:nth-child(2) {
    padding-top: 5rem;
    padding-bottom: 2rem; }
  @media (min-width: 640px) {
    .tpl-landing .s-area {
      padding-bottom: 2rem;
      padding-right: 5rem; }
      .tpl-landing .s-area:nth-child(2) {
        padding-top: 2rem;
        padding-left: 5rem;
        padding-right: 2rem; } }
  .tpl-landing .s-area .mod-navigation-main {
    position: absolute;
    bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    left: 0; }
    .tpl-landing .s-area .mod-navigation-main a {
      font-size: 0.8em; }

.tpl-landing .s-area .mod-navigation-main {
  display: none; }
  @media (min-width: 640px) {
    .tpl-landing .s-area .mod-navigation-main {
      display: block; } }
  .tpl-landing .s-area .mod-navigation-main a {
    color: #3c4646; }

.tpl-landing .s-area.style--dark .mod-navigation-main a {
  color: #fff; }

.tpl-landing .area-logo {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  padding: 0.5rem;
  top: 0;
  bottom: 0;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 10rem; }

/*
 * Adjustments
 */
.style--full-width {
  max-width: 100%; }

  
