/*  
Theme Name: Notar Sammet
Theme URI: https://notar-sammet.de
Version: 1.0
Author: Veronika Sattler
Author URI: http://websache.de
*/


/* 1. BASICS
-----------------------------------------------------------------------------------------------
===============================================================================================*/
/* 1.1. Fonts
-----------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/layout/css/fonts/roboto-condensed-v18-latin-regular.eot');
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-regular.woff2') format('woff2'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-regular.woff') format('woff'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-regular.ttf') format('truetype'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../../files/layout/css/fonts/roboto-condensed-v18-latin-italic.eot'); 
  src: local('Roboto Condensed Italic'), local('RobotoCondensed-Italic'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-italic.eot?#iefix') format('embedded-opentype'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-italic.woff2') format('woff2'), 
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-italic.woff') format('woff'), 
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-italic.ttf') format('truetype'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-italic.svg#RobotoCondensed') format('svg');
}   

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../../files/layout/css/fonts/roboto-condensed-v18-latin-700.eot'); 
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'),
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-700.woff2') format('woff2'), 
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-700.woff') format('woff'), 
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-700.ttf') format('truetype'), 
       url('../../files/layout/css/fonts/roboto-condensed-v18-latin-700.svg#RobotoCondensed') format('svg');
}

/* 1.2. Reset
-----------------------------------------------------------------------------------------------*/

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
	display: block; 
	}
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	}


/* 1.3. Allgemeines
-----------------------------------------------------------------------------------------------*/
html, body {
	height: auto;
    min-height: 100vh;
	color: #4b4b4b; 
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size:0.94em;
	line-height:1.5;
	-webkit-text-size-adjust: none;
    background:#f2f2f2;
	}
body.scroll {
	overflow: hidden;
	max-height: 100vh;
}
.hidden {
	display: none;
	}
.invisible {
	display: none;
	}
.inside {
	width: 75%;
	margin: auto;
	max-width: 1380px;
	position: relative;
	}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap;
	}
.pt_3 {
    padding-top:30px;
}
	

/* 1.3.1. Links
-----------------------------------------------------------------------------------------------*/
a {
	color:#1f2d5c;
	text-decoration: none;
	-webkit-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
	}
a:visited {
	text-decoration:none;
	}


/* 1.3.2. Listen
-----------------------------------------------------------------------------------------------*/
ul {
	list-style: none;
	}
ol {
	list-style: decimal outside;
	}

/* 1.3.3. Typographie
-----------------------------------------------------------------------------------------------*/
p {
	padding-bottom: 16px;
	}

h1, h2, h3 {
	color:#1f2d5c;
    font-weight: normal;
	line-height: 1.2;
    text-transform: uppercase;
}
h1 {
	font-size: 220%;
	margin-bottom: 50px;
	}
h2 {
	font-size: 185%;
	margin-bottom: 25px;
	}
h3 {
	font-size: 120%;
	margin-bottom: 16px;
	}
				

/*1.3.4. Media
-----------------------------------------------------------------------------------------------*/
img, iframe {
	max-width: 100%;
	width: 100%;
	height: auto !important;
	}


/*1.3.5. Animations
-----------------------------------------------------------------------------------------------*/
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

/* 2. Seitenstruktur
-----------------------------------------------------------------------------------------------
===============================================================================================*/
/*2.1. Header mit Navigation, Logo und Kontaktbutton
-----------------------------------------------------------------------------------------------*/
#logo {
    width: 100%;
    position: absolute;
    margin-top:40px;
    z-index:200;
    text-align: center;
}
#logo img {
    display: inline-block;
    width: 210px;
}
.navi_main {
    position:fixed;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    left: 4.5em;
    z-index:200;
    font-size: 105%;
}
.navi_main li {
    margin-bottom:5px;
}
.navi_main a {
    position:relative;
    display: inline-block;
    color:#fff;
}
.navi_main.blue a {
    color:#1f2d5c;
}
.navi_main a:after {
    content:'';
    display: block;
    position: absolute;
    width: 0%;
    height: 2px;
    background:#fff;
    -webkit-transition: all 255ms ease-in;
    -o-transition: all 255ms ease-in;
    transition: all 255ms ease-in;
}
.navi_main a:hover:after, .navi_main a:hover:focus {
    width: 100%;
}

.navi_main a:hover, .navi_main a:focus {
    color:#fff;
}
.contact_button {
    position:fixed;
    top:50%;
    -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    right:0;
    z-index:200;
}
.toggle_button {
    background:#1f2d5c;
    border: none;
    z-index:200;
    color:#fff;
    padding: 0.6em 1.4em;
    font-size:98%;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    position: absolute;
    right:-37px;
    top:0px;
    text-transform:uppercase;
    cursor:pointer;
    -webkit-transition: all 355ms ease-in;
    -o-transition: all 355ms ease-in;
    transition: all 355ms ease-in;
    border: 2px solid #1f2d5c;
    }
.toggle_button:hover, .toggle_button:focus {
    color:#1f2d5c;
    background:#fff;
}
.toggle_text {
    background:#1f2d5c;
    position: absolute;
    z-index:100;
    right:0px;
    color:#fff;
    padding: 2.5em 80px 2.5em 1em;
    white-space: nowrap;
    -webkit-transform: translate(0%, -42%);
        -ms-transform: translate(0%, -42%);
            transform: translate(0%, -42%);
    margin-right: -500px;
}
.toggle_text.open {
    margin-right: 0px;
}
.toggle_text p {
    font-size: 89%;
    border-top: 1px solid #fff;
    padding: 8px 0px;
    margin: 6px 0px;
    text-align:center;
}
.toggle_text p:first-child {
    border-top: none;
}
.toggle_text a {
    color:#fff;
}

.contact_button a {
    color:#fff;
}

/*2.1.1. Menü-Button
-----------------------------------------------------------------------------------------------*/
.menu {
	position: absolute;
	right:0px;
	top: 20px;
	display: none;
	cursor: pointer;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	-webkit-transition-duration: 0.15s;
	     -o-transition-duration: 0.15s;
	        transition-duration: 0.15s;
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	z-index:2000;
	}
.menu:hover {
	opacity: 0.7; 
	}
.menu-box {
	width: 26px;
	height: 20px;
	display: inline-block;
	position: relative; 
	}
.menu-inner {
	display: block;
	top: 50%;
	margin-top: -2px; 
	-webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	-o-transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; 
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; 
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	}
.menu-inner, .menu-inner::before, .menu-inner::after {
	width: 26px;
	height: 3px;
	background-color: #ffffff;
	border-radius: 4px;
	position: absolute;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.15s;
	     -o-transition-duration: 0.15s;
	        transition-duration: 0.15s;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease; 
	}
  .menu-inner::before, .menu-inner::after {
    content: "";
    display: block; 
	}
  .menu-inner::before {
    top: -8px; 
	-webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	-o-transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	}
  .menu-inner::after {
	  bottom: -8px; 
	  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	  -o-transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
	  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	  }	
.menu.active .menu-inner {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .menu.active .menu-inner:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
  .menu.active .menu-inner:after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
	-webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); 
	}	  


/*2.2. Content
-----------------------------------------------------------------------------------------------*/

/*2.2.1. Herobild und Scroll_up botton
-----------------------------------------------------------------------------------------------*/
#id_1 {
    position: relative;
}

.heroimage figure {
    height: 100vh;
    background: #647e8d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.heroimage img {
    position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height: 1px; 
    width: 1px; 
    margin: -1px; 
    padding: 0; 
    border: 0;
    }
.scroll_down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
}
.scroll_down a {
    display: block;
    color:#fff;
    border: 2px solid #fff;
    border-radius:20px;
    width:20px;
    height: 50px;
    overflow: hidden;
    white-space: nowrap;
    -webkit-animation: bounce 2s infinite;
            animation: bounce 2s infinite;
    -webkit-transition: all 355ms ease-in;
    -o-transition: all 355ms ease-in;
    transition: all 355ms ease-in;
}
.scroll_down a:hover, .scroll_down afocus {
    background: #1c2c5d;
    color:#1c2c5d;
    border-color: #1c2c5d;
    background:#fff;

}
.scroll_down a:before {
    content:'\2193';
    display: block;
    font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 120%;
    font-weight: bold;
    text-align: center;
    width: 20px;
    height:50px;
    line-height:50px;
} 

/*2.2.2. Willkommenstext
-----------------------------------------------------------------------------------------------*/
#id_2 {
    padding: 140px 0px 140px 0px;
}
.center_main {
    text-align: center;
    max-width: 800px;
}
.center_main p {
    font-size: 120%;
}


/*2.2.3. Notar
-----------------------------------------------------------------------------------------------*/
#id_3 {
    position: relative;
    width: 100%;
    background: url(../../files/layout/images/background_art.jpg) no-repeat;
    background-position: center 140px;
    background-size: cover;
    padding-top:140px;
}
.foto_text {
    position: relative;
    background:#fff;
    padding:2em;
    overflow: auto;
     -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.13);
             box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.13);
    top:-140px;
}
.foto_text ul {
    display: table;
}
.foto_text img {
    width: auto;
    max-width: 320px;
    float: right;
    margin-left: 5%;
}
.foto_text li {
    margin-bottom: 16px;
}
.foto_text li a {
    text-decoration: underline;
}


/*2.2.4. team
-----------------------------------------------------------------------------------------------*/
#id_4 {
    padding: 140px 0px;
}
.center_team {
    text-align:center;
    max-width: 600px;
    margin-bottom:50px;
}
.center_team p {
    font-size: 120%;
}
.team .flex {
    margin-left:-2%;
}
.team_teaser {
    width: 23%;
    margin-left: 2%;
    margin-bottom:2em;
}
.teamflip {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;    
}
.teamtext {
  font-size:0.9em;
  opacity:0;
  top:0px;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1f2d5c;
  color:#fff;
  padding: 2.5em 2em;    
  -webkit-transform: scale(0.1);    
      -ms-transform: scale(0.1);    
          transform: scale(0.1);
  -webkit-transition: all 444ms ease;
  -o-transition: all 444ms ease;
  transition: all 444ms ease;    
}
.team_teaser:hover .teamtext {
    opacity: 1;
    -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
            transform: scale(1.0);
}
.teamtext h3, .teamtext a {
    color: #fff;
    text-transform: none;
}

/*2.2.5. Leistungen
-----------------------------------------------------------------------------------------------*/
#id_5 {
    padding: 100px 0px;
    background: #1f2d5c;
    color:#fff;
}
#id_5 h2, #id_5 h3 {
    color:#fff;
} 
.toggler {
    text-align: center;
    padding: 8px 0px;
    margin:0px;
    position: relative;
}
.toggler:after {
    position: absolute;
    right:0px;
    content:'\2193';
    display: block;
    font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 110%;
    font-weight: bold;
    top: 50%;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-top:-10px;
    -webkit-transition: all 444ms ease;
    -o-transition: all 444ms ease;
    transition: all 444ms ease;
}
.toggler.ui-state-active:after {
     -webkit-transform: rotate(0deg);
         -ms-transform: rotate(0deg);
             transform: rotate(0deg);
}
.ce_accordion {
    border-bottom: 1px solid #fff;
}
.ce_accordion.first {
    border-top: 1px solid #fff;
}
.accordion {
    text-align: center;
    padding: 30px 0px;
    margin:auto;
    max-width: 800px;
}

/*2.2.6. Formulare
-----------------------------------------------------------------------------------------------*/
#id_6 {
    padding: 100px 0px;
}

.forms {
    margin-top:50px;
}
.forms .flex {
    margin-left:-2%;
}
.ce_downloads {
    width: 23%;
    margin-left: 2%;
    margin-bottom: 2%;
    -webkit-hyphens:auto;
        -ms-hyphens:auto;
            hyphens:auto;
}
.ce_downloads a {
    display: block;
    margin-bottom:10px;
    color:#4b4b4b;
}
.ce_downloads a:hover, ce_downloads a:focus {
    text-decoration: underline;
} 

.ce_downloads a:before {
    content: url('../../files/layout/images/download.svg');
    display: inline-block;
    margin-right: 7px;
    width: 14px;
    vertical-align:middle;
}

/*2.2.7. Kontaktformular
-----------------------------------------------------------------------------------------------*/
.contactform {
    position: relative;
    background:#fff;
    padding: 4em 4em;
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.13);
            box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.13);
}
.contactform form {
    margin:auto;
    max-width: 800px;
}
.contactform h2 {
    text-align: center;
}
label {
   display: none;
}
input[type="text"], input[type="email"],input[type="tel"], textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    border: 2px solid #c3c3c3;
    padding:1em;
    font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size:0.92em;
    height: 40px;
}
textarea {
    height: 120px;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #9ecaed;
  -webkit-box-shadow: 0 0 10px #9ecaed;
          box-shadow: 0 0 10px #9ecaed;
}
.widget {
    margin-bottom: 1em;
}
.widget-checkbox label {
    display: inline-block;
    padding-right: 200px;
}
input[type="checkbox"] {
  position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height: 1px; 
    width: 1px; 
    margin: -1px; 
    padding: 0; 
    border: 0;
}
input[type="checkbox"] + label::before {
  width: 20px;
  height: 20px;
  border: 2px solid #c3c3c3;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
  margin-right: 10px;
}
input[type="checkbox"]:focus + label::before {
  outline: none;
  border-color: #9ecaed;
  -webkit-box-shadow: 0 0 10px #9ecaed;
          box-shadow: 0 0 10px #9ecaed;
}
input[type="checkbox"]:checked+label::before {
  -webkit-box-shadow: inset 0px 0px 0px 3px #fff;
          box-shadow: inset 0px 0px 0px 3px #fff;
  background-color: #9ecaed;
}
.widget-submit {
    text-align: right;
}
.submit {
    position: relative;
    top:-45px;
    background:#1f2d5c;
    display: inline-block;
    border: 2px solid #1f2d5c;;
    z-index:200;
    color:#fff;
    padding: 0.6em 1.4em;
    font-size:98%;
    text-transform:uppercase;
    cursor:pointer;
}
.submit:hover, .submit:focus {
    color:#1f2d5c;
    background:#fff;
}
.p_8 {
    padding:80px 0px;
}
.p_8 .ce_text {
    width: 31%;
    text-align: center;
    padding: 0px 2em;
    border-left: 1px solid #c3c3c3;
}
.p_8 .ce_text:first-child {
    border: none;
    margin-top:none;
}


/*2.2.8. Impressum
-----------------------------------------------------------------------------------------------*/
body.imprint #header {
    background:#1f2d5c;
    padding:30px 0px;
    margin-bottom:50px;
}
.imprint #logo {
    position: relative;
    left: auto;     
    max-width:180px;
    margin:0px;
    }
body.imprint {
    background:#fff;
}
.imprint h2 {
    font-size: 160%;
    margin-top: 20px;
}
.imprint .ce_text ul {
    padding-bottom: 16px;
    list-style: disc inside;
}

.imprint .navi_main {
    position: absolute;
    top: 0px;
    -webkit-transform: translate(0%, -0%);
        -ms-transform: translate(0%, -0%);
            transform: translate(0%, -0%);
    left: auto;
    right:0px;
}
.imprint .nav {
    background:#1f2d5c;
    padding: 60px 100px 40px 40px;
    display: none;
} 
.imprint .nav.open {
    display: block;
}
.imprint .menu {
    display: block;
}

/*2.2.9. Popup
-----------------------------------------------------------------------------------------------*/
.popup {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background:rgba(31, 45, 92, 0.9);
	z-index: 1000;
	top:0;
	left:0;
}
.popup_content {
	position: fixed;
	z-index: 1001;
	background: #fff;
	padding: 2em;
	box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.13);
	width: 80%;
	height: auto;
	top: 50%;
	left: 50%;
	max-width: 800px;
	max-height: 80vh;
	transform: translate(-50%,-50%);
	text-align: center;
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* X erstellen */
.close::before,
.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #1f2d5c;
}

.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/*2.3. Footer
-----------------------------------------------------------------------------------------------*/
#footer {
    position:relative;
    background:#1f2d5c;
    color:#fff;
    padding:20px 0px;
    font-size:92%;
    overflow: hidden;
    z-index:1000;
}
#footer p {
    float: left;
    padding-bottom:0px;
}
#footer nav {
    float: right;
}
#footer li {
    display: inline-block;
    margin-left: 8px;
}
#footer a {
    color:#fff;
}
#footer strong {
    font-weight: normal;
    text-decoration: underline;
}


@media
  screen and (-webkit-min-device-pixel-ratio: 2),
  screen and (-o-min-device-pixel-ratio: 2/1),
  screen and (min-resolution: 192dpi),
  screen and (min-resolution: 2dppx) {

      body {
          font-size:1em;
      }    

}

@media only screen and (max-width: 1420px) {	
 .navi_main {
    left: 2em;
    }
}


@media only screen and (max-width: 1100px) {	
 .team_teaser, .ce_downloads {
    width: 31.333%;
    }
}
@media only screen and (max-width: 1024px) {	
    h1 {
	font-size: 200%;
	margin-bottom: 30px;
	}
h2 {
	font-size: 165%;
	margin-bottom: 20px;
	}
.inside {
        width: 90%;
    }

#logo {
    text-align: left;
    margin-top:20px;
}
#logo img {
    max-width: 160px;
}     
 .navi_main {
    position: absolute;
    top: 20px;
    -webkit-transform: translate(0%, -0%);
        -ms-transform: translate(0%, -0%);
            transform: translate(0%, -0%);
    left: auto;
    right:0px;
}
.nav {
    background:#1f2d5c;
    padding: 60px 100px 40px 40px;
    display: none;
} 
.nav.open {
    display: block;
}     
.menu {
        z-index:400;
        display: block;
    }
    .team_teaser, .ce_downloads {
        width: 31.333%;
    }
#id_2, #id_4, #id_5, #id_6 {
    padding: 80px 0px;
}  
    #id_3 {
        padding-top:100px;
        
    }    
.foto_text img {
    max-width: 45%;
}    
}
@media only screen and (max-width: 720px) {
    .contactform {
        padding: 2em;
    }
    .team_teaser, .ce_downloads {
        width: 48%;
    }
    .widget-checkbox label {
        padding-right: 0px;
}
    .submit {
        top:0px;
    }
        #footer nav {
    clear: both;
    float: left;
    padding-top:10px;    
}
}	
@media only screen and (max-width: 480px) {
     .team_teaser, .ce_downloads, .p_8 .ce_text {
        width: 98%;
    }
    .ce_downloads {
        border-top: 1px solid #cecece;
        padding-top:20px;
    }
    .p_8 .ce_text {
        border-left: none;
        border-top: 1px solid #cecece;
        padding-top:20px;
    }
    .foto_text img {
        max-width: 100%;
        margin:auto;
        margin-bottom:20px;
    } 
.toggle_button {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    right:auto;
    top:0px;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    left: 50%;
    }    
    .scroll_down {
        display: none;
    }
.toggle_text {
    right:auto;
    color:#fff;
    padding: 1em 2em 2.5em 2em;
    white-space: nowrap;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    left: 50%;
    margin-right: 0px;
    bottom:-40px;
    margin-bottom:-500px;
}  
.toggle_text.open {
    margin-bottom:0px;
}      
  .contact_button {
    position:fixed;
    width: 100%;  
    top:auto;
    bottom: 40px;
    z-index:400;  
    -webkit-transform: translate(0%, 0%);  
        -ms-transform: translate(0%, 0%);  
            transform: translate(0%, 0%);
    left:0px;  
    right:0px;
}

}



		

