@charset "utf-8";
/* CSS Document */

/* poppins-300 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/poppins-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v20-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-300italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: local(''),
       url('../fonts/poppins-v20-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v20-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: local(''),
       url('../fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v20-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-500italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: local(''),
       url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v20-latin-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


* {
	box-sizing:border-box;
}

/* Grundgeruest */
html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
	color:#1f1f20;
	font-size:14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	line-height:154%;
	padding:0px;
	margin:0px;
    position: relative;
    width: 100%;
	min-height:100%;
	-webkit-text-size-adjust:none;
	overflow-y:scroll;
	-webkit-border-radius:0;
    -webkit-appearance: none;
}

.bg_body {
	background:url(../images/layout/bg_body.jpg) left top no-repeat;
	background-size:cover !important;
	position: absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:0;
}


.wrap {
	max-width:90%;
	width:1200px;
	position:relative;
	margin:0 auto;
}



/* HEADER */

header {
	z-index:1000;
	width:100%;
	position:relative;
	border-top:5px solid #f4f6f9;
	padding-bottom:25px;
	background: #fff;
}

.logo {
	max-width:100%;
	float:left;
	height:auto;
	position:relative;
	margin:0;
	margin-top:25px;
	z-index:30;
}


header .logo img {
	display:block;
	max-width:100%;
	border:none;
}



/* NAVI */
/* Ebene 1 */

.mobil {
	display:none;
}

nav {
	position:relative;
	margin:0px 0px 0 0;
	padding-top:22px;
	z-index:1000;
}

nav ul {
	margin:0px 0 0px 0px;
	padding:0px;
	list-style:none;
	float:right;
}

nav ul li {
	position:relative;
	display:block;
	float:left;
	margin:0px 1px;
}

nav ul li.last {
	margin-right:0px;
}

nav ul li a, nav ul li span  {
	line-height:130%;
	display:block;
	font-weight:300;
	color:#004a78;
	font-size:13px;
	text-transform:uppercase;
	padding:9px 10px 6px 10px;
	background:#f4f6f9;
}

nav ul li a:hover, nav ul li span:hover {
	color:#fff;
	background:#004a78;
}

.button_menu {
	display:none;
}

button {
  display: inline-block;
  margin: 0;
  border: none;
  background: none;
}
button span {
  display: block;
}

/* CONTENT */

.container {
	position:relative;
	padding:50px 46px 50px 46px;
	z-index:20;
}

h1 {
	position:relative;
	margin:0px 0 25px 0px;
	display:block;
	font-size:25px;
	color:#004a78;
	line-height:120%;
	z-index:0;
	font-weight:500;
	font-variant:small-caps;
	text-align:center;
}

.tc {
	text-align: center;
}

h2 {
	position:relative;
	margin:20px 0 0px 0px;
	color:#004a78;
	display: inline-block;
	font-size:15px;
	z-index:0;
	font-weight:normal;
	padding-bottom:8px;
}

h2::after {
	position:absolute;
	content:'';
	background:#004a78;
	left:25%;
	right:25%;
	height:3px;
	bottom:0px;
}



h3 {
	position:relative;
	margin:30px 0 10px 0px;
	display: block;
	font-size:15px;
	z-index:0;
	font-weight:500;
}

h4 {
	position:relative;
	margin:0px 0 20px 0px;
	display: block;
	font-size:15px;
	z-index:0;
	font-weight:500;
	color:#004a78;
}


a {
	text-decoration: none;
}

.col_50 {
	float:right;
	width:50%;
}

.boxprice {
	background:#fff;
	padding:12px 15px;
	margin-bottom:2px;
	border-radius: 2px;
	transition: all 0.3s ease-in;
}

.boxprice:hover {
	background:#f1f2f4;
}


.boxprice div {
	float:left;
}

.boxprice .caption {
	width:30px;
}

.boxprice .text {
	width:70%;
}

.boxprice .price {
	text-align:right;
	float:right;
	font-weight:500;
	color:#004a78;
	width:20%;
}

.butlink {
	float:right;
	padding:12px 15px;
	margin-top:20px;
	border-radius: 2px;
	background:#004a78;
	color:#fff;
	font-weight:500;
}

.sophia {
	position: absolute;
	left:0px;
	bottom:0px;
	width:684px;
	height:628px;
}

.sophia .img {
	position: absolute;
	left:0px;
	bottom:0px;
	top:0px;
	right:0px;
	z-index:10;
	background: url(../images/bilder/sophia.png) no-repeat;
}


.sophia ul {
	position: absolute;
	z-index:3;
	left:285px;
	top:142px;
	width:209px;
	height:197px;
	padding:0px;
	margin:0px;
	list-style: none;
}

.sophia ul li {
	width:209px;
	height:197px;
}


@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  to {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  to {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
	visibility:visible !important;
}

.fiy1, .fiy2, .fiy3, .fiy4, .fiy5, .fiy6 {
	visibility:hidden;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;

}

#cboxCurrent, #cboxPrevious, #cboxNext {
	display:none !important;
}

.hgbox {
	padding:30px;
}

/* Floats ohne zusaetzliches Element aufheben */
.clearfix:after {
	content: "";
	visibility: hidden;
	display: block;
	clear: both;
	height: 0;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}

@-ms-viewport{width:device-width}


img {
	border:none;
	max-width:100%;
	height:auto;
	vertical-align:middle;
}
