/* cmsms stylesheet: urbach-css modified: 07/20/26 20:14:59 */
@font-face {
    font-family: 'Crimson Text';
    src: url('/fonts/crimsontext-bold-webfont.woff2') format('woff2'),
         url('/fonts/crimsontext-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
font-display: swap;
}




@font-face {
    font-family: 'Crimson Text';
    src: url('/fonts/crimsontext-bolditalic-webfont.woff2') format('woff2'),
         url('/fonts/crimsontext-bolditalic-webfont.woff') format('woff');
    font-weight: bold;
    font-style: italic;
font-display: swap;
}




@font-face {
    font-family: 'Crimson Text';
    src: url('/fonts/crimsontext-italic-webfont.woff2') format('woff2'),
         url('/fonts/crimsontext-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
font-display: swap;
}




@font-face {
    font-family: 'Crimson Text';
    src: url('/fonts/crimsontext-regular-webfont.woff2') format('woff2'),
         url('/fonts/crimsontext-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Bold.woff2') format('woff2'),
        url('/fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-BoldItalic.woff2') format('woff2'),
        url('/fonts/Roboto-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Italic.woff2') format('woff2'),
        url('/fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}




@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.woff2') format('woff2'),
        url('/fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





* {
margin : 0;
padding : 0;
}
html, body {
font-family : Roboto, Arial, Helvetica, sans-serif;
line-height : 150%;
font-size : 102%;
width : 100%;
max-width : 100%;
background : #fff;
text-align : center;
color: #535a5f;
}
div.website, div.website * {
  display: none !important;
}
p {
margin-bottom : 1em;
}
.reach {
padding: 0;
margin: 0;
text-align: left;
position: absolute;
top: 35px;
left: 15%;
}
.reach img {
width : 1.4em !important;
height : auto;
margin-right: 5em;
}

.top-container {
position : absolute;
top : 0;
left : 0;
text-align : center;
width : 100%;
color : #000;
z-index : 900;
background : #fff;
}

.centerhead {
position : relative;
margin : 0 auto;
width : 100%;
margin-top : 1.25em;
margin-left: 16px;
}
.top-container a {
color : #6c757d;
}
.top-container img {
width : 180px;
height: auto;
padding: 2em 0 3.1em 0;
}
.autor {
position : absolute;
bottom : 1em;
right : 2em;
font-size : 65%;
color : #fff;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
.hidden {
opacity : 0;
}
.visible {
opacity : 1;
}
.animated {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}


.autor a {
color : #fff;
}
.smallaut {
font-size : 60%;
text-transform : none;
color : #fff;
text-align : center;
display : flex;
flex-wrap : wrap;
justify-content : center;
margin-top : -2em;
}
.noshadow {
width : 60% !important ;
}
.smallink {
font-size : 80%;
}
.skiplink {
position : absolute;
top : -9999px;
left : -9999px;
font-size : 0;
line-height : 0;
}
.termin {
background : #f39200;
padding : 2em;
width : 100%;
color : #fff;
}
.tdli {
padding-right : 1em;
}
.menuright {
text-align : right;
}
.menuright img {
margin-top: 30px;
margin-right: 5px;
}

.mleft img {
width: 220px;
height: auto;
margin-top: 0.5em;
}
.mleft a {
color: #adacac;
}
a.phone, a.mail {
position: relative;
}
.phone img, .mail img {
position: absolute;
margin-top: 0.2em;
margin-right: 2em;
}
.dislink {
margin-left: 30px;
}
a.mail {
margin-left: 30px;
}

.box {
color : #fff;
text-align : center;
width : 100% !important ;
animation-duration : 0.5s;
animation-name : opa;
position : fixed !important ;
z-index : 1000005;
top : 8em;
display: none;
}
.box a {
color : #000;
padding : 0.3em;
display : block;
width : 100%;
height : 1em;
}

@keyframes opa {  
0% {top: -20em;}
100% {top: 8em;}
}
.boxtitle {
font-size: 150%;
color: #1c4478;
margin-bottom: 1em;
font-weight: bold;
}
a.okay {
background: #1c4478;
color: #fff;
border-radius: 12px;
display: inline-block;
padding-bottom: 0.5em;
line-height: 100%;
margin-top: 1.5em;
}
.leri {
animation-duration : 2.5s;
animation-name : leri;
}


@keyframes leri  {  
0% {margin-left: -20em;}
100% {margin-left: 0;}
}

.anihead {
animation-duration : 1s;
animation-name : anihead;
}
@keyframes anihead {  
0% {margin-top: -20em;}
100% {margin-top: 0;}
}
.feed {
font-family: Roboto, Arial, Helvetica, sans-serif;}
.searchcont {
background : rgba(249,247,249,0.95);
width : 20%;
margin : 0 auto;
position : relative;
padding : 1.5em;
color: #000;
border: 4px solid #00519e;
border-radius: 20px;
box-shadow : 0 1px 1px rgb(0, 0, 0, 0.11), 0 2px 2px rgb(0, 0, 0, 0.11), 0 4px 4px rgb(0, 0, 0, 0.11), 0 6px 8px rgb(0, 0, 0, 0.11), 0 8px 16px rgb(0, 0, 0, 0.11);
}
.searchclose {
position : absolute;
top : -1.5em;
right : 1.5em;
width : 2em !important;
height: auto;
border-radius: 25px;
border: 2px solid #00519e;
}
.shariff-button a {
background-color : #970b1b !important ;
width : 3em;
height : 3em;
}
.oben {
position : fixed;
right : 0.5em;
bottom : 3em;
z-index : 100;
width : 1.5em;
}
.oben img {
width : 100%;
height : auto;
}
.cont {
width : 70%;
max-width : 1200px;
min-height : 18em;
position : relative;
margin : 0 auto;
padding : 6em 0 5em 0;
text-align : left;
min-height : 40em;
}
.cont h1 {
color: #00519e;
}
.cont h2 {
margin: 2em 0 1em 0 !important;
display: block !important;
}
.cont a, .smallcont a {
color : #00519e;
}
.smallcont {
width: 45% !important;
}
.vorsorge {
list-style-type: none;
padding: 0 !important;
margin: 0 !important;
}
.vorsorge li {
float: left;
background: #f3f1f3;
margin-right: 0.5em;
padding: 0.5em;
}
.thumb {
display : inline;
width : 100% !important ;
}
.thumblist {
text-align : left;
display : flex;
flex-wrap : wrap;
justify-content : left;
padding : 0;
margin-top: 2em;
}
.closeall {
position : absolute;
width : 100%;
height : 100%;
display : block;
z-index : 102 !important ;
}
.previous {
position : fixed;
top : 3em;
right : 0.5em;
width : 1.8em !important ;
z-index : 150 !important ;
}
.next {
display : block;
position : fixed;
top : 6em;
right : 0.5em;
width : 1.8em !important ;
z-index : 150 !important ;
}
.exit {
display : block;
position : fixed;
top : 0;
right : 0.5em !important;
width : 1.8em !important ;
z-index : 150 !important ;
border-radius: 0 !important;
}
.close {
position : absolute;
top : 0;
right : 0.5em;
width : 2em !important ;
}
.cont h3 {
font-size : 125%;
margin : 1em 0 0.5em 0;
}
.cont ul {
margin : 0 0 0 2em;
}
.cont li {
margin-bottom : 0.5em;
}
@keyframes fadeIn {
from {
opacity : 0;
transform : translate3d(0,3%,0);
}
to {
opacity : 1;
transform : translate3d(0,0,0);
}
}
.fadeIn {
animation-name : fadeIn;
animation-duration : 1s;
}
ul {
margin : 5% 0 0 10%;
}
.flex li {
list-style-type: none;
 list-style-image: url(/uploads/images/list.png);
padding-left: 1%;
}
a {
text-decoration : none;
}
.hidden {
opacity : 0;
}
.visible {
opacity : 1;
}
h3 {
font-size : 180%;
margin : 0.7em 0 0.7em;
font-weight : bold;
color: #000;
}
.center h3 {
font-size : 130%;
margin-top : 1em;
}
.parallax {
position : relative;
width : 100%;
background-color: #020919;
background-attachment : scroll !important ;
background-position : center center !important ;
background-repeat : no-repeat;
background-size : cover;
margin : 0 auto;
text-align : center;
display : flex;
flex-wrap : wrap;
justify-content : center;
padding-top: 6em;
padding-bottom: 5em;
}
.parallax li {
list-style-image: url(/uploads/images/list-wh.png) !important;
}
.title {
text-align: left !important;
position:relative;
color: #fff;
font-family: Roboto, Arial, Helvetica, sans-serif;
font-size: 110%;
hyphens: auto;
}

h1,h2 {
hyphens: none;
}

.parasmall {
height : 352px !important ;
margin-top: 117px;
}

parasmall h1 {
padding-top : 0 !important ;
}
.anker {
display : block;
position : relative;
top : -7em;
visibility : hidden;
}
.bigwrap {
padding : 1.5em 0 3em 0;
text-align : left;
margin : 0 auto;
position : relative;
hyphens : auto;
width : 100%;
background-size: 20em auto;
}

.toptitle {
padding: 0 1em 0 0;
display: inline-block;
margin-bottom: 1em;
line-height: 110%;
font-size: 100%;
}
.bigwrap a {
color : #000;
}
.dark {
background: #00519d !important;
color : #fff !important;
}
.dark .toptitle, .dark .headl2 {
border-color: #e2f8c1;
color: #fff;
}
.ferien {
color: #000 !important;
font-weight: bold;
font-size: 90% !important;
margin-bottom: 1em;
line-height: 140%;
}
.ferien a {
color: #fff;
background: #95a94e;
display: block;
padding: 0.5em;
margin-top: 0.5em;
}
.dark a {
text-decoration : underline;
color : #fff;
}
.dark .more {
text-decoration : none;
border : none;
color : #fff;
}
.dark h2 {
color : #e6e6e4;
}
.dark img {
border-color : #fff;
}
.light {
background-color : #e7f1fb;
color: #000;
}
.mitte {
clear : both;
width : 100%;
text-align : left;
}
.googleload {
background: #c01718;
color: #fff;
padding: 1em;
height: 1.5em;
margin-top: 16em;
}
.googleload:hover {
background: #9e1617;
}
.halfwidth {
width: 50%; padding: 0 25% 0 25%;
}
.mitte img {
width : 100%;
height : auto;
}
@media screen {
.ham, .menu-mob, .mob {
display : none;
}
}
.center {
margin : 0 auto;
text-align : left;
width : 90%;
max-width : 1150px;
position: relative;
}
.half {
width: 70% !important;
}
.sub, .clients {
padding : 0 !important ;
margin : 0 0 0 0;
text-align : center;
display : flex;
flex-wrap : wrap;
justify-content : center;
list-style-type : none;
font-size : 90%;
}
.sub li, .clients li {
float : left;
margin-right : 0.5em;
list-style-type : none;
}
.clients li {
background: #efeeee;
margin-right : 0.25em;
}
.sub a, .hisback  {
display : block;
color : #262624;
background : #efeeee;
padding : 0.5em 1em 0.5em 1em;
border-radius : 16px;
margin-right : 1em;
}
.sub a:hover {
background: #82b82f;
color: #fff;
}
h1, h2 {
display : block;
margin-bottom : 0.5em;
font-size : 300%;
font-weight : bold;
line-height : 110%;
hyphens: none;
}
h2 {
font-size: 160%;
color: #000;
}
.parallax h2 {
color: #fff;
font-size: 300%;
margin-bottom: 0.5em;
}
h2 a {
color: #000 !important;
}
.headl2 {
font-size : 220%;
font-weight : bold;
color: #00519d;
margin-top: 1em !important;
margin-bottom: 1em;
}
.headref {
text-align : left;
margin-bottom : 1.2em;
padding-bottom: 0;
background-image: none;
text-transform: none;
}
.headcenter {
width : 80%;
position : relative;
height : 90%;
}
.pic {
display : block;
position : relative;
width : 29%;
margin : 0 3% 5% 0;
border: 1px solid silver;
background: #fff;
}
.pic img {
height: 200px;
object-fit: cover !important;
}
.pic span {
font-weight: bold;
margin-bottom: 0.1em;
display: block;
}
.pictext {
padding : 8% 8% 14% 8%;
}
a.picmore {
height: 3em;
width : 100%;
background : #00519e;
display : flex;
position: absolute;
bottom: 0;
justify-content : center;
align-items : center;
overflow : hidden;
transition : 0.6s ease;
font-size : 95%;
color : #fff;
text-decoration : none;
}
.docpic {
width: 29%;
}
.news {
position: absolute;
width: 100%;
z-index: 10;
top: 32%;
text-align: left;
left: -5%;
padding: 4%;
background: rgba(255,255,255,0.9);
color: #000;
transform: rotate(-2deg);
border: 1px solid #95a94e;
font-size: 90%;
-webkit-box-shadow: 10px 11px 15px 0px rgba(0,0,0,0.13);
-moz-box-shadow: 10px 11px 15px 0px rgba(0,0,0,0.13);
box-shadow: 10px 11px 15px 0px rgba(0,0,0,0.13);
font-weight: normal;
}
.pictext h3 {
text-transform : none;
margin : 0 !important ;
padding : 0;
font-size : 100%;
}
.pic h2, .news h2 {
font-size: 200%;
text-transform: uppercase;
font-style: normal;
font-weight: bold;
color: #c52a2b;
text-shadow: none;
}
.news h2 {
color: #95a94e;
font-size: 150%; 
}
.ref-title {
font-weight : bold;
}
.pricepic {
padding: 4%;
cursor : auto;
border: 1px solid gray;
border-radius: 12px;
width: 23%;
text-align: center;
background: #fff;
}
.pricepic span {
font-weight: bold;
font-size: 90%;
}
a.rsslink {
color: #c52a2b;
}
.preis {
margin: 1em 0 1em;
font-size: 150%;
background: #efeeee;
padding: 3%;
border-radius: 12px;
}
.preistext {
min-height: 6em;
}
.kunde {
width: 28%;
height: auto;
}
.kunde img {
width: 100%;
height: auto;
object-fit: none !important;
filter: grayscale(100%) opacity(60%) ;
}
.mo, a.mo {
display: block;
background : #95a94e;
color: #fff !important;
padding: 1%;
margin-top: 1em;
width: 30% !important;
bottom: 0;
text-align: center;
}
.rez {
display: block;
background: none;
position: absolute;
left: 2em !important;
bottom: 2em;
color: #000 !important;
width: 80% !important;
}
.topseller {
padding: 2%;
background: #262624;
border-radius: 0 0 12px 12px;
color: #fff;
position: absolute;
top: 0;
}
.topred {
background: #a12b2b;
}
.opt {
margin : 2.5em 0 3em;
background: #c8eaea;
padding: 5%;
border-radius: 12px;
}
.opt ul {
padding-top: 1em;
text-align : left;
}
.ex {
margin: 1em 0 1em;
}
.ex a {
text-decoration: underline;
}
.lupe {
width : 10% !important ;
height : auto;
margin-top : 3%;
}
.lightbox2 .pic {
width : 22%;
float : none;
margin-bottom : 0;
margin-left : 3em;
}
.skillz {
display: block;
width : 28% !important;
margin : 0 5% 5% 0;
text-align: left;
}
.skillz img {
width : 100%;
height : 12em;
margin-bottom: 1em;
float: left !important;
object-fit: cover;
}

.skilltext {
float: left;
width: 100%;
}
.reasons {
background: #fff;
filter: drop-shadow(8px 8px 10px #edeeee);
padding: 5%;
border: none !important;
width: 20%;
}
.light .reasons {
filter: drop-shadow(8px 8px 10px #dcecfb);
}
.reasons blockquote {
font-style: italic;
border: none;
color: #033a6d;
font-size: 120%;
}
.reaspic {
position: absolute;
top: -2em;
right: 2em;
width: 100px !important; 
height:100px !important;
border-radius: 50%;
border: 8px solid #fff;
}
.links {
display: block;
background: #fff;
color: #535a5f;
padding: 3%;
width: 39% !important;
margin: 0 3% 3% 0;
}
.links img {
width: 10% !important;
height: auto;
float: none !important;
}
.linkdark {
background: #82b82f;
color: #fff !important;
}
.linkdark h3 {
color: #fff !important;
}
.newsblog {
background:#ebefde; 
}
.meinung {
background : #80d2d5;
color : #000 !important ;
padding : 2%;
width : 16% !important ;
border-radius : 20px;
font-size : 95%;
line-height : 125%;
text-align : left;
position : relative;
margin : 2% 2% 0 0;
}
.meinung img {
width : 30%;
}
.meitext {
padding : 2em 0 2em;
display : block;
margin-bottom: 1em;
}
.lightbox2 {
position : fixed;
display : block;
overflow : hidden;
z-index : 1001;
width : 100%;
min-height : 100% !important ;
height : auto !important ;
height : 100% !important ;
overflow-y : scroll;
top : 0;
left : 0;
background: rgba(212,232,199,0.85);
opacity : 0;
pointer-events : none;
text-align : center !important ;
transition : all 0.3s;
scrollbar-width : none;
}
.lightbox2::-webkit-scrollbar {
display : none;
}
.lightbox2 img {
margin-top : 2em;
float : left;
}
.lightbox2:target {
opacity : 1;
pointer-events : auto;
}
.description {
width : 30% !important ;
max-width : 1440px;
min-height : 30em;
margin-left : auto;
margin-right : auto;
margin-top : 6em;
margin-bottom : 6em;
text-align : left;
color : #000;
border: 1px solid #95a94e;
padding: 2em;
background: #fff;
}
.center li {
margin-bottom : 0.25em;
}
.desc-li {
width : 30%;
float : left;
padding-right : 3%;
}
.desc-re {
float : left;
width : 65%;
padding : 4em 0 1em;
}
.descpic {
width : 100% !important ;
height : auto !important ;
margin : 0 0 2em 0;
}
.desc-title {
font-size : 150%;
margin-bottom : 1em !important ;
font-weight : bold;
margin-top : 1.5em;
color: #95a94e;
}
.description h2 {
width : 100%;
font-size : 200%;
}
.description a {
text-decoration : underline;
color : #000;
}
.description a.more {
text-decoration : none;
}
.menu {
width: 100%;
position: sticky;
top: 0;
text-align : center;
display : flex;
flex-wrap : wrap;
justify-content : center;
padding-top: 0.8em;
height: 2em;
font-family: 'Crimson Text', 'Times New Roman', Times, serif;
font-size: 120%;
box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.09);
background : #fff;
z-index: 1000;
margin-top: 150px;
}

.menu ul {
list-style-type : none;
list-style-image : none !important ;
text-align : center;
padding : 0;
margin : 0;
}
.menu li {
float : left;
list-style-type : none;
text-align : center;
}
.menu a {
display : block;
margin-right : 0.5em;
font-weight : normal;
color : #6c757d;
position: relative;
padding-bottom: 1.5em;
}

.menu a:hover {
color: #00519e;
}
.menu a.currentpage, .menu a.activeparent {
color: #00519e;
}
.flex {
display : flex;
align-items : center;
width : 100%;
padding : 0;
}
.center ul {
margin: 1em 0 1em 1em !important;
}
.center li {
list-style-type: none;
 list-style-image: url(/uploads/images/list.png);
padding-left: 1%;
margin-left: 1%;
}
.dark li {
list-style-type: none;
 list-style-image: url(/uploads/images/list-wht.png);
padding-left: 1%;
}
}

.text {
width : 100%;
margin : 0 10% 5% 0;
}
.li-text {
float : left;
width : 50%;
margin-bottom : 1.5em;
hyphens : auto;
}
figure, .rightpic  {
float : right;
width : 32% !important;
margin : 0 0.5em 1.5em 4em;
}
figure img {
border : #dbdedd solid 3px;
}
figcaption {
font-size: 95%;
font-style: italic;
text-align: center;
padding: 0.6em;
color: gray;
line-height: 105%;
font-family: 'Crimson Text', 'Times New Roman', Times, serif;
}
.dark figcaption {
color: #000 !important;}
.li-text img, .rightpic {
border-radius: 12px;
}
.links h3 {
color: #00519d;
}
.dark h3 {
color: #fff;
}
.re-text img, .li-text img {
width : 100%;
height : auto;
}
.re-text {
width : 40%;
margin-left : 3%;
margin-bottom : 1em;
hyphens : auto;
}
.re-text a, .li-text a {
text-decoration : underline;
}
.flexfree {
width : 45%;
}
.center ul {
margin : 0 0 0.25em 1em;
}
a.more, .more, a.moreblack, a.morelight, .no-ani {
display : inline-block;
text-decoration : none !important;
background-color : #00519e;
color : #fff !important;
text-align : center;
font-weight : normal;
padding : 0.5em 1em 0.5em 1em;
font-size : 110%;
margin-bottom : 15px;
transition : border 0.5s;
border: 2px solid #fff;
}
a.moreblack:hover, a.morelight:hover {
}
a.more:hover {
}
.linklist {
margin-right: 15px;
}
.thumblist {
width :100%;
min-height : 100%;
z-index : 10;
}
a.moreblack {
background : #000;
}
a.morelight {
background : #f8f8f8;
color : #6c9a26 !important;
}
blockquote {
font-size : 150%;
font-family : 'Crimson Text', 'Times New Roman', Times, serif;
line-height : 130%;
border-bottom: 1px solid silver;
padding-top: 2em;
padding-bottom: 2em;
font-style: italic;
}
blockquote:before {
display : block;
content : "\201C";
font-size : 500%;
color : #80acd5;
font-style : normal;
line-height : 0;
font-family: 'times new roman', times;}

.quotecenter {
text-align : center;
width : 60%;
padding : 10% 20%;
color : #262624;
font-size : 110%;
}
.audio {
width : 60%;
text-align : center !important ;
margin : 0 auto;
}
audio {
width : 100%;
border-radius : 12px;
}
.accordion {
background-color : #262624;
color : #fcfaf4;
cursor : pointer;
padding : 18px;
width : 70%;
border : none;
text-align : center;
outline : none;
transition : 0.4s;
border-radius : 12px;
margin-bottom : 0.25em;
font-size : 120%;
}
.accosmall {
width : 5em !important ;
padding : 0.25em !important ;
background : #80d2d5;
margin-top : 1em;
}
.accordion:hover {
background : #80d2d5;
}
.accosmall:hover {
background : #d3d3d3;
}
.accordion:after {
content : '\002B';
font-weight : bold;
float : right;
margin-left : 5px;
}
.active:after {
content : "\2212";
}
.panel a {
text-decoration: underline;
}
.responsive a, #responsive a {
text-decoration : none !important ;
}
.panel {
margin : 1em 0 1em 0;
text-align : center;
width : 80%;
max-height : 0;
overflow : hidden;
transition : max-height 0.2s ease-out;
}
.panelaudio {
width : 100% !important ;
}
footer {
background: #535a5f;
color : #f3f3f3;
padding : 4em 0 0;
font-size: 90%;
hyphens: auto;
text-align: center;
}

.foo {
margin-bottom : 0 !important ;
}
footer a {
color : #f3f3f3;
}
.foot {
float : left;
margin-right : 4%;
margin-bottom : 3em;
text-align: left;
}
.foo-title {
text-transform : uppercase;
font-weight : bold;
font-size : 110%;
margin-bottom : 1em;
color: #f3f3f3;
border-bottom: 2px dotted;
padding-bottom: 1em;
}

.copyfoo {
color : lightgray;
font-size : 90%;
text-align: center;
padding: 1.5em 0 0.5em 0;
background: #000;
}
.copyfoo a {
display: inline;
color : lightgray;
}
.copyfoo img {
width: 24px;
height: auto;
}
.social {
float: left;
margin-right: 0.5em;
}
.ico {
float: right;
}
.required {
float : left;
width : 45%;
margin-right : 4%;
}
label {
float : left !important ;
display : block;
margin-bottom : 0.5em;
}
.yourweb, div.yourweb * {
display: none !important;
}
input, textarea, select {
margin-right: 3%;
margin-bottom : 3%;
border : none;
background : rgba(255,255,255,0.9);
border: 1px solid gray;
padding-left : 0.7em;
height : 2.5em;
font-size : 100%;
box-sizing : content-box;
font-family : 'Muli';
width: 100%;
color: #535a5f;
}
textarea {
height : 6em;
clear : both !important ;
float : none;
padding: 0.7em;
width: 93%;
margin-bottom: 0.5em;
}
.cms_checkbox {
width : 1em;
clear : both;
float : left;
margin-right : 0.5em;
margin-top : -0.7em;
margin-bottom: 0 !important;
}
.cms_submit {
width : 30%;
height : 3.5em;
color : #fff;
background: #00519e;
}
.cms_select {
height : auto;
padding : 2%;
}
.cms_submit.fbsubmit, .search-button {
color : #fff;
background: #00519e;
font-size : 100%;
}
.privacy {
font-size: 80%;
width: 90%;
line-height: 140%;
}
.search-button {
font-size : 100%;

}
.kontakt{
float : none !important ;
width : 100% !important ;
 columns: 40% 2;
margin: 0 auto;
text-align: left;
}
.captcha {
width : 45%;
clear : both;
float : none;
}
.captcha img {
clear : both;
box-shadow : none !important ;
width : 40% !important ;
height : auto !important ;
float : none;
margin : 0.5em 0 0.5em 0;
filter: grayscale(100%);
}

.kontakt .captcha {
width : 100%;
float : none !important ;
}
.confirm, .error_message {
position : fixed !important ;
background : rgb(255, 255, 255, 0.95);
padding : 2%;
top : -0.4em;
left : 5%;
border : solid 1px;
max-width : 80%;
z-index : 10000;
box-shadow : 0 1px 1px rgb(0, 0, 0, 0.11), 0 2px 2px rgb(0, 0, 0, 0.11), 0 4px 4px rgb(0, 0, 0, 0.11), 0 6px 8px rgb(0, 0, 0, 0.11), 0 8px 16px rgb(0, 0, 0, 0.11);
}
@media screen and (max-width: 60em) {
.linksright, .linksleft {
border: 1px solid #00519e;
}
.placehold {
display: none;
}
.title h1, .title h2 {
font-size: 7.2vw;
}
.reach {
right: 5em;
}
.parallax {
background-position : center center !important ;

justify-content : center !important;
}
.searchcont {
width : 60%;
}
.searchcont input {
width : 80%;
}
.flex {
display : block;
}
.li-text, .re-text {
width : 100%;
float : none;
margin-right: 0; 
margin-left: 0;
}
.halfwidth {
width : 100%;
padding: 0;
}
.desc-re {
padding-top : 0 !important ;
}
.re-text {
margin-top : 2em;
}
.sub a, .hisback {
display : block;
color : #262624;
background : #efeeee;
padding : 0.5em 1em 0.5em 1em;
border-radius : 12px;
margin : 0 0 0.5em;
font-size : 80%;
}
.description {
width : 70% !important ;
max-width : 70% !important ;
}
.center {
width : 90% !important ;
}

#responsive {
position : static !important ;
}
#res-call {
position : relative;
z-index : 1000;
}
.pic {width: 44%;}
.holly {
width: 40%;
}
.meinung {
width : 39% !important ;
}
.meinung img {
width : 20%;
}
#mobsearch {
text-align : center;
display : flex;
flex-wrap : wrap;
justify-content : center;
}
.mobinpt {
width : 10em;
}
.noshadow {
width : 95% !important ;
}
.sm {
width : 36% !important ;
}
.menu-mob {
display : block;
position: fixed;
height : 100%;
width : 100%;
z-index: 1000;
}
.desknav {
display: none !important;
}
.sidenav {
display : block;
height : 100%;
width : 0;
position : fixed !important ;
z-index : 9999999 !important ;
top : 0;
left : 0;
background-color : #031939;
overflow-x : hidden !important ;
transition : 0.5s;
padding-top : 60px;
margin-bottom : 60px;
text-align : left;
font-family: Roboto, Arial, Helvetica, sans-serif;
}
.sidenav a {
padding : 8px 8px 8px 8px;
text-decoration : none;
font-size : 120%;
color : #fff;
display : block;
transition : 0.3s;
font-weight: bold !important;
}
.sidenav a:hover, .offcanvas a:focus {
background : none;
}
.sidenav .closebtn {
position : absolute !important ;
top : 1em;
right : 0.8em;
width : 1.5em !important;
z-index: 10000;
}
.sidenav .closebtn img {
width : 100%;
height: auto;
}
.menu-mob ul {
list-style-type : none;
margin-bottom : 5%;
float : none;
}
.ham {
display: block;
top : 0.2em;
right : 0.8em;
width : 1.5em !important;
height: auto;
z-index: 10000;
}
.menu-mob li {
float : none;
margin : 0;
}
.button {
width : 1.5em;
right : 0.8em;
}
#logo {
z-index : 1000;
}
.skillz {
width : 45% !important;
margin : 5% 5% 0 0;
}
.half {
width: 100% !important;
}
.pricepic {
width: 70%;
margin-bottom : 8%;
}
.links {
width : 95% !important;
padding: 1.5em;
}
.title {
width: 85% !important;
}
.reasons {
width: 35%;
padding-top: 10%;
}
.foot {
float : none !important ;
}
}
@media screen and (max-width: 750px) {
.rightpic, figure {
float : none !important ;
width : 95% !important ;
margin : 0 0 1.5em 0;
}
.reasons {
width: 100%;
padding-top: 10%;
}
.kontakt {
width: 100% !important;
}
textarea {
width: 98%;
}
.top-container img {
width : 200px;
}
.reach {
right: 6em;
}
.dislink {display: none;}
.sub {
width : 85%;
}

.desc-title {
font-size : 110%;
}
.skillz {
width : 100%;
margin : 5% 5% 0 0;
}
.pic img {
width: 100%;
}
.skillz, .links {
width : 90% !important;
}
.links img {
width: 16%;
}
.skillz img, .skilltext {
clear: both;
float: none;
width: 100%;
}
.skilltext {
padding-bottom: 1em;
}

.searchcont {
width : 70%;
}
.smallcont {
width: 70% !important;
}

.teampic {
width : 35% !important ;
}
 .own, .required, input, cms_select, .captcha, .cms_submit {
width : 100%;
}

.accordion {
width : 90%;
}
.chk label {
width : 80%;
}
.li-text img, .re-text img {
margin : 1em 0 0 0;
}
.center {
width : 80% !important ;
}
.meinung {
width : 100% !important ;
padding: 7%;
margin-bottom: 6%;
}
.thumblist {
overflow : visible !important ;
}
.pic {
width : 100% !important ;
margin : 0 0 5% 0 !important ;
}
.sm {
width : 86% !important ;
}
.back img {
width : 70%;
text-align : left;
}
.reasons {
padding-top: 20%;
margin-bottom: 4em !important;
}

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

body {
font-size: 95%;
}
h1, h2 {
margin-bottom: 0.5em;
padding-bottom: 0.5em;
}
.centerhead {
width: 80%;
}
.social {
float: none;
}
#logo {
font-size : 100%;
}
table, td {
hyphens: none !important;
vertical-align: top;
}
.contact-icons {
height: 0.5em;
}
.quotecenter, blockquote {
width : 90%;
text-align : left;
padding : 1em 0 !important ;
font-size: 120%;
}
a.more, a.moreblack, a.morelight {
font-size : 100%;
}
.desc-li, .desc-re {
float: none !important;
width: 100% !important;
clear: both;
}
.descpic {
width: 30% !important;
}

.desc-title {
font-size : 100%;
}

.pricepic {
width: 100%;
}

.headl2 {
font-size : 150%;
line-height: 120%;
}
.cont h1 {
font-size : 140% !important ;
}

.smallcont {
width: 80% !important;
}
.sub {
line-height : 110%;
font-size : 95%;
margin-top : 0.5em;
}
.re-text img {
margin : 0 !important ;
}
.pic {
margin-right : 0 !important ;
float : none !important ;
margin : 0 5% 5% 0 !important ;
font-size: 90%;
}
.pic img {
object-fit: fill;
}

.teampic {
width : 100% !important ;
}

.pic h2 {
font-size: 150%;
margin-bottom: 0;
}
.skillz img {
width: 100%;
height: auto;

}
.kunde {
width: 60%;}
.reasons {
margin-bottom: 4em !important;
}
.reaspic {
width: 60px !important;
height: 60px !important;
}
}
@media screen and (max-width: 300px) {
.news {
width: 95%;
}
}
