@charset "utf-8";
* {
	margin: 0;
	padding: 0;
}
body, html {
	padding: 0;
	color: #666666;
	font-family: 'ubuntu', cursive, Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	max-width: 2560px;
	width: 100%;
	text-align: left;
	background-color: #FFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.clear  {
	clear: both;
	height: 1px;
	margin: 0px;
	padding: 0px;
}
img {
	height: auto;
	width: 100%;
	max-width: 100%;
	margin: 0px;
	padding: 0px;
	display: block;
}
p,h1,h2,h3  ,h4{
	padding-right: 2%;
	padding-left: 2%;
}
p    {
	font-family: 'ubuntu', Arial, Helvetica, sans-serif;
}
h1 {
	font-family: 'ubuntu', cursive, Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
	font-weight: bold;
	color: #2B4799;
}
h2 {
	font-family: 'ubuntu', cursive, Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
	font-weight: bold;
	color: #A71417;
}

h3 {
	font-family: 'ubuntu', cursive, Arial, Helvetica, sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	color: #2B4799;
}
h4 {
	font-family: 'ubuntu', cursive, Arial, Helvetica, sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	color: #FFFFFF;
}
#menuToggle {
	display: block;
	position: relative;
	top: 25px;
	left: 25px;
	z-index: 1;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#menuToggle
a
{
	text-decoration: none;
	color: #999999;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	border-radius: 3px;
	z-index: 1;
	-webkit-transform-origin: 4px 0px;
	transform-origin: 4px 0px;
	-webkit-transition: background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease,
              -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	transition: background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease,
              -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease,
              -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	background-color: #2B4799;
}

#menuToggle span:first-child
{
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
	opacity: 1;
	-webkit-transform: rotate(45deg) translate(-2px, -1px);
	transform: rotate(45deg) translate(-2px, -1px);
	background-color: #A71417;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  -webkit-transform: rotate(-45deg) translate(0, -1px);
          transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
	position: absolute;
	width: 200px;
	padding-top: 125px;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	/* to stop flickering of text in safari */
  
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	transition: -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	margin-top: -100px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -50px;
	padding-right: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	background-color: #FFFFFF;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  -webkit-transform: none;
          transform: none;
}
.logo {
	height: auto;
	width: 90%;
	padding-top: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.anchor {
	padding-top: 20px;
}

nav {
	width: 100%;
}
.container {
	width: 100%;
	max-width: 2560px;
	margin-right: auto;
	margin-left: auto;
	height: auto;
}


.line10 {
	height: auto;
	width: 100%;
}

.content10   {
	width: 100%;
	height: auto;
}
.wrapper {
	width: 100%;
}

.line11 {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 30px;
}
.content11 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.content11 ul   {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.content11 li {
	display: block;
	text-align: center;
	line-height: 90px;
	height: 90px;
	width: 100%;
}
.content11 a {
	display: block;
	transition: .3s background-color;
	text-decoration: none;
}
.content11 a:link   {
	text-decoration: none;
	display: block;
	color: #A71417;
}
.content11 a:visited      {
}
.content11 a:hover   {
}
#link1101 {
	position: relative;
	border: 1px solid #2B4799;
	background-color: #2B4799;
	margin-top: 30px;
}

#link1101 :before{
	content: '';
	position: absolute;
	left: 2.5%;
	top: 12%;
	width: 95%;
	border: 1px solid #FFFFFF;
	right: 2.5%;
	bottom: 12%;
	height: auto;
}
#link1101 a{
	color: #FFFFFF;
	font-size: 1.5rem;
}

#link1102  {
	position: relative;
	border: 1px solid #A71417;
	background-color: #FFFFFF;
	margin-top: 30px;
}
#link1102 :before{
	content: '';
	position: absolute;
	left: 2.5%;
	top: 12%;
	width: 95%;
	border: 1px solid #A71417;
	right: 2.5%;
	bottom: 12%;
	height: auto;
}
#link1102 a {
	font-size: 1.5rem;
	color: #666;
}
#link1103  {
	position: relative;
	border: 1px solid #A57341;
	background-color: #A71417;
	margin-top: 30px;
}
#link1103 :before{
	content: '';
	position: absolute;
	left: 2.5%;
	top: 12%;
	width: 95%;
	border: 1px solid #FFFFFF;
	right: 2.5%;
	bottom: 12%;
	height: auto;
}
#link1103 a{
	color: #FFFFFF;
	font-size: 1.5rem;
}
#link1104  {
	position: relative;
	border: 1px solid #2B4799;
	background-color: #FFFFFF;
	margin-top: 30px;
}
#link1104 :before{
	content: '';
	position: absolute;
	left: 2.5%;
	top: 12%;
	width: 95%;
	border: 1px solid #2B4799;
	right: 2.5%;
	bottom: 12%;
	height: auto;
}
#link1104 a {
	font-size: 1.5rem;
	color: #666;
}
.line12 {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 30px;
}
.content12 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.content12 figure {
	position: relative;
	border: 1px solid #2B4799;
}
.content12 figure:before {
	content: '';
	position: absolute;
	left: 2.5%;
	top: 0.7%;
	width: 95%;
	border: 1px solid #A71417;
	right: 2.5%;
	bottom: 0.7%;
	height: auto;
}
.content1201 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 5%;
	height: auto;
	font-size: 1.3rem;
}
.content1202 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5%;
	height: auto;
	margin-top: 5%;
}
.line13 {
	width: 100%;
}
.content13 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.content1301 {
	margin-right: auto;
	margin-left: auto;
	margin-top: 5%;
	height: auto;
	font-size: 1.3rem;
	background-color: #F4F9FF;
}


.content1301 h2 {
	padding-top: 10%;
}
.content1301 p {

}
.image1301{
	width: 100%;
	height: 500px;
	position: relative;
	background-image: url(../images/felix-alarm04.jpg);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	margin-top: 5%;
}
.image1301:before{
    content:'';
    position: absolute;
    left: 2%;
    top: 2%;
    width: 95%;
    height: 95%;
    border: 1px solid white;
}
.line14 {
	width: 100%;
}
.content14 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.content1401 {
	margin-right: auto;
	margin-left: auto;
	margin-top: 5%;
	height: auto;
	font-size: 1.3rem;
	background-color: #FFF2F3;
}
.content1401 h2 {
	padding-top: 10%;
}
.content1401 p {

}
.image1401 {
	width: 100%;
	height: 500px;
	position: relative;
	background-image: url(../images/felix-alarm05.jpg);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	margin-top: 5%;
}

.image1401:before {
	content: '';
	position: absolute;
	left: 2%;
	top: 2%;
	width: 95%;
	height: 95%;
	border: 1px solid white;
}
.line15 {
	width: 100%;
}
.content15 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.image1500 {
	margin-top: 5%;
}
.image1501 {
	width: 49%;
	float: left;
	margin-right: 1%;
}
.image1502 {
	width: 49%;
	float: left;
	margin-left: 1%;
}
.image1503 {
	width: 49%;
	float: left;
	margin-right: 1%;
	margin-top: 2%;
}
.image1504 {
	width: 49%;
	float: left;
	margin-left: 1%;
	margin-top: 2%;
}
.clearblock {
	clear: both;
	height: 1px;
	margin: 0px;
	padding: 0px;
}
.content1501 {
	font-size: 1.3rem;
	margin-top: 5%;
}
.content1501 h2 {
	padding-top: 10%;
}
.content1501 p {

}
.line16 {
	width: 100%;
}
.content16 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.image1600 {
	margin-top: 5%;
	width: 100%;
	text-align: center;
}
.line20 {
	width: 100%;
	/* [disabled]padding-top: 50px; */
	padding-bottom: 30px;
}
.content20 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 90px;
}
.text {
	float: left;

}
.text p{
	font-size: 1.3rem;
}
.text img {
	width: 100%;
	float: left;

}


.line30 {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 30px;
}
.content30 {
	width: 86%;
	margin-right: auto;
	margin-left: auto;
}

.rslides {
	position: relative;
	float: left;
	width: 100%;
}
/*! http://responsiveslides.com v1.54 by @viljamis */
.callbacks_container {
	margin-bottom: 50px;
	position: relative;
	float: left;
	width: 100%;
  }
.callbacks {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
  }
.callbacks li {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
  }
.callbacks img {
	display: block;
	position: relative;
	/* [disabled]z-index: 1; */
	height: auto;
	width: 100%;
	border: 0;
  }
.callbacks_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	top: 52%;
	left: 0;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 61px;
	width: 38px;
	margin-top: -45px;
	background-color: transparent;
	background-image: url(../images/themes.gif);
	background-repeat: no-repeat;
	background-position: left top;
  }
.callbacks_nav:active {
	opacity: 1.0;
  }
.callbacks_nav.next {
	left: auto;
	background-position: right top;
	right: 0;
  }
.line35 {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 30px;
}
.content35 {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
figure.snip1477 {
	font-family: 'Architects Daughter', cursive, Arial, Helvetica, sans-serif;
	position: relative;
	overflow: hidden;
	width: 90%;
	color: #ffffff;
	text-align: center;
	font-size: 1rem;
	background-color: #000000;
	margin-top: 10px;
	margin-right: 5%;
	margin-bottom: 50px;
	margin-left: 5%;
}
figure.snip1477 *,
figure.snip1477 *:before,
figure.snip1477 *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.55s ease;
	transition: all 0.55s ease;
}
figure.snip1477 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: 0.9;
}
figure.snip1477 .title {
  position: absolute;
  top: 58%;
  left: 25px;
  padding: 5px 10px 10px;
}
figure.snip1477 .title:before,
figure.snip1477 .title:after {
	height: 2px;
	width: 400px;
	position: absolute;
	content: '';
	background-color: #ffffff;
}
figure.snip1477 .title:before {
	top: 0;
	left: 10px;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
figure.snip1477 .title:after {
	bottom: 0;
	right: 10px;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
figure.snip1477 .title div:before,
figure.snip1477 .title div:after {
	width: 2px;
	height: 300px;
	position: absolute;
	content: '';
	background-color: #ffffff;
}
figure.snip1477 .title div:before {
	top: 10px;
	right: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
figure.snip1477 .title div:after {
	bottom: 10px;
	left: 0;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
figure.snip1477 h2
  {
  margin: 0;
  text-transform: uppercase;
}
figure.snip1477 h2 {
  font-weight: 400;
}
figure.snip1477 figcaption {
  position: absolute;
  bottom: 42%;
  left: 25px;
  text-align: left;
  opacity: 0;
  padding: 5px 60px 5px 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
}
figure.snip1477 figcaption p {
  margin: 0;
}
figure.snip1477 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
figure.snip1477:hover img,
figure.snip1477.hover img {
  filter: alpha(opacity=35);
  -webkit-opacity: 0.35;
  opacity: 0.35;
}
figure.snip1477:hover .title:before,
figure.snip1477.hover .title:before,
figure.snip1477:hover .title:after,
figure.snip1477.hover .title:after,
figure.snip1477:hover .title div:before,
figure.snip1477.hover .title div:before,
figure.snip1477:hover .title div:after,
figure.snip1477.hover .title div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
figure.snip1477:hover .title:before,
figure.snip1477.hover .title:before,
figure.snip1477:hover .title:after,
figure.snip1477.hover .title:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
figure.snip1477:hover figcaption,
figure.snip1477.hover figcaption {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.line40 {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 30px;
}
.content40 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.line50 {
	width: 90%;
	padding-top: 40px;
	padding-bottom: 25px;
	margin-right: auto;
	margin-left: auto;
}
.content50 {
	width: 100%;
}
.ih5_teaser_wrapper {
	width: 100%;
}
.ih5_teaser {
	width: 96%;
	margin-right: 2%;
	margin-left: 2%;
	margin-bottom: 40px;
}
.ih5t_image {
	width: 100%;
	height: auto;
	background-size: cover;
	transition: all 0.3s linear;
}
.ih5_teaser:hover .ih5t_image {
	transform: scale(1.05);
}
.ih5t_text {
	width: 86%;
	padding-top: 35px;
	padding-left: 7%;
	padding-right: 7%;
	text-align: center;
}
.ih5t_text p{
	font-size: 1.5rem;
}
.ih5t_text b {
	width: 100%;
	display: inline-block;
	font-size: 2.2rem;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: bold;
}
.ih5t_text .more {
	font-size: 1.5rem;
	background-color: #666666;
	color: #CCCCCC;
	border: #1d1d1b solid 1px;
	text-decoration: none;
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 3px;
	display: inline-block;
	transition: all 0.3s linear;
	cursor: pointer;
	margin-top: 30px;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	margin-bottom: 50px;
}
.ih5t_text .more:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #1d1d1b;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.ih5t_text .more:hover, .ih5t_text .more:focus, .ih5t_text .more:active {
	color: white;
}
.ih5t_text .more:hover:before, .ih5t_text .more:focus:before, .ih5t_text .more:active:before {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.line60 {
	width: 100%;
	background-color: #565654;
	position: relative;
	padding-bottom: 50px;
}
.content60 {
	width: 100%;
	height: auto;
}
.content60 p{
	font-size: 1.5rem;
}
#contact_bottom {
	width: 100%;
	line-height: 1.2;
	color: #FFFFFF;
	padding-top: 30px;
	text-align: center;
}
#contact_bottom strong {
	width: 100%;
	display: inline-block;
	font-size: 2.2rem;
	margin-bottom: 30px;
	font-weight: bold;
}
#contact_bottom a, #newsletter a.mail {
	color: #FFFFFF;
	text-decoration: none;
	display: inline-block;
}
#contact_bottom a:after, #newsletter a.mail:after {
	content: '';
	display: block;
	height: 1px;
	width: 0;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
#contact_bottom a:hover:after, #newsletter a.mail:hover:after {
	width: 100%;
	background: #FFFFFF;
}
#nav_bottom {
	width: 100%;
	line-height: 1.2;
	color: #FFFFFF;
	padding-top: 50px;
	text-align: center;
}
#nav_bottom strong {
	width: 100%;
	display: inline-block;
	font-size: 2.2rem;
	margin-bottom: 30px;
	font-weight: bold;
}

#nav_bottom ul {
	width: 100%;
	display: inline-block;
	padding: 0px;
}
#nav_bottom ul li {
	width: 100%;
	display: inline-block;
	text-align: center;
	list-style: none;
	font-size: 1.3rem;
}
#nav_bottom a {
	color: #FFFFFF;
	text-decoration: none;
	display: inline-block;
	font-size: 1.3rem;
}
#nav_bottom a:after {
	content: '';
	display: block;
	height: 1px;
	width: 0;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
#nav_bottom a:hover:after {
	width: 100%;
	background: #FFFFFF;
}
#newsletter {
	width: 100%;
	line-height: 1.2;
	color: #FFFFFF;
	padding-top: 50px;
	text-align: center;
}
#newsletter strong {
	width: 100%;
	display: inline-block;
	font-size: 2.2rem;
	margin-bottom: 30px;
	font-weight: bold;
}
#newsletter a.button {
	width: auto;
	font-size: 2rem;
	background-color: #565654;
	color: #FFFFFF;
	border: #FFFFFF solid 1px;
	text-decoration: none;
	font-weight: bold;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 16px;
	padding-bottom: 16px;
	display: inline-block;
	transition: all 0.3s linear;
	cursor: pointer;
	line-height: 1.0;
	margin-top: 30px;
}
#newsletter a.button {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
#newsletter a.button:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFFFFF;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
#newsletter a.button:hover, #newsletter a.button:focus, #newsletter a.button:active {
	color: #565654;
}
#newsletter a.button:hover:before, #newsletter a.button:focus:before, #newsletter a.button:active:before {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.line70 {
	width: 100%;
	height: auto;
	display: block;
}
.contact iframe{
	width: 100%;
	height: 400px;
	display: block;
	border: 0px;
}
@media screen and (min-width:15em)
{
}
@media screen and (min-width:25em)
{
}
@media screen and (min-width:35em)
{
}
@media screen and (min-width:50.063em)
{




#menuToggle
{
	top: 25px;
	left: 75px;
	-ms-user-select: none;
	user-select: none;
}

#link1101 :before{
	width: 97%;
	right: 1.5%;
	left: 1.5%;
}
#link1102 :before{
	width: 97%;
	right: 1.5%;
	left: 1.5%;
}
#link1103 :before{
	width: 97%;
	right: 1.5%;
	left: 1.5%;
}
#link1104 :before{
	width: 97%;
	right: 1.5%;
	left: 1.5%;
}
.section01 {
	padding-top: 50px;

}
.section02 {
	padding-top: 50px;
}
.section03 {
	padding-top: 50px;
}
.section04 {
	padding-top: 60px;
}	
}
@media screen and (min-width:64.063em)
{
.section01 {
	padding-top: 70px;

}
.section02 {
	padding-top: 70px;
}
.section03 {
	padding-top: 70px;
}
.section04 {
	padding-top: 20px;
}	
h4 {
	font-family: 'ubuntu', cursive, Arial, Helvetica, sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	color: #FFFFFF;
}
#menuToggle {
	top: 75px;
	left: 75px;
	-ms-user-select: none;
	user-select: none;
}

.logo {
	height: auto;
	width: 40%;
	padding-top: 40px;
	margin-right: auto;
	margin-left: 50%;
}
.content11 {
	width: 97%;
	padding-left: 3%;
	margin: 0px;
}
.content11 li {
	display: block;
	text-align: center;
	line-height: 150px;
	height: 150px;
	color: #FFF;
	width: 22%;
	float: left;
	margin-right: 1%;
	margin-left: 1%;
}
#link1101 :before{
	width: 80%;
	right: 10%;
	left: 10%;
}
#link1101 a {
	font-size: 1.2rem;
}

#link1102 :before{
	width: 80%;
	right: 10%;
	left: 10%;
}
#link1102 a {
	font-size: 1.2rem;
}

#link1103 :before{
	width: 80%;
	right: 10%;
	left: 10%;
}
#link1103 a {
	font-size: 1.2rem;
}

#link1104 :before{
	width: 80%;
	right: 10%;
	left: 10%;
}
#link1104 a {
	font-size: 1.2rem;
}
.content12 {
	width: 92%;
	margin-right: auto;
	margin-left: auto;
}
.content12 figure:before {
	content: '';
	position: absolute;
	left: 1.5%;
	top: 3%;
	width: 97%;
	right: 1.5%;
	bottom: 3%;
	height: auto;
}
.content1201 {
	width: 55%;
	float: right;
	padding-right: 10%;
	font-size: 1.3rem;
	padding-left: 5%;
}
.content1202 {
	width: 25%;
	float: left;
	padding-left: 5%;
}
.content13 {
	width: 94%;
	margin-right: auto;
	margin-left: auto;
	height: 500px;
}
.content1301 {
	font-size: 1.3rem;
	width: 50%;
	width: 48%;
	float: left;
	padding: 0%;
	margin-top: 0%;
	margin-right: 1%;
	margin-bottom: 0%;
	margin-left: 1%;
	height: 500px;
}
.content1301 h2 {
	/* [disabled]margin-right: 10%; */
	/* [disabled]margin-left: 10%; */
}
.content1301 p{
	/* [disabled]margin-right: 10%; */
	/* [disabled]margin-left: 10%; */

}
.image1301 {
	width: 48%;
	float: left;
	padding: 0px;
	margin-right: 1%;
	margin-left: 1%;
	margin-top: 0%;
	margin-bottom: 0%;
}
.content14 {
	width: 94%;
	margin-right: auto;
	margin-left: auto;
	height: 500px;
}
.content1401 {
	font-size: 1.3rem;
	width: 50%;
	width: 48%;
	float: left;
	padding: 0%;
	margin-top: 2%;
	margin-right: 1%;
	margin-bottom: 0%;
	margin-left: 1%;
	height: 500px;
}
.content1401 h2 {

}
.content1401 p {

}
.image1401 {
	width: 48%;
	float: left;
	padding: 0px;
	margin-right: 1%;
	margin-left: 1%;
	margin-top: 2%;
	margin-bottom: 0%;
}
.content15 {
	width: 92%;
	margin-right: auto;
	margin-left: auto;
}
.image1500 {
	width: 49%;
	margin-right: 1%;
	float: left;
	height: auto;
}
.image1500 img{
	width: 100%;
	height: auto;
}
.image1501 {
	width: 49%;
	float: left;
	margin-right: 1%;
	background-color: #0C9;
}
.image1502 {
	width: 49%;
	float: left;
	margin-left: 1%;
}
.image1503 {
	width: 49%;
	float: left;
	margin-right: 1%;
	margin-top: 2%;
}
.image1504 {
	width: 49%;
	float: left;
	margin-left: 1%;
	margin-top: 2%;
}
.clearblock {
	clear: none;
	height: 1px;
	margin: 0px;
	padding: 0px;
	float: left;
}
.content1501 {
	font-size: 1.3rem;
	float: left;
	width: 49%;
	margin-left: 1%;
	height: auto;
}
.content1501 h2 {
	padding-top: 3%;
}
.content1501 p {

}
.line16 {
	width: 100%;
}
.content16 {
	width: 92%;
	margin-right: auto;
	margin-left: auto;
}
.image1600 {
	margin-top: 5%;
	width: 19%;
	float: left;
	margin-right: 2%;
	margin-left: 4%;
	margin-bottom: 5%;
}

.line20 {	padding-top: 80px;
	padding-bottom: 80px;
}

.content20 {
	width: 95%;
}
.text img {
	width: 50%;
	float: left;
	padding-right: 2%;
	padding-left: 2%;
}

.content30 {
	width: 92%;
}
.content35 {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
}
figure.snip1477 {
	float: left;
	width: 30%;
	margin-right: 0%;
	margin-left: 2.5%;
}
.content40 {
	width: 95%;
}
.line40 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.text p{
	font-size: 1.5rem;
}
.line50 {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
}
.ih5_teaser {
	width: 28%;
	float: left;
	display: block;
	margin: 0px;
	padding-left: 4%;
}
.content60 {
	width: 80%;
	height: auto;
	padding-right: 10%;
	padding-left: 10%;
}
#contact_bottom {
	width: 33.33333333%;
	float: left;
	text-align: left;
}
#nav_bottom {
	width: 33.33333333%;
	float: left;
	text-align: center;
}
#nav_bottom ul li{
	margin: 0px;
	padding: 0px;

}
#newsletter {
	width: 33.33333333%;
	float: left;
	text-align: right;
}
}
@media screen and (min-width:85.438em)
{
.contact iframe {
	width: 100%;
	height: 500px;
}
.wrapper {
	width: 90%;
	max-width: 1920px;
	margin-right: auto;
	margin-left: auto;
	height: auto;
}
#menuToggle {
	top: 100px;
	left: 100px;
	-ms-user-select: none;
	user-select: none;
}
}
@keyframes move {0% {opacity:0;top:300px;}100% {opacity:100;}}
/* -------------------------------- 

script: back to top button
-------------------------------- */
.cd-top {
	display: inline-block;
	height: 30px;
	width: 30px;
	position: fixed;
	bottom: 5em;
	right: 2em;
	/* image replacement properties */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
	box-shadow: 0px 0px 5px #28288c;
	background-color: rgba(43,71,153,0.8);
	background-image: url(../images/backtotopbutton/cd-top-arrow.svg);
	background-repeat: no-repeat;
	background-position: center 50%;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}
.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .8;
}
.no-touch .cd-top:hover {
	background-color: rgba(153,51,51,0.8);
	opacity: 1;
}
