/*
==================================================
CSS-RESET
==================================================
*/
* {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  text-align: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
==================================================
GENERAL
==================================================
*/
html {
  height: 100%;
  min-width: 320px;
  background: #fff;
  overflow-y: scroll;
  font-size: 62.5%;
  font-size: calc(6.3px + 0.2vw);
}
body {
  position: relative;
  min-height: 100%;
  margin: 0 auto;
  color: #42454A;
  text-align: left;
  font: 1.9em/1.33 Netto, Arial, Helvetica, sans-serif;
  overflow: hidden;
  font-weight:300;
}

/* ---------- Elements ---------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
table,
dl,
ul,
ol,
blockquote,
form,
legend,
time {
  margin-bottom: 1rem;
}
b,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
dt,
th,
caption,
legend {
  font-weight: bold;
}
em,
i,
q,
blockquote {
  font-style: italic;
}
sup,
sub {
  font-size: 0.8em;
  position: relative;
  bottom: 0.4em;
}
sub {
  bottom: auto;
  top: 0.25em;
}
ul {
  list-style: square outside;
}
ol {
  list-style: decimal outside;
}
li {
  margin: 0 0 0 4.2rem;
}
ul > li {
  margin: 0 0 0 3.8rem;
  padding-left: 0.4rem;
}
h1, .h1 {
  font-size: 5.4rem;
  line-height: 1;
  column-span: all;
}
h2, .h2 {
  font-size: 5rem;
  line-height: 1;
  column-span: all;
}
h3, .h3 {
  font-size: 4rem;
  line-height: 1;
  column-span: all;
}
h4, .h4, footer h2 {
  font-size: 3.6rem;
  line-height: 1;
}
h5, .h5 {
  font-size: 3.2rem;
  line-height: 1;
}
h6, .h6 {
  font-size: 2.4rem;
  line-height: 1;
}
object,
embed,
video,
iframe,
audio {
  margin: 0 auto 1.5rem;
  display: block;
  max-width: 100%;
}
iframe {
  width: 100%;
  min-height: 30rem;
  border: 1px solid #eee;
}
img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
figure,
figure img {
  display: block;
}
figcaption {
  display: block;
  font-size: 0.8em;
  opacity: 0.5;
  font-style: italic;
  padding: 0.2em 0.6em;
}
a {
  color: #0068c7;
}
a:hover {
  color: #3da0fb;
}
hr {
  border-bottom: 1px solid;
  clear: both;
}
p.big {
  font-size: 1.5em;
}
time {
  display: inline-block;
}

/* ---------- Tables ---------- */
table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
td,
th {
  padding: 0.5rem 1rem;
  border: 0;
  vertical-align: top;
  border: 1px solid rgba(0,0,0,0.2);
}
th {
  background-color: rgba(0,0,0,0.2);
}
table p {
  margin: 0 0 0.8rem;
}
table p:last-child {
  margin: 0;
}


/* ---------- Forms ---------- */
input,
select,
textarea {
  color: #686868;
  background-color: #fff;
  padding: 0.4rem 1rem;
  width: 100%;
  height: 4rem;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #DDDDDD;
}
input {
  line-height: 2rem;
}
select {
  padding: 1.1rem 0.6rem 1.1rem 0.3rem;
  position: relative;
  z-index: 10;
}
textarea {
  height: 10em;
  max-width: 100%;
}
label {
  width: 32.3333%;
  float: left;
  margin: 1px 1% -1px 0;
  border-bottom: 1px dotted #ccc;
}
label[for] {
  cursor: pointer;
}
:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
::-moz-placeholder {
  color: #999;
  opacity: 1;
}
::placeholder {
  color: #999;
  opacity: 1;
}
input[type="file"] {
  max-width: 350px
}
form {
  clear: both;
}
fieldset {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 15px;
}
form div {
  position: relative;
}
form > div,
fieldset > div {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 15px;
}

form p {
  width: 100%;
  margin-top: 1.2rem;
  float: left;
}
form h2 + p,
form h2 + div p,
form p + div p {
  margin-top: 0;
}
input[type="checkbox"]~label,
input[type="radio"]~label {
  width: auto;
  padding-left: 2.4rem;
  border: none;
}
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  top: 0.3rem;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
input[type="radio"] {
  border-radius: 50%;
}
label + div > input,
label + div > select,
label + div > textarea {
  width: 100%;
}
.button {
  background: #8c8c8c;
  color: #fff;
  float: none;
  display: inline-block;
  width: auto;
  min-width: 32rem;
  text-align: center;
  cursor: pointer;
  padding: 0.6em 1.2em;
  text-decoration: none;
  line-height: 3.5rem;
  height: auto;
}
.button:hover {
  color: #fff;
  opacity: 0.8;
}
.button.button--primary {
  background: #0068c7;
}
.button.button--dark{
  background: #333333;
}
.button.button--primary:hover {
  color: #fff;
  opacity: 0.8;
}

/* Helpers */
.clearfix:after,
nav:after {
  content: "";
  line-height: 0;
  clear: both;
  display: table;
}
.label {
  font-weight: bold;
}

/* Additional HTML5 Element-Definitions */
header,
main,
footer,
aside,
article,
nav {
  display: block;
}

/* Teaser */
.teaser a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.teaser a:hover {
  color: inherit;
}

.messages {
  padding: 1em 3em 1em 1em;
  background-repeat: no-repeat;
  background-position: right 1em top 1em;
  background-size: 1.5em;
}
.messages em.placeholder:first-child {
  font-weight: bold;
}
.messages pre.backtrace {
  font-size: 0.8em;
  font-style: italic;
}
.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  background-image: url(../../../core/misc/icons/e32700/error.svg);
  box-shadow: -8px 0 0 #e62600; /* LTR */
}
.messages--warning {
  background-color: #fdf8ed;
  background-image: url(../../../core/misc/icons/e29700/warning.svg);
  color: #734c00;
  box-shadow: -8px 0 0 #e09600; /* LTR */
}
.messages--status {
  color: #325e1c;
  background-color: #f3faef;
  background-image: url(../../../core/misc/icons/73b355/check.svg);
  box-shadow: -8px 0 0 #77b259;
}

/*
==================================================
Einfache Utility-Klassen
==================================================
*/
.p-std, .p-h-std, .p-l-std, .p-big, .p-h-big, .p-l-big {padding-left:2rem !important;}
.p-std, .p-h-std, .p-r-std, .p-big, .p-h-big, .p-r-big {padding-right:2rem !important;}
.p-std, .p-v-std, .p-t-std, .p-big, .p-v-big, .p-t-big {padding-top:2rem !important;}
.p-std, .p-v-std, .p-b-std, .p-big, .p-v-big, .p-b-big {padding-bottom:2rem !important;}

.m-0, .m-h-0, .m-l-0 {margin-left:0 !important;}
.m-0, .m-h-0, .m-r-0 {margin-right:0 !important;}
.m-0, .m-v-0, .m-t-0 {margin-top:0 !important;}
.m-0, .m-v-0, .m-b-0 {margin-bottom:0 !important;}

.m-std, .m-h-std, .m-l-std, .m-big, .m-h-big, .m-l-big {margin-left:2rem !important;}
.m-std, .m-h-std, .m-r-std, .m-big, .m-h-big, .m-r-big {margin-right:2rem !important;}
.m-std, .m-v-std, .m-t-std, .m-big, .m-v-big, .m-t-big {margin-top:2rem !important;}
.m-std, .m-v-std, .m-b-std, .m-big, .m-v-big, .m-b-big {margin-bottom:2rem !important;}

@media (min-width: 1000px) {
  .p-big, .p-h-big, .p-l-big {padding-left:6rem !important;}
  .p-big, .p-h-big, .p-r-big {padding-right:6rem !important;}
  .p-big, .p-v-big, .p-t-big {padding-top:6rem !important;}
  .p-big, .p-v-big, .p-b-big {padding-bottom:6rem !important;}

  .m-big, .m-h-big, .m-l-big {margin-left:6rem !important;}
  .m-big, .m-h-big, .m-r-big {margin-right:6rem !important;}
  .m-big, .m-v-big, .m-t-big {margin-top:6rem !important;}
  .m-big, .m-v-big, .m-b-big {margin-bottom:6rem !important;}

}

/*
==================================================
Breadcrumb
==================================================
*/
.breadcrumb li a:after {
  content: "\00bb";
  display: inline-block;
  margin-left: 0.75em;
}

/*
==================================================
CKEditor
==================================================
*/
body.cke_editable {
  padding: 2rem;
}

/*
==================================================
Files
==================================================
*/
.file a:before {
  content: "\f016";
  display: inline-block;
  font-family: 'FontAwesome';
  margin-right: 0.5em;
}
.file--general a:before,
.file--application-octet-stream a:before {
  content: "\f016";
}
.file--application-x-executable a:before {
  content: "\f016";
}
.file--text-x-script a:before {
  content: "\f1c9";
}
.file--package-x-generic a:before {
  content: "\f1c6";
}
.file--x-office-spreadsheet a:before {
  content: "\f1c3";
}
.file--x-office-document a:before {
  content: "\f1c2";
}
.file--x-office-presentation a:before {
  content: "\f1c4";
}
.file--text-html a:before {
  content: "\f1c9";
}
.file--text-plain a:before {
  content: "\f0f6";
}
.file--application-pdf a:before {
  content: "\f1c1";
}
.file--audio a:before {
  content: "\f1c7";
}
.file--video a:before {
  content: "\f1c8";
}
.file--text a:before {
  content: "\f0f6";
}
.file--image a:before {
  content: "\f1c5";
}

/*
==================================================
Fancybox
==================================================
*/
body.fancybox-active {
  margin: 0;
  overflow: hidden;
}

/*
==================================================
Pager
==================================================
*/
.pager ul.pager__items {
  list-style: none;
  text-align: center;
  padding: 2em 0;
}
.pager ul.pager__items li.pager__item {
  display: inline-block;
  float: none;
}
.pager ul.pager__items li.pager__item a,
.pager ul.pager__items li.pager__item.pager__item--ellipsis {
  padding: 0.5em;
}
.pager ul.pager__items li.pager__item a {
  background: rgba(0,0,0,0.02);
  min-width: 2.5em;
  display: block;
}
.pager ul.pager__items li.pager__item.is-active a {
  font-weight: bold;
  background: rgba(0,0,0,0.1);
}
/*
  ==================================================
  Wrapper Text With Media
  ==================================================
  */
.wrapper-inner{
  display: flex;
  flex-wrap: wrap;
}

.paragraph--type--etagen-wrapper .paragraph--type--etagen-media img{
  height: 100%;
  object-fit: cover;
  display: block;
  width: 100%;

}

.paragraph--type--etagen-wrapper .paragraph--type--etagen-media article,
.paragraph--type--etagen-wrapper .paragraph--type--etagen-media article a{
  height: 100%;
}

/*
  ==================================================
  Cookie consent
  ==================================================
  */
.cc_banner-wrapper {
  z-index: 9001;
  position: relative;
}
.cc_container {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid #ccc
}
.cc_container,
.cc_message,
.cc_btn {
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
a.button.cc_btn {
  float: right;
  margin-left: 1rem;
  margin-bottom: 0;
}
/*
==================================================
Col Layout
==================================================
*/
.flex-grid {
  display:flex;
  flex-wrap:wrap;
}
.flex-row {
  display:flex;
}
.flex-col {
  display:flex;
  flex-direction:column;
}
.row {
  width: 100%;
  clear: both;
  margin: 0 auto;
}

.row-12 {
  max-width:164rem;
}
.col, [class^="col-"], [class*=" col-"] {
  padding: 0 2rem;
}

.col {
  float: left;
  width:100%;
}

.col-1 {
  width: 8.3333%;
}

.col-2 {
  width: 16.6666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333%;
}

.col-5 {
  width: 41.6666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333%;
}

.col-8 {
  width: 66.6666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333%;
}

.col-11 {
  width: 91.6666%;
}

.col-12 {
  width: 100%;
}

.col.swap-col {
  float: right;
}

.col .row {
  margin: 0 -2rem;
}
/*
==================================================
Header - Hauptmenü
==================================================
*/
header nav{
  display: flex;
}
nav ul{
  list-style: none;
}
header nav ul{
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
header nav a{
  font-weight: bold;
}
header nav li{
  position: relative;
}
header nav ul li a{
  padding: 0.6em 1em;
  position: relative;
}
nav ul li a, nav ol li a{
  display: block;
}
header nav ul ul li{
  display: block;
  float: none;
}
header nav ul li ul li a{
  color: #ffffff;
}
header nav ul li ul li a:hover{
  color: #ffffff;
}
header nav ul li ul li{
  margin: 0;
}
nav a, header a, footer a{
  text-decoration: none;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
}
nav > ul > li > a:hover, header nav > ul > li > a:hover, footer nav > ul > li > a:hover{
  color: #095CB8;
}
header .navi-container {
  display: flex;
  justify-content:space-between;
  align-items: center;
}
#block-default-main-menu{
  font-size: 2rem;
}
#block-default-main-menu.is-open{
  z-index: 10;
}
#block-default-main-menu a{
  padding: 1rem 1.5rem;
}
#block-default-branding img{
  width: 10rem;
}
.burger-icon:before, .burger-icon:after {
  content: "";
  display: block;
  height: 3px;
  background: currentColor;
  position: absolute;
  top: -8px;
  left: 0;
  transition: top 0.07s cubic-bezier(0.000,0.000,0.580,1.000),bottom 0.07s cubic-bezier(0.000,0.000,0.580,1.000),transform 0.2s cubic-bezier(0.000,0.000,0.580,1.000) 0.07s;
}
.burger-icon:before{
  width: 4rem;
}
.burger-icon:after{
  width: 3rem;
}
header nav .main-menu-toggle{
  color: #333333;
  position: absolute;
  right: 5em;
  z-index: 1000;
  width: 4rem;
  height: 4rem;
  min-width: 0;
  background: 0;
  padding: 0;
  outline: none;
  display: none;
}
header nav ul ul a{
  padding: 0.4em 1.2em;
  font-size: 0.75em;
}
.main-menu-toggle > .burger-icon{
  position: absolute;
  width: 4rem;
  height: 3px;
  margin-top: -1px;
  display: block;
  background: #333333;
  transition: .5s;
}

.burger-icon:after {
  top: auto;
  bottom: -8px;
}
.is-open .burger-icon:before {
  top: 0;
  transform: rotate(45deg);
}
.is-open .burger-icon:after {
  bottom: 0;
  transform: rotate(-45deg);
  width: 4rem;
}
.is-open .burger-icon {
  background:transparent;
}
/*
==================================================
Slider
==================================================
*/
.slick-dots{
  position: absolute;
  bottom: 2.5em;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
}

.slick-dots li{
  margin: 0 10px 0 0px;
  padding: 0;
}
.slick-dots li button{
  width: 1rem;
  height: 1rem;
  min-width:0;
  margin:1rem;
  padding:0;
  overflow: hidden;
  color:transparent;
  background:0;
  border-radius:50%;
  display:block;
  background:#fff;
  opacity:0.5;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.3)
}
.slick-next{
  right: 0;
  background: url("../../../custom/client/arrow_right.svg") 50% 50%;
}
.slick-prev{
  background: url("../../../custom/client/arrow_left.svg") 50% 50%;
  left: 0;
}
.slick-arrow{
  position: absolute;
  top: 0;
  height: 100%;
  width: 5rem;
  background-size: 3rem;
  min-width: 0 ;
  z-index: 1;
  transition: 0.3s;
  color: transparent;
  overflow: hidden;
  cursor: pointer;
  background-repeat: no-repeat;
}
.slick-dots li.slick-active button{
  background: #005bb8;
}
article > * > * > * .paragraph--type--etagen-media-image.wide picture img{
  min-height: 35rem;
  max-height: 100vh;
  object-fit: cover;
  display: block;
  width: 100%;
}
/*
==================================================
Teasertiles
==================================================
*/
.box1{
  grid-area: box1;
}

.box2{
  grid-area: box2;
}

.box3{
  grid-area: box3;
}

.box4{
  grid-area: box4;
}
.variantA .box1{
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row-span: 2;
}
.variantA .box2{
  -ms-grid-column: 3;
  -ms-grid-row: 1;
  -ms-grid-column-span: 2;
}
.variantA .box3{
  -ms-grid-column: 3;
  -ms-grid-row: 2;
}
.variantA .box4{
  -ms-grid-column: 4;
  -ms-grid-row: 2;
}
.teasertiles{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:25% 25% 25% 25%;
  grid-template-columns: 25% 25% 25% 25%;
  -ms-grid-rows: 25vw 25vw;
  grid-template-rows: 25vw 25vw;
  grid-gap: 2px;
  padding:0;
  margin-bottom: 2px;
  grid-template-areas:
    "box1 box1 box2 box2"
    "box1 box1 box3 box4";
}
.teasertiles > .teaser{
  height: 100%;
  position: relative;
}
.teasertiles .overlay {
  display: flex;
  align-items: flex-end;
  transition: all 0.7s ease-in-out;
  padding: 1.5rem 3rem 1.9rem;
  position: absolute;
  min-height: 5.3em;
  z-index: 1;
  width: 100%;
  bottom: 0;
}
.overlay > *:last-child{
  margin: 0;
}
.teasertiles .teaser > a,
.teasertiles .contextual-region,
.teasertiles .Image,
.teasertiles .Image > div,
.teasertiles picture,
.teasertiles img {
  height: 100%;
}
.teasertiles img {
  object-fit:cover;
}
@media print {
  .cc_banner-wrapper,
  .cc_container {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .cc_container {
    font-size: 0.75em;
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(66px);
    transform: translateY(66px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(66px);
    -ms-transform: translateY(66px);
    transform: translateY(66px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@media screen and (min-width: 1351px){
  /* das erste Menü */

  header nav ul ul {
    top: 100%;
    background: #0a5bb8;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.15);
    display: none;
    position: absolute;
    padding-top: 2rem;
    width: 27.5rem;
    z-index: 100;
  }

  header nav > ul > li:hover > ul, header nav ul li ul:hover {
    display:block
  }

  /* Das zweite Menü " Breite Variante"*/

  /*header nav ul li .menu_link_content{*/
  /*  top: 100%;*/
  /*  background: #0a5bb8;*/
  /*  box-shadow: 0 1rem 1rem rgba(0,0,0,0.15);*/
  /*  display: none;*/
  /*  position: absolute;*/
  /*  padding-top: 2rem;*/
  /*  width: 100vw;*/
  /*  left: calc(63% - 63vw);*/
  /*  padding-left: calc(50vw - 785px);*/
  /*  padding-right: calc(50vw - 785px);*/
  /*  z-index: 100;*/
  /*}*/
  header nav > ul > li:hover > .menu_link_content, header nav ul li ul:hover{
    display: block;
  }

  header nav ul li ul li{
    clear: both;
  }
}
@media (max-width: 1650px) {
  header nav > ul > li:hover > .menu_link_content, header nav ul li .menu_link_content:hover{
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
@media screen and (max-width: 1350px){
  header nav.is-open{
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  header nav ul {
    display: none;
    float: none;
  }
  header nav .main-menu-toggle {
    display: inline-block;
  }
  header nav.is-open .main-menu-toggle{
    top: 3em;
  }
  header nav.is-open > ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    align-items: center;
  }
  header nav.is-open:before, header nav.is-open:after{
    display: block;
    content: '';
    position: fixed;
    top: 13.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    transition: all 0.5s;
  }
  header nav.is-open:after{
    top: 0;
    opacity: 1;
    background-color: rgba(10,91,184,0.5);
  }

  header nav ul li a:hover {
    text-decoration: underline;
  }
  header nav li a:hover, header nav li a:active{
    color: #333333;
  }
}
@media screen and (min-width: 851px){
  .paragraph.paragraph--type--etagen-wrapper[data-items-in-a-row="2"] .paragraph{
    width: 50%;
  }
  .paragraph.paragraph--type--etagen-wrapper[data-items-in-a-row="3"] .paragraph{
    width: 33.33%;
  }
  .paragraph.paragraph--type--etagen-wrapper[data-items-in-a-row="4"] .paragraph{
    width: 25%;
  }
}
@media screen and (max-width: 850px) {
  .col-1 {
    width: 16.6667%;
  }

  .col-2 {
    width: 33.3333%;
  }

  .col-3, .footer-1 > div > * {
    width: 50%;
  }

  .col-4, .col-6, .col-8, .col-9, .col-9:first-child + .col-3:last-child, .footer-2 > div > * {
    width: 100%;
  }

  .col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-9, form > .col.col, form > .col-6.col-6, fieldset > .col.col, fieldset > .col-6.col-6 {
    margin-bottom: 1.5rem;
  }

  .col-6 .col-2, .col-4 .col-2, .col-3 .col-2 {
    width: 16.6667%;
    margin-bottom: 0;
  }

  .col-6 .col-3, .col-4 .col-3, .col-3 .col-3 {
    width: 25%;
    margin-bottom: 0;
  }

  .col-6 .col-4, .col-4 .col-4, .col-3 .col-4 {
    width: 33.3333%;
    margin-bottom: 0;
  }

  .col-6 .col-6, .col-4 .col-6, .col-3 .col-6 {
    width: 50%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  .col-1 {
    width: 25%;
  }

  .col-2 {
    width: 50%;
  }

  .col-3, .col-4, .col-6, .col-8, .col-9 {
    width: 100%;
  }

  label, fieldset div, input, textarea, select {
    width: 100%;
  }
}
@media screen and (max-width: 350px) {
  .col-1 {
    width: 50%;
  }

  .col-2, .col-3, .col-4, .col-6, .col-8, .col-9 {
    width: 100%;
  }
}



/*
Toolbar resets
 */
.toolbar li {
  margin: 0;
}

/*
Layouting
 */
.narrow > * {
  max-width: 170rem;
  margin: 0 auto;
}
.wide > * {
  max-width: 100vw;
  margin: 0 auto;
}

/**
Block: Local tasks
 */
#block-default-local-tasks {
  background: #eee;
  max-width: 1200px;
  margin: 0 auto;
}
#block-default-local-tasks ul:not(.contextual-links) {
  display: flex;
}
#block-default-local-tasks ul:not(.contextual-links) li {
  list-style: none;
  margin-left: 0;
}
#block-default-local-tasks ul:not(.contextual-links) li a {
  padding: 1rem;
  display: block;
  color: #666;
  text-decoration: none;
}
#block-default-local-tasks ul:not(.contextual-links) li a:hover {
  background: #ddd;
  color: #333;
}

.paragraph {
  width: 100%;
}

.paragraph--type--etagen-text{
  display: flex;
}
