/* ubuntu-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  src: url('../Fonts/ubuntu-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../Fonts/ubuntu-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url('../Fonts/ubuntu-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('../Fonts/ubuntu-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

:root {
  --distance-between-elements: 128px;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  background-color: #222;
}

html, body {
  height: 100%;
}

body {
  margin: 0px;
  max-width: 2100px;
  margin-left: auto;
  margin-right: auto;
}
body.menu-visible {
    overflow: hidden;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

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

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

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

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

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

}



/*
 * Globale definitions
 */

 p, a, a:link, ul, li, label, input, textarea, select, button, table {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
}
a {
  text-underline-offset: 3px;
  color: inherit;
}
h1, h2, h3, h4, h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
}

 .white, .white a, .white h1::after {
  color: #fafafa;
 }

 .black, .black a, .black h1::after {
  color: #222;
 }

 .text ul, .widget ul {
  padding: 0;
  list-style-position: outside;
  padding-left: 1.2em;
 }

 p, .text li, table, .frame li {
  font-size: 22px;
 }

 /* To standardize li size
 .widget li {
  font-size: 18px;
 }*/

 h1 {
  font-size: 40px;
 }

 h2 {
  font-size: 40px;
 }

 h3 {
  font-size: 30px;
 }

 h4 {
  font-size: 26px;
 }

 h5 {
  font: 13px;
 }

 .full-heigth {
  min-height: 100%;
 }

 .text-gradiant-color {
  background: -webkit-linear-gradient(45deg, #FF0053, #FFC200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 }

 .bold {
  font-weight: 400;
 }

 .container-centered-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
 }
 
 /* .container-single { margin-bottom:100px; } */
 .container-single > * { margin-left:auto; margin-right:auto; }
@media screen and (max-width: 969px) {
    .container-single { margin-bottom:40px; }
}
 .container-centered-wrapper .column-wrapper .left-side .widget section, .container-centered-wrapper .column-wrapper .right-side .widget section {
  margin: 40px 0 0 0;
 }

 .align-left {
  align-items: start!important;
 }

 .align-left p {
  text-align: left;
 }
 
 .container {
    max-width: 1140px;
 }

 .centered {
  text-align: center;
 }

.column {
  flex-direction: column;
}

.bg-dark-opacity {
  background-color: #ebebeb28;
}

.btn {
  max-width: 350px;
  height: 50px;
  border: 1.5px solid;
  margin: 0;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 5px 15px;
}

a.btn {
  top: 0px;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.button-wrapper {
  margin: 50px 0;
}

.btn-white {
  color: #fff;
  border-color: #fff;
} 

a.btn-white {
  color: #fff;
}

a.btn-black {
  color: #000000;
}

.norm-height {
  padding-top: 100px;
  padding-bottom: 150px;
}

/*
 * Global responsive brakepoints
 */ 

@media screen and (max-width: 969px) {
  h4 {
    font-size: 20px;
  }
  h3 {
    font-size: 24px;
  }

  h2 {
    font-size: 30px;
    margin-top: 0;
    }

  h1 {
    font-size: 30px;
  }

  p, .text li, table, .frame li {
    font-size: 18px;
    }

    section {
    margin: 20px 0 0;
    border-radius: 20px;
    }
    section.container-single {
        margin-left:0; margin-right:0;
    }
    section.site-header {
      margin: 20px 15px 0;
    }

/*    .landing-header-wrapper {
      min-height: calc(100% - 70px)!important;
    }*/

    .left-side {
      width: 100%;
    }

    .norm-height {
      padding-top: 0px;
      padding-bottom: 0px;
    }

    footer {
      margin: 50px 15px;
    }
 }

 @media screen and (min-width: 970px) {
  body {
    position: relative;
    top: 0px;
  }
  section {
    border-radius: 20px;
    box-sizing: border-box;
  }

  :not(.frame-default) > section {
    margin: 30px 30px 0px 30px;
  }

  .full-heigth {
    min-height: calc(100% - 60px);
  }

/*    .landing-header-wrapper {
    min-height: calc(100% - 70px)!important;
  }*/
 }


 
/*
 * Standard Text Element
 */

 .text-element {
  max-width: 969px;
 }

 .text-element h2:first-of-type {
  margin-top: 0;
 }

 /*
  * News Element
  */

  .news-wrapper {
    margin-top: 50px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    
  }

  .news-element-wrapper {
    display: inline-block;
    height: 400px;
    width: 290px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .blog-image {
    position: absolute;
    height: 100%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    z-index: -1px;
  }
  

  .blog-date, .blog-headline, .blog-text {
    opacity: 1;
  }

  .blog-date, .blog-headline, .blog-text, .blog-link {
    transition: ease 0.3s;
  }

  .blog-date {
    position: absolute;
    z-index: 2;
    background-color: #0000008f;
    padding: 5px 15px 5px 15px;
    right: 0px;
    font-size: 16px;
    
  }

  .blog-text-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 00px;
    background-color: #44444450;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    color: #fcfcfc;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-headline {
    font-size: 30px;
    font-weight: 400;
    margin: 10px 0;
    box-sizing: border-box;
  }

  .blog-text {
    font-size: 16px;
  }

  .blog-link {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0;
    left: 0px;
    box-sizing: border-box;
  }
  .blog-link a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  .blog-link p {
    font-size: 60px;
  }

/*
 * Text with picture on right or left side
 */


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

  .res-height {
    min-height: auto;
  }

  .text-picture-elem {
    overflow: hidden;
    position: relative;
    display: flex;
    border-radius: 20px;
    margin: 0 0 0 0;
  }

  .text-picture-elem::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
  }

  .text-picture-elem img {
    height: auto;
    width: 100%;
  }

  .picture-wrapper {
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: -1;
  }

  .text-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
    
  }

  .text-wrapper .res-image {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0px;
    top:0px;
    z-index: -2;
    background-position: center center;
    background-size: cover;
   }

   .text-wrapper .res-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0000008f;
    left: 0px;
    top:0px;
    z-index: -1;
   }

 }



 @media screen and (min-width: 970px) {
  

 .text-picture-elem {
  display: flex;
  flex-direction: row;
 }

 .text-wrapper, .picture-wrapper {
  width: 50%;
  box-sizing: border-box;
 }

 .picture-wrapper {
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
  margin-left: 15px;
  /*margin: 0 15px;*/
  box-sizing: border-box;
  border-radius: 20px;
 }

 .text-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-right: 15px;
  box-sizing: border-box;
 }

 .text-wrapper .res-image, .text-wrapper .res-bg {
  display: none;
 }

 .text-wrapper h1 {
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
 }

 

 .text-wrapper h1::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 2px;
  left: 0px;
  bottom: -17px;
 }
 .text-wrapper h2 {
  margin: 0;
 }
 .picture-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 40px;
  padding: 15px;
  box-sizing: border-box;
  
  }  
 }

 /*
 * Serviceswiper
 */

 .servicemenu-text-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;  
 }

 .servicemenu-text-inner {
  display: flex;
  max-width: 1140px;
  align-items: center;
  flex-direction: column;
 }

 .service-swiper-wrapper {
  position: relative;
  width: 100%;
  left: 0px;
  right: 0px;
 }
 
.service-swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.service-swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-swiper-wrapper .swiper-slide .btn p { margin-top: 7px; }
.service-swiper-wrapper .swiper-slide .btn a { text-decoration: none; }

.service-swiper-wrapper .swiper {
  width: 100%;
  height: 630px;
  margin: 40px 0 20px;
}

.service-menu-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.service-menu-wrapper ul {
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 0px 15px;
  background-color: #ebebeb28;
  margin-top: 50px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.service-menu-wrapper ul li{
  list-style: none;
  text-align: center;
}

.service-menu-wrapper ul li a{
  text-decoration: none;
  padding: 25px 0;
  display: block;
}

.service-swiper-wrapper .swiper-slide {
  opacity: 0.2;
  transition: ease 0.3s;
  display: flex;
  justify-content:flex-start;
  flex-direction: column;
  padding: 15px 25px;
  box-sizing: border-box;
}

.service-swiper-wrapper .swiper-slide-active {
  opacity: 1;
  transition: ease 0.3s;
}

.service-swiper-wrapper .swiper-slide-next,
.service-swiper-wrapper .swiper-slide-prev {
  opacity: 0.6;
  transition: ease 0.3s;
}

.service-swipe-icon {
  margin-top: 15px;
  font-size: 80px;
  background: -webkit-linear-gradient(#FF0053, #FFC200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-swipe-headline {
  font-size: 24px;
}

.service-swipe-headline h3{
  margin: 10px 0;
}

.service-swipe-text p {
  margin-top: 0px;
  font-size: 16px;
}

.service-swipe-box-wrapper {
  margin-top: 20px;
  width: 290px;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  flex-flow: row wrap;
  justify-content: space-between;
}

.service-swipe-box-wrapper .box {
  height: 90px;
  width: 90px;
  background-color: #00000013;
  flex-shrink: 3;
  border-radius: 15px;
}

.service-swipe-box-wrapper .box {
  padding: 2px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.service-swipe-box-wrapper .box .box-text p{
  font-size: 10px;
  line-height: 11px;
}

.service-swipe-box-wrapper .box .box-icon i{
  
  margin-top: 10px;
  font-size: 30px;
}

.service-swiper-wrapper .swiper-slide .btn {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 60px);
  margin-top: 40px;
  justify-self: flex-end;
 
}

.service-swiper-wrapper .swiper-slide .btn p {
  font-size: 16px;
}

.service-menu-wrapper ul li a {
  display: block;
  color: #fff;
  opacity: 0.5;
  transition: ease 0.2s;
}

.service-menu-wrapper ul li a:hover {
  opacity: 1;
  transition: ease 0.2s;
}

.service-menu-wrapper .active a {
  opacity: 1;
}

.service-swiper-wrapper .swiper-pagination {
  display: none;
}

.swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  opacity: 0.5;
  background-color: #fff;
  transition: ease 0.2s;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
  transition: ease 0.2s;
}

@media screen and (max-width: 969px){
  .service-menu-wrapper ul li a{
    font-size: 16px;
  }

  
}

@media  screen and (max-width: 678px) {
  section {
    box-sizing: border-box;
  }

  .service-swiper-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .service-swiper-wrapper .swiper-pagination {
    position: relative;
    margin-top: 40px;
    margin-bottom: 15px;
    display: block;
  }

  .service-menu-wrapper {
    display: none;
  }
  
 }

@media  screen and (max-height: 900px) {
  .service-menu-wrapper ul {
    margin-top: 0px;
  }

  .service-swiper-wrapper .swiper {
    width: 100%;
    height: 630px;
    margin: 0px 0 20px;
  }
  
 }

/*
 * Navigation Mobile Version
 * Ver. 1.0
 */

header.header { position:absolute; top:2px; left:0; width:100%; z-index:10000; }
.menu-visible header.header,
.stickyNavi header.header { position:fixed; top:0; }
header.header .headerWrapper { width:min(calc(100% - 60px),2040px); margin:30px auto 0; }
header.header .headerWrapper::after { opacity:0; content:''; display:block; width:min(calc(100% - 30px),2040px); height:100%; border-radius:20px; background:linear-gradient(145deg, #FF0053 0%, #FFC200 100%); box-shadow:0 0 20px 0 #0002; position:absolute; top:18px; transition:opacity 1s; }
.menu-visible header.header .headerWrapper::after { display:none; }
.stickyNavi header.header .headerWrapper::after { opacity:1; top:0; }
.stickyNavi header.header .headerWrapper { margin-top:0; transition:0; }
header.header .headerWrapper::before { opacity:0; content:''; display:block; width:min(calc(100% - 30px),2040px); height:22px; background-color:#222; position:absolute; top:-22px; z-index:-1; }
.stickyNavi header.header .headerWrapper::before { opacity:1; top:0; transition:all 1.5s 1s; }
header.header .headerInner { width:min(100%,1140px); margin:0 auto; position:relative; }
header.header .logo { position: absolute; top: 34px; left: 15px; height: auto; width: min(52vw,220px); z-index: 2; }
/*.stickyNavi header.header { background: linear-gradient(180deg,#222 40%,transparent 60%); }*/
@media screen and (max-width: 423px){
    header.header .logo { padding-top: calc(10px - 1vw); }
}
@media screen and (min-width:970px) and (max-width: 1179px) {
    header.header { top:-15px; }
    header.header .headerWrapper { width:calc(100% - 60px)!important; }
    header.header .headerWrapper::after { width:min(calc(100% - 60px),2040px); }
    .burger-menu { right:15px!important; }
}
@media screen and (min-width: 1180px) {
    header.header { top:-15px; }
    header.header .logo { top: 22px; }
    header.header .headerWrapper::before,
    header.header .headerWrapper::after { width:min(calc(100% - 60px),2040px); }
}

@media screen and (max-width: 1179px){
  header.header .headerWrapper { margin-top:25px; height:70px; width:calc(100% - 30px); }
  .menu-visible header.header .headerWrapper { margin-top:0; transition:0.4s; }
  .menu-visible header.header .logo  { top:16px; height:42px; }
  .stickyNavi header.header .logo { top:16px; height:42px; }
    
  .nav-menu .active > a { text-decoration:underline!important; }

  #header-navigation {
    display: none;
    box-sizing: border-box;
    width: 100%;
    padding-top:70px;
  }

  @keyframes line1open {
    0%   {top: 0px;}
    20%  {top: 10px; transform: rotate(0deg);}
    100% {top: 10px; transform: rotate(225deg);}
  }

  @keyframes line2open {
    0%   {opacity: 1;}
    20%  {opacity: 0;}
    100% {opacity: 0;}
  }

  @keyframes line3open {
    0%   {top: -25px;}
    20%  {top: -35px; transform: rotate(0deg);}
    100% {top: -35px; transform: rotate(-225deg);}
  }

  @keyframes line1close {
    0%   {top: 10px;}
    80%  {top: 10px; transform: rotate(-225deg);}
    100% {top: 0x; transform: rotate(0deg);}
  }

  @keyframes line2close {
    0%   {opacity: 0;}
    80%  {opacity: 0;}
    100% {opacity: 1;}
  }

  @keyframes line3close {
    0%   {top: -35px;}
    80%  {top: -35px; transform: rotate(225deg);}
    100% {top: -25px; transform: rotate(0deg);}
  }

  .burger-menu {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 26px;
    right: 15px;
    background-color: #ebebeb28;
    z-index: 10004;
    border-radius: 10px;
    overflow: hidden;
    cursor:pointer;
  }
  .menu-visible .burger-menu,
  .stickyNavi .burger-menu {
    top: 10px;
  }

  .burger-menu .line1, .burger-menu .line2, .burger-menu .line3 {
    display: inline-block;
    position: relative;
    height: 2px;
    width: 32px;
    background-color: #fff;
    left: 9px;
    content: "";
    transition: ease 0.3s;
  }

  .burger-menu .line1 {
    top: 0px;
  }

  .burger-menu .line2 {
    top: -12px;
  }

  .burger-menu .line3 {
    top: -25px;
  }

  .burger-menu .close-line1-animaton {
    animation-name: line1close;
  }
  
  .burger-menu .close-line2-animaton {
    animation-name: line2close;
  }
  
  .burger-menu .close-line3-animaton {
    animation-name: line3close;
  }

  .burger-menu .open-line1-animation, .burger-menu .open-line2-animation, .burger-menu .open-line3-animation, .burger-menu .close-line1-animaton, .burger-menu .close-line2-animaton, .burger-menu .close-line3-animaton {
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }

  .burger-menu .open-line1-animation {
    animation-name: line1open;
  }

  .burger-menu .open-line2-animation {
    animation-name: line2open;
  }

  .burger-menu .open-line3-animation {
    animation-name: line3open;
  }
  
  .mobile-bg {
    position: fixed;
    background: rgb(255,194,0);
    background: linear-gradient(135deg, rgba(255,194,0,1) 0%, rgba(255,0,83,1) 100%);
    height: 100%;
    width: 100%;
    display:none;
  }
  /*.menu-visible .mobile-bg { display:block; }*/

  .nav-outer {
    height: calc(100dvh - 70px);
    overflow: auto;
    margin: 0;
    padding: 40px 0;
    box-sizing: border-box;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-menu ul li {
    list-style-type: none;
    text-decoration: none;
    position: relative; 
  }

  .nav-menu a, .nav-menu a:hover, .nav-menu a:visited, .nav-menu a:link, .nav-menu a:active {
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
  }

  .nav-menu .lvl-2 {
    font-size: 23px;
    width: 90%;
    margin: 10px auto 6px;
/*    background-color: #ebebeb28; */
    border-radius: 20px;
    line-height: 45px;
    display: none;
  }
  
  .nav-menu .lvl-3 {
    font-size: 18px;
    line-height: 32px;
    display: none;
  }
  .nav-menu .sub-icon {
    height: 40px;
    width: 40px;
    position: absolute;
    right: 20px;
    top: 0px;
    background-color: #ebebeb28;
    border-radius: 50%;
    cursor: pointer;
  }

  .nav-menu .sub-icon::after {
    content: "";
    /*background-image: url(../Images/arrow.svg);*/
    background-image: url(../Images/mobil-navi-arrow.svg);
    height: 20px;
    width: 20px;
    position: absolute;
    z-index: 10003;
    top: 10px;
    right: 9.5px;
    background-repeat: no-repeat;
    transition: 0.5s ease;
    background-position: center center;
  }

  .nav-menu .sub-icon-ani::after {
    transform: rotate(180deg) translateY(0px);
    transition: 0.5s ease;
  }
  
  @media screen and (min-height:550px) {

    .nav-outer .visible {
      opacity: 1;
      transition: ease 0.3s;
    }
  }

  .nav-outer .nav-icons {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 15px;
  }

  .nav-outer .nav-icons div {
    height: 40px;
    width: 40px;
    margin-top: 20px;
    background-color: #ebebeb28;
    font-size: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
  }

  .nav-outer .nav-icons div a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .nav-outer .nav-icons .icon-mail {
    font-size: 20px;
  }

  .nav-outer .nav-icons .icon-phone {
    font-size: 20px;
  }

  .nav-outer .nav-icons .icon-calendar {
    font-size: 21px;
  }

  .nav-outer .nav-icons .langNavi {
    font-size: 20px;
  }

  .nav-outer .nav-icons .langNavi a{
    font-weight: 400;
  }

  .nav-icons a, .nav-icons a:link, .nav-icons a:hover, .nav-icons a:active, .nav-icons a:visited {
    color: #fff;
  }

}


/*
 * Navigation Desktop Version
 * Ver. 1.0
 */

@media screen and (min-width: 1180px) {

  .nav-menu .active > a { position:relative; }
  .nav-menu > ul > .active > a:after { content:''; display:block; height:48px; border-radius:10px; width:calc(100% - 4px); position:absolute; left:2px; bottom:14px; background-color:#fff5; }
  
  .nav-menu > ul > li:not(.active) > a::after { content:''; display:block; height:48px; border-radius:10px; width:100%; position:absolute; left:0; bottom:14px; background-color:#fff0; transition: ease 0.2s; }
  .nav-menu > ul > li:not(.active) > a:hover::after { height:48px; background-color:#fff5; bottom:14px; }
  .nav-menu .lvl-2 li.active a,
  .nav-menu .lvl-2 a:hover { background-color:#fff5; transition:all 0.3s; }
    
  nav {
    box-sizing: border-box;
    margin: 0 30px;
  }

  .relative {
    position: relative!important;
    height: 200px;
    padding: 0 30px;
  }
  
  #header-navigation {
    width: 100%;
    margin:0;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
  }

  .menu-bg-color {
    background: rgb(255,194,0);
    background: linear-gradient(145deg, #FF0053 0%, #FFC200 100%);
    border-radius: 20px 20px 0  0 ;
    padding: 10px 0;
  }

  .burger-menu {
    display: none;
  }

  .nav-outer {
    width: 1140px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .nav-menu {
    height: 100%;
    display: flex;
  }

  .nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
  }

  .nav-menu li {
    float: left;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }

  .nav-menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 0 16px 0 16px;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav-menu .lvl-2,
  .nav-menu .lvl-3 {
    padding: 10px 0 10px 0 ;
    position: absolute;
    top: 80px;
    border-color: #bebebe;
    z-index: 100;
    display: block;
    left: 0;
    border-radius: 20px;
    width: 250px;
    background-color: #222222b9;
    visibility: hidden;
    opacity: 0;
    transition: ease 0.2s;
    backdrop-filter: blur(4px);
/*    overflow: hidden; */
  }
  
  .nav-menu .lvl-3 {
    top: -10px;
    left: 235px;
  }

  .nav-menu li:hover > .lvl-2,
  .nav-menu .lvl-2 > li:hover > .lvl-3 {
    visibility: visible;
    opacity: 1;
    transition: ease 0.2s;
  }

  .nav-menu .lvl-2 li {
    display: block;
    float: inherit;
    height: 50px;
    left: 0px;
  }

  .nav-menu .lvl-2 li a{
    color:#d6d6d6;
    transition: ease 0.2s;
  }

  .nav-menu .lvl-2 li a:hover{
    color: #ffffff;
    transition: ease 0.2s;
  }

  .nav-outer .logo {
    height: 100%;
    width: 100px;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 15px;
    box-sizing: border-box;
  }

  .nav-outer .nav-icons {
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-right: 10px;
  }

  .nav-outer .nav-icons div {
    height: 40px;
    width: 40px;
    background-color: #ebebeb28;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }

  .nav-icons a, .nav-icons a:link, .nav-icons a:hover, .nav-icons a:active, .nav-icons a:visited {
    color: #fff;
  }

  .nav-outer .nav-icons div a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .nav-outer .nav-icons .icon-mail {
    font-size: 20px;
  }

  .nav-outer .nav-icons .icon-phone {
    font-size: 20px;
  }

  .nav-outer .nav-icons .icon-calendar {
    font-size: 21px;
  }

  .nav-outer .nav-icons .langNavi {
    font-size: 20px;
  }
  .nav-outer .nav-icons .langNavi a {
    font-weight: 400;
  }
}

/*
 * Container 50/50
 */

 .container-centered-wrapper .W50-50 .container-centered-wrapper {
  
  
  justify-content: inherit;
  align-items: inherit;
  
 }

 .container-centered-wrapper .W50-50 {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;  
 }

 .container-centered-wrapper .W50-50 .left-side {
  width: 100%;
 }
 .container-centered-wrapper .W50-50 .right-side {
  width: 100%;
 }

 .container-centered-wrapper .W50-50 .right-side .container-centered-wrapper{
  margin: 0px!important;
 }

 .container-centered-wrapper .W50-50 .left-side h3 {
  margin-top: 0;
 }
 
 .container-centered-wrapper .W50-50 p:last-child {
  margin-bottom: 0;
 }

 @media screen and (min-width: 969px){

  .container-centered-wrapper .W50-50 .frame-default h3 {
    margin-top: 0;
   }

  .container-centered-wrapper .W50-50 .left-side {
    width: 50%;
   }
   .container-centered-wrapper .W50-50 .right-side {
    width: 50%;
   }
   .container-centered-wrapper .W50-50 {
    flex: 0 1140px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: start;
    gap: 30px;
   }

   .container-centered-wrapper .W50-50 .right-side .container-centered-wrapper{
    margin: 40px 0 0 0!important;
   }
 }


/*
 * Container 66/33
 */

 .container-centered-wrapper .W66-33 .left-side {
  width: 100%;
 }
 .container-centered-wrapper .W66-33 .right-side {
  width: 100%;
 }

 .container-centered-wrapper .W66-33 {
  flex: 0 1140px;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
 }

 @media screen and (min-width: 969px){
  .container-centered-wrapper .W66-33 .left-side {
    width: 66%;
   }
   .container-centered-wrapper .W66-33 .right-side {
    width: 33.333%;
   }
 }

 @media screen and (min-width: 677px){
  .container-centered-wrapper .W66-33 .left-side {
    width: 66%;
   }
   .container-centered-wrapper .W66-33 .right-side {
    width: 33.333%;
   }
 }


/*
 * Contact Form
 */

 form {
  box-sizing: border-box;
 }

 
 .form-group {
  padding: 15px 0;
  position: relative;
 }

 .form-group label {
  position: absolute;
  top: 29px;
  left: 15px;
  font-size: 22px;
  display: none;
 }

 .form-group .input {
  color: #fff;
 }

 .form-group input, .form-group .form-control {
  width: 100%;
  box-sizing: border-box;
  background: none;
  color: #fff;
  border: 1.5px solid #b3b3b3;
  padding: 20px 15px;
  border-radius: 10px;
  transition: ease 0.2s;
 }

 .form-group input:focus, .form-group .form-control:focus {
  border: 1.5px solid #ffffff;
  outline:none;
  transition: ease 0.2s;
 }

 .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  min-height:160px;
 }

 .form-group .form-text {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  position: absolute;
  top: 34px;
  left: 16px;
  font-size: 16px;
  transition: ease 0.2s;
  color: #444;
  pointer-events: none;
 }

 .form-group .focusclass {
  top: 21px;
  left: 16px;
  font-size: 10px;
  transition: ease 0.2s;
 }

 .actions .form-navigation {
  margin: 0;
 }

 .form-group input.form-control,
 .form-group textarea.form-control {
    background-color:#fff;
    color:#000;
    font-size:18px;
 }

 #contact-11 .frame-type-text {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  padding: 0;
  font-size: 10px;
}

#contact-11 .frame-type-text p {
  font-size: 16px;
}

.form-group .checkbox label{
  display: inherit;
  top: 0;
  left: 0;
  position: relative;
  font-size: 16px;
}

.form-group .checkbox label a{
  text-decoration-line: underline;
}
#contact-11-checkbox-1 {
  width: inherit;
  height: 16px;
  width: 16px;
}

.actions .submit {
  width: 450px;
}

.actions .submit button { padding:10px 50px; font-family:'Ubuntu',sans-serif; font-weight:300; font-size:20px; color:#fff; border-radius:20px; border: none; cursor:pointer; z-index:1000; background:linear-gradient(145deg, #FF0053 0%, #FFC200 100%); }

.form-check input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.00001;
}

.form-check input[type="checkbox"] + span {
    position: relative;
    display:block;
    padding: 7px 0 10px 50px;
}

.form-check input[type="checkbox"] + span::before {
    font-family: "Font Awesome 5 Pro";
    content: '';
    color: #000;
    font-size: 25px;
    text-align: center;
    line-height: 35px;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: 1.5px solid #b3b3b3;
    border-radius: 10px;
}

.form-check input[type="checkbox"]:checked + span::before {
    content: '\f00c';
}

.frame-type-form_formframework p {
  font-size: 16px;
}

.frame-type-form_formframework .actions {
  margin-top: 29px;
}

/*
 * Herostage Index
 */

 .landing-header-wrapper {
  max-width: 2100px;
/*  min-height: 100%; */
  background-color: rgb(255,194,0);
  background-image: linear-gradient(145deg, #FF0053 0%, #FFC200 100%);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
 }

 .landing-header-wrapper h1,.landing-header-wrapper h2,.landing-header-wrapper p {
  color: #fff;
 }

 .landing-header-wrapper h2 {
  max-width: 550px;
  margin-bottom: 0;
  margin-top: 40px;
 }

 .landing-header-wrapper p {
  max-width: 550px;
 }

 .landing-header-outer {
  width: 1140px;
  min-height: 100%;
  padding: 100px 15px 30px 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
 }

 .landing-header-outer .company-logo {
  max-width: 620px;
  height: auto;
  margin-top: 40px
 }

 @media  screen and (max-height: 900px) {
  .landing-header-outer .company-logo {
    max-width: 580px;
   }
   .landing-header-wrapper h2 {
    max-width: 800px;
   }
   .landing-header-wrapper p {
    max-width: 650px;
   }
 }

/*
 * Site Header
 */

 .site-header-outer {
  max-width: 2100px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.site-header-content h2 {
  font-size: 44px;
  margin-top: 0;
}

.site-header-content-wrapper {
  width: 1140px;
  display: flex;
  min-height: 350px;
  padding: 145px 15px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
@media screen and (min-width: 970px) {
    .site-header-content-wrapper {
        padding-top: 115px;
    }
}
.site-header-content {
  max-width: 800px;
}

.text-full-width {
  width: 1140px;
 }

 /*
  * Text with picture
  */

  .text-picture-elm-wrapper {
    max-width: 1140px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: calc(var(--distance-between-elements) * 2 / 3) ;
  }

  @media (min-width: 970px) {
    .text-picture-elm-wrapper p:last-child {
      margin-top: 44px;
    }
  }

  @media screen and (min-width: 970px) {
    .text-picture-elm-wrapper { gap: var(--distance-between-elements); }
    
  }

  .text-picture-elm-text-outer {
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  .text-picture-elm-text-wrapper, .text-picture-elm-picture-wrapper {
    width: 50%;
    box-sizing: border-box;
  }

  .text-picture-elm-picture-wrapper {
    display: flex;
    align-items: center;
    
  }

  .text-picture-elm-picture-wrapper .picture {
    height:  500px;
    width: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center center;
  }

  .text-picture-elm-wrapper .text-picture-elm-text-outer:nth-child(2n) .text-picture-elm-text-wrapper{
    order: 2;
  }
  .text-picture-elm-wrapper:nth-child(2n) .text-picture-elm-picture-wrapper {
    order: 1;
  }

  @media screen and (max-width: 969px) {
    .text-picture-elm-wrapper .text-picture-elm-text-outer:nth-child(2n) .text-picture-elm-text-wrapper{
      order: 0;
    }
    .text-picture-elm-wrapper:nth-child(2n) .text-picture-elm-picture-wrapper {
      order: 0;
    }

    /*.text-picture-elm-wrapper {
      padding: 15px 0;
    }*/

    .text-picture-elm-text-outer {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .text-picture-elm-text-wrapper, .text-picture-elm-picture-wrapper {
      width: 100%;
    }
  }


/*
 * Textelement stadard
 */

  @media screen and (max-width: 969px) {
    .site-header-content h2 {
      font-size: 30px;
    }
  }
  
/*
 * Teamheader
 */

 .site-header-company-content {
  max-width: 100%;
}

.site-header-company-content-inner {
  display: flex;
  flex-direction: row;
  
  

}

.team-text-wrapper h3 {
  margin-bottom: 0;
}

.team-text-wrapper .title {
  margin-top: 0;
  font-size: 15px;
}

.site-header-company-content-inner .team:first-of-type {
  padding: 50px 35px 50px 0;
}

.site-header-company-content-inner .team {
  padding: 50px 0 50px 35px;
}

.team {
  max-width: 50%;
  box-sizing: border-box;
 
}

.team img {
  width: 175px;
  height: auto;
  
  border-radius: 20px;
  margin: 0 10px 10px 0;
}

.team-image-wrapper {
  height: 175px;
  width: 175px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
}



@media screen and (max-width: 800px) {
  .team {
    max-width: 100%;
   
  }
  .site-header-company-content-inner {
    flex-direction: column;
  }


  .site-header-company-content-inner .team:first-of-type {
    padding: 50px 0 0 0;
  }
  
  .site-header-company-content-inner .team {
    padding: 0 0 50px 0;
  }
}

@media screen and (max-width: 520px) {
  .team img {
    width: inherit;
    max-width: 100%;
    height: auto;
    float: inherit;
    border-radius: 20px;
    margin: 0 10px 10px 0;
  }
}

 /*
  * general frame styling
  */

/* frame class field is used for dimensions of elements */
.frame { box-sizing: border-box; }
body > .frame-default, body > div[itemscope] > .frame-default  { max-width: 1140px; color: #fff; padding: 0 15px; margin: var(--distance-between-elements) auto; }
body > .frame-default > :last-child { margin-bottom: 0; }
.frame-full-width:not(.frame-type-mask_textstage_for_subpages):not(.frame-type-mask_textstage_team) { margin: var(--distance-between-elements) 0; padding: 0 15px; }

@media (max-width: 969px) {
  .frame-full-width:not(.frame-type-mask_textstage_for_subpages):not(.frame-type-mask_textstage_team) { 
    margin: calc(var(--distance-between-elements) * 2 / 3) 0; 
  }
}

/* layout field is used for background colors / gradients */
.frame-layout-1 > section { background:linear-gradient(145deg, #222 0%, #444 100%); padding:15px 0; }
.frame-layout-1 > section > div { max-width:1110px; margin:30px auto; padding-left:15px; padding-right:15px; }
.frame-layout-2 > section { background: rgb(255,194,0); background: linear-gradient(145deg, #FF0053 0%, #FFC200 100%);  }

.color-bg {
    background: rgb(255,194,0);
    background: linear-gradient(145deg, #FF0053 0%, #FFC200 100%);
   }

@media (max-width: 969px) {
  body > .frame-default, body > div[itemscope] > .frame-default {
    margin: calc(var(--distance-between-elements) * 2 / 3) auto;
  }
}

 /*
  * Footer
  */

footer {
  margin: 50px 30px 0;
  
}

.footer-wrapper h1,.footer-wrapper h2,.footer-wrapper h3,.footer-wrapper p,.footer-wrapper a,.footer-wrapper a:link,.footer-wrapper a:hover {
 color: #f7f6f6;
 text-decoration: none; 
}

.footer-wrapper a{
  text-decoration-line: underline !important;
}

.footer-wrapper h3 {
  font-size: 20px;
  font-weight: 400;
}

.footer-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  min-height: 320px;
  background: rgb(255,194,0);
  background: linear-gradient(145deg, #FF0053 0%, #FFC200 100%);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.footer-content {
  width: 1140px;
  display: flex;
  flex-direction: row;
  position: relative;
  box-sizing: border-box;
  
}

.footer-content p {
  font-size: 18px;
}

.footer-left, .footer-center, .footer-right {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  padding: 0 15px 0 15px;
  box-sizing: border-box;
}

.footer-left, .footer-right {
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-center {
  margin-top: 41px;
  align-items: center;
}

.footer-right {
    align-items: flex-end;
}

.footer-right h3 { padding-right: 39px; }

.footer-center img {
  max-width: 220px;
  height: auto;
}

.footer-center p {
  max-width:  300px;
}

.footer-center .frame-layout-0 { padding-top:20px; }

.footer-adress, .footer-phone, .footer-mail, .footer-opening-time, .footer-calendar {
  padding-left: 30px;
  position: relative;
  box-sizing: border-box;
}

.footer-adress i, .footer-phone i, .footer-mail i, .footer-opening-time i, .footer-calendar i {
 font-size: 20px;
 position: absolute;
 left: 0px;
}

.footer-calendar i{
  font-size: 23px;
  top: 1px;
}

.footer-adress i, .footer-opening-time i {
  top: 5px;
}

.footer-phone i, .footer-mail i {
  top: 3px;
}

.footer-menu {
 max-width: 100%;
 padding-bottom: 90px;
 display: flex;
 flex-direction: column;
 align-items: end;
}

.footer-menu p {
  margin: 5px 50px 15px 50px;
  font-size: 12px;
}

.footer-menu ul {
  display: flex;
  gap: 20px;
  margin: 15px 50px 0;
  padding: 0;
}

.footer-menu a, .footer-menu p {
  color: #ffffff77;
  text-decoration: none;
}

@media screen and (max-width: 969px){
  footer {
    margin: 50px 15px 0;
  }
  
  .footer-content {
    flex-direction: column;
  }

  .footer-left, .footer-center, .footer-right {
    width: 100%;
    align-items: center;
  }
  
  .footer-left > *, .footer-right > * { width:240px; margin-left:auto; margin-right:auto; }

  .footer-center {
    order: 1;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 3;
    margin-top:0;
  }
  
  .footer-center .frame-layout-0 {
    padding: 0;
  }
  
  .footer-left h3,.footer-right h3 {
    padding-right:0; text-align:center; margin-bottom:5px;
  }

  .footer-center p {
    display: none;
  }
  

  .footer-menu {
    max-width: 100%;
    margin: 15px 0 0;
    align-items: center;
    flex-wrap: wrap;
   }

   .footer-menu ul {
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
   }

  .footer-menu p {
      margin: 10px 0 15px;
  }

}

.sliderBasic { padding-bottom:50px; margin-top:50px!important; }
.sliderBasic .swiper-slide { background-color:#fff; color:#222; border-radius:20px; text-align:center; }
.sliderBasic .swiper-slide > div { padding:30px; }
@media screen and (min-width: 768px) {
    .frame-layout-1 > section { padding:30px 0; }
    .sliderBasic .swiper-slide > div { padding:50px; }
}

.swiper-slide { height:auto; }
.sliderLogo { /*padding-bottom:70px;*/ max-width:1400px; }
.sliderLogo .swiper-slide { background-color:#fff; border-radius:20px; }
.sliderLogo .swiper-slide > div { padding:25px 40px; line-height:50px; height:50px; text-align:center; }
.sliderLogo .swiper-slide img { max-width:100%; height:auto; max-height:50px; vertical-align:middle; }
.sliderLogo .swiper-pagination { color:#fff; font-size:22px; font-family:'Ubuntu',sans-serif; font-weight:500; }
.sliderLogo .swiper-button-next,
.sliderLogo .swiper-button-prev { top:unset; bottom:2px; color:#fff; }
.sliderLogo .swiper-button-next { right:calc(50% - 70px); }
.sliderLogo .swiper-button-prev { left:calc(50% - 70px); }
.sliderLogo .swiper-button-next:after,
.sliderLogo .swiper-button-prev:after { font-size:22px; }

figure.table { margin:0; overflow-x:auto; }
.table table { border-collapse:collapse; width:100%; }
.table td,
.table th { padding:8px; border-bottom:solid 2px #444; text-align:left; }
.table-striped tr:nth-child(even) { background-color:#292929; }
.table-striped td,
.table-striped th { border-width:1px; }

.accordeonItem { color:#fff; margin:20px 0; background:linear-gradient(145deg, #222 0%, #444 100%); border-radius:20px; }
.accordeonItem .accordeonToggle { cursor:pointer; }
.accordeonItem .headline { padding:18px 40px 18px 15px; position:relative; }
.accordeonItem .headline::after { content:''; width:30px; height:30px; line-height:30px; content:'\f078'; font-size:20px; font-family:'Font Awesome 5 Pro'; text-align:center; position:absolute; top:calc(50% - 15px); right:10px; transition:all 0.5s; }
.accordeonItem.open .headline::after { transform:rotate(180deg); }
.accordeonItem .headline h3 { margin:0; }
.accordeonItem .accordeonContent { display:none; padding:15px 15px 30px; margin-top:5px; }
.accordeonItem.open .accordeonContent { display:block; }
@media screen and (min-width: 768px) {
    .accordeonItem .headline::after { right:25px; }
    .accordeonItem .headline { padding:30px 60px 30px 15px; position:relative; }
}

#stickyContactButton { padding:10px 30px; position:fixed; bottom:30px; right:15px; font-family:'Ubuntu',sans-serif; font-weight:400; font-size:22px; color:#000; border-radius:20px; cursor:pointer; z-index:1000; background:linear-gradient(#222,#222) padding-box, linear-gradient(145deg, #FF0053 0%, #FFC200 100%) border-box; border: 3px solid transparent; box-shadow:0 3px 15px 5px #0003; transition:all 0.5s; }

#stickyContactButton div{
  background: linear-gradient(145deg, #FF0053 0%, #FFC200 100%); background-clip: text; -webkit-text-fill-color: transparent;
}

#stickyContactButton:hover { box-shadow:0 3px 15px 5px #fff3; }
#stickyContactContent { position:fixed; bottom:-600px; opacity:0; right:15px; width:340px; box-shadow:0 3px 40px 15px #0008; border-radius:20px; transition:all 0.5s; z-index:1000; }

#stickyContactContent .header { padding:15px; text-align:center; color:#fff; background:linear-gradient(145deg, #FF0053 0%, #FFC200 100%); border-top-left-radius:20px; border-top-right-radius:20px; }

#stickyContactContent .content { padding:1px 15px 15px; background-color:#fff; color:#222; border-bottom-left-radius:20px; border-bottom-right-radius:20px; }
#stickyContactContent .partOne { padding:10px 20px; }
#stickyContactContent .partOne p { font-size:19px; }
#stickyContactContent .partTwo { padding:1px 22px 1px 56px; font-size:17px; background:linear-gradient(145deg, #00000005 0%, #0003 100%); border-radius:20px; position:relative; }
#stickyContactContent .partTwo i { position:absolute; top:20px; left:20px; }
#stickyContactContent .partTwo p { font-size:16px; }
#stickyContactContent .partTwo b { font-weight:400; font-size:17px; margin-bottom:7px; display:inline-block; }
#stickyContactContent.open { bottom:30px; opacity:1; }
#stickyContactContent h3 { margin:0; color:#fff; font-size:30px; }
#stickyContactContent a { color:#222; position:relative; }
#stickyContactContent a:hover { text-decoration:underline; }
#stickyContactContent i { margin-right:15px; }
#stickyContactContent .close { position:absolute; top:5px; right:0; padding:10px; font-size:32px; cursor:pointer; color:#fff; }
@-moz-document url-prefix() { 
  #stickyContactContent .close { 
    top: 8px;
  } 
}

@media (max-width: 480px) {
  #stickyContactContent {
    left: 50%;
    transform: translateX(-50%);
  }
}


.frame-type-news_newsdetail { max-width:1140px; margin:0 auto; }
.news-single { padding-top:150px; }
.news-single .header h1 { font-size:36px; }

.servicemenu-text-inner h2 { margin-top:35px; }

.breadcrumb { display:block; width:100%; color:#fff; font-size:16px; line-height:20px; left:0; margin:0; padding-top: 15px; width:100%; z-index:10; }
.breadcrumb ol { list-style-type:none; margin:0 auto; width:calc(100% - 60px); padding:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
@media screen and (min-width: 970px) {
    .breadcrumb ol { width:calc(100% - 90px); }
}
@media screen and (min-width: 1220px) {
    .breadcrumb ol { width:1110px; }
}
.breadcrumb li { display:inline; padding:0; }
.breadcrumb li.active { font-weight:500; }
.breadcrumb .icon { display:inline-block; transform:translate(0,4px); }
.breadcrumb .icon svg { margin:0 5px; vertical-align:top; height:13px; }
.breadcrumb a,
.breadcrumb a:visited { color:#fff; text-decoration:none; }
.breadcrumb a:hover { color:#fff; text-decoration:underline; }
@media (max-width:599px) {
    .breadcrumb { font-size:15px; }
    .breadcrumb .icon svg { margin:0 4px; height:12px; }
}

