﻿/*
Theme Name: wfw
Theme URI: https://
Author: Michid
Author URI: http://tidythemes.com/
Description: Thank you.
Version: 2019.1
License: none
License URI: https://www.gnu.org/licenses/gpl.html
Tags: one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Text Domain: wfw

*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}body{line-height:1}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}

html, body{ 
  min-height: 100vh;
  /*overflow: auto;*/
}

html {
	font-size: 62.5%;
	background: rgb(211,211,210);
	background: linear-gradient(330deg, rgba(211,211,210,1) 0%, rgba(224,224,224,1) 25%, rgba(239,239,239,1) 50%, rgba(188,188,188,1) 75%, rgba(211,211,211,1) 100%);
}

body {
 background: url(img/texture.png);
	font-family: 'Roboto', 'Helvetica', Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	color: #001122;
	display: flex;
    flex-direction: column;
    font-weight: 400;
}
@media all and (min-width: 62.5em) {
	body {
		font-size: 18px;
		font-size: 1.8rem;
	}
}

#wrapper {
	flex: 1 0 auto;

  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .wp-block-quote p {
	font-family: 'Roboto', 'Helvetica', Arial, sans-serif;
	color: #004578;
  text-transform: uppercase;
  font-weight: 700;
}
a {
	color: #004578;
	text-decoration: none;
	transition: all .1s ease-out;
}
a:hover {
  color: rgba(0,69,120,.5);
}
p strong, p b {
	font-weight: 700;
}

#header.header {
	width: 100%;
	background: white;
	position: relative;
  z-index: 10;
    -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
  
}
#header.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: smoothScroll 1s forwards;
  background: rgba(255,255,255,0.9);
  height: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
@keyframes smoothScroll {
  0% {  transform: translateY(-40px); }
  100% {  transform: translateY(0px); }
}
#header.header.fixed #logos {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
#header.header.fixed #menu-main {
      margin: 10px 0;
}
#header.header.fixed  #menu-main li a {
  font-size: 14px;
  font-size: 1.4rem
}
@media all and (min-width: 62.5em) {
  #header.header  {
    height: 15rem;
  }
  #header.header.fixed .menu-main-container {
    height: auto;
  }
  #header.header.fixed #logos {
    opacity: 1;
  }
  #header.header.fixed #logos a {
    height: 40px;
    width: 50px;
    transition: none;
  }
}

h1, .wp-block-quote p {
	font-size: 30px;
	font-size: 3rem;
}
h1 strong, .wp-block-quote p strong {
	font-weight: 900;
	color: white;
}
h2 {
	font-size: 26px;
	font-size: 2.6rem;
    margin-top: 70px;
    margin-left: 20px;
}
h2 strong {
	color:#6A8990;
	font-weight: 900;
}
h3 {
	font-size: 20px;
	font-size: 2rem;
	text-transform: none;
}
@media all and (min-width: 62.5em) {
	h1, .wp-block-quote p {
		font-size: 60px;
		font-size: 6rem;
	}
	h2 {
		font-size: 36px;
		font-size: 3.6rem;
	    margin-top: 100px;
	     margin-left: 0;
	}
	h3 {
		font-size: 24px;
		font-size: 2.4rem;
	}
}


.show-active {
	-moz-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    -moz-animation: moveUp 0.35s ease forwards;
    -o-animation: moveUp 0.35s ease forwards;
    -ms-animation: moveUp 0.35s ease forwards;
    -webkit-animation: moveUp 0.35s ease forwards;
    animation: moveUp 0.35s ease forwards;
}
@-webkit-keyframes moveUp{
	100%{-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes moveUp{
	100%{-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}

.wp-block-quote  {
  display: none;
  z-index: 3;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    width: 90%;
    margin: 0 auto;
}
.wp-block-quote  p {
  position: relative;
  padding: 0;
  width: 0;
  opacity: 0;
  background: rgba(255,255,255,0.4);
}
.wp-block-quote.active  p {
  opacity: 1;
  -webkit-animation: slide-right 0.5s cubic-bezier(0.840, -0.600, 0.380, 1.650) 0.8s  both;
  animation: slide-right 0.5s cubic-bezier(0.840, -0.600, 0.380, 1.650) 0.8s  both;
}
.wp-block-quote.done {
  display: none;
}
.wp-block-quote.done  p {
  opacity: 1;
  width: 100%;
}
.wp-block-quote p .block-ani {
  max-height:0;
  padding: 0; 
}
.wp-block-quote.active p .block-ani {
  -webkit-animation: slide-right-block 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.4s  both;
  animation: slide-right-block 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.4s  both;
}
.wp-block-quote.done p .block-ani {
  max-height: 600px; 
  padding: 10px 0; 
}
.wp-block-quote p .text-ani {
    opacity: 0;
    padding: 0 10px;
}
.wp-block-quote.active  p .text-ani {
    -webkit-animation: slide-right-text 0.3s ease-in-out 1.5s both;
    animation: slide-right-text 0.3s ease-in-out 1.5s both;
}
.wp-block-quote.done  p .text-ani {
    opacity: 1;
}

.wp-block-quote p:before {
    width: 15px;
    height: 15px;
    content:'';
    background: #FBDA00;
    position: absolute;
    top:-15px;
    left: -15px;
}
.wp-block-quote  p:after {
    width: 15px;
    height: 15px;
    content:'';
    background: #A91A1E;
    position: absolute;
    bottom:-15px;
    right: -15px;
}
.wp-block-quote p strong {
	    -webkit-animation: pulse-text 5s ease-in-out 1.5s both infinite;
    animation: pulse-text 5s ease-in-out 1.5s both infinite;
}
@media all and (min-width: 62.5em) {
	.wp-block-quote  {
	    padding-top: 100px;
      width: auto;
      margin: 0;
	}
	.wp-block-quote.done p .block-ani {
	  padding: 50px 0; 
	}
	.wp-block-quote p .text-ani {
	    padding: 0 50px;
	}
  .wp-block-quote.active p .block-ani {
    -webkit-animation: slide-right-block2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.4s  both;
    animation: slide-right-block2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.4s  both;
  }
	.wp-block-quote p:before {
	    width: 30px;
	    height: 30px;
	    top:-30px;
	    left: -30px;
	}
	.wp-block-quote  p:after {
	    width: 30px;
	    height: 30px;
	    bottom:-30px;
	    right: -30px;
	}
}

@-webkit-keyframes slide-right {
  0% { width: 0%; }
  100% { width: 100%;  }
}
@keyframes slide-right {
  0% { width: 0%; }
  100% {width: 100%; }
}

@-webkit-keyframes slide-right-block {
  0% { max-height:0; padding: 0; }
  100% {max-height: 600px;  padding: 10px 0; }
}
@keyframes slide-right-block {
  0% {max-height:0; padding: 0;  }
  100% {max-height: 600px; padding: 10px 0; }
}
@-webkit-keyframes slide-right-block2 {
  0% { max-height:0; padding: 0; }
  100% {max-height: 600px;  padding: 50px 0; }
}
@keyframes slide-right-block2 {
  0% {max-height:0; padding: 0;  }
  100% {max-height: 600px; padding: 50px 0; }
}

@-webkit-keyframes slide-right-text {
  0% {opacity: 0; }
  100% {opacity: 1; }
}
@keyframes slide-right-text {
  0% {opacity: 0; }
  100% {opacity: 1; }
}

@keyframes pulse-text {
  50% {opacity: 0.7}
}


#logos {
	height: 100px;
}
@media all and (min-width: 62.5em) {
	#logos {
	  height: 0;
	}
}
#logos a {
  display: block;

  position:absolute;
  top: 0;
  left: 20px;
  height: 90px;
  width: 100px;
    text-indent: -9999px;
    background: url(../wfw/img/wohlfuehlwohnen.png) no-repeat center center;
    background-size: contain;
}
#logos a:last-child {
      background-image: url(../wfw/img/fmz.png);
      right: 20px;
      width: 80px;
      left: auto;
      opacity: 0.3;
}
#logos a:last-child:hover {
      opacity: 1;
      transform:scale(1.02);
}
@media all and (min-width: 62.5em) {
	#logos a {
	  height: 150px;
	  width: 200px;
	}
	#logos a:last-child {
	   width: 150px;
	}
}


.header .menu-main-container {
  display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media all and (min-width: 62.5em) {
	.header .menu-main-container {
	  height: 150px;
	}
}

#menu-main {
  text-align: center;
    width: 960px;
    margin-bottom: 20px;
}
@media all and (min-width: 62.5em) {
	#menu-main {
	  margin-bottom: 0;
	}
}

#menu-main li {
    display: inline-block;
}

#menu-main li a {
  display:block;
  padding: 5px 10px;
  color: #004578;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  font-size: 1.4rem
}
#menu-main li a:hover {
  color: rgba(106,137,144,1);
}
@media all and (min-width: 62.5em) {
  #menu-main li a {
  font-size: 16px;
  font-size: 1.6rem
  }
}


#menu-main li.current-menu-item a{
  color: rgba(0,69,120,.5);
}

#outer-container {
	overflow: auto;
}

#container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}

article {
	position: relative;
}
article .wp-block-quote.image.done  {
  padding: 250px 0 150px 0;
}
article .wp-block-quote.image.active  {
  padding: 100px 0 300px 0;
  -webkit-animation: block-quote-down 0.2s ease-in 0s both;
  animation: block-quote-down 0.2s ease-in 0s both;
}
@media all and (min-width: 62.5em) {
  article .wp-block-quote.image.active, article .wp-block-quote.image.done  {
  width: min-content;
  }
}
@-webkit-keyframes block-quote-down {
  0% { transform: translate(0,0); }
  100% { transform: translate(0,150px); }
}
@keyframes block-quote-down {
  0% { transform: translate(0,0); }
  100% { transform: translate(0,150px); }
}

.page-template-default .entry-content {
background: rgba(255,255,255,0.4);
    padding: 20px;
    margin-top: 30px;
}
@media all and (min-width: 62.5em) {
	.page-template-default .entry-content {
	    padding: 30px 60px;
	    margin-top: 60px;
	}
}

.project-image {
	position: absolute;
  z-index: 2;
	right: 0;
	top: 20px;
	width: 100%;
  height: 480px;
  background-size: contain;
  display: none;
  opacity: 0;
  background-position: right;
  background-repeat: no-repeat;
}
.project-image.active {
  display: block;
    -webkit-animation: project-image-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s  both;
    animation: project-image-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s   both;
}
.project-image.done {
  display: block;
    -webkit-animation: project-image-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s  both;
    animation: project-image-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s   both;
}
.project-shape {
  display: none;
  z-index: 1;
}
.project-shape.active, .project-shape.done {
  display: block;
}
.project-shape svg {
  transform: rotate(267deg);
  opacity: 0;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 270px;
  height: auto;
}
.project-shape svg path {
  fill: #6A8990;
}
.project-shape.active svg {
  -webkit-animation: project-svg-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.9s  both;
  animation: project-svg-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.9s   both;
}
.project-shape.done svg {
  -webkit-animation: project-svg-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.1s  both;
  animation: project-svg-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.1s   both;
}

@media all and (min-width: 62.5em) {
  .project-image {
    top: -20px;
    height: 800px;
  }
  .project-shape svg {
      bottom: 20px;
    width: initial;
    height: initial;
  }
}

@-webkit-keyframes project-image-animation{
  0% {  opacity: 0;  transform: translate(100px, 0); }
  100% {  opacity: 1;  transform: translate(20px, 0);  }
}
@keyframes project-image-animation {
  0% {  opacity: 0;  transform: translate(100px, 0);  }
  100% { opacity: 1;  transform: translate(20px, 0);  }
}
@-webkit-keyframes project-svg-animation{
  0% {  transform: rotate(189deg);  opacity: 0; }
  100% {  transform: rotate(370deg);  opacity: 0.5; }
}
@keyframes project-svg-animation {
  0% { transform: rotate(189deg); opacity: 0; }
  100% { transform: rotate(370deg); opacity: 0.5; }
}

.project-list {
	position: relative;
}

.project-list-svgcontainer {
	position: absolute;
    top: -75px;
    left: -10px;;
}
.project-list-svgcontainer svg {
    width: 80px;
    height: auto;
    opacity: 1;
     -webkit-animation: project-list-svg-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s  both;
    animation: project-list-svg-animation 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s  both;
}

@media all and (min-width: 62.5em) {
  .project-list-svgcontainer {
      top: -170px;
      left: -170px;;
  }
  .project-list-svgcontainer svg {
      width: 310px;
       -webkit-animation: project-list-svg-animation2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s  both;
      animation: project-list-svg-animation2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s  both;
  }
}

@-webkit-keyframes project-list-svg-animation{
  0% { transform: rotate(89deg); opacity: 0; }
  100% { transform: rotate(288deg); opacity: 0.3; }
}
@keyframes project-list-svg-animation {
  0% { transform: rotate(89deg); opacity: 0; }
  100% { transform: rotate(288deg); opacity: 0.3; }
}
@-webkit-keyframes project-list-svg-animation2{ 
  0% { transform: rotate(189deg); opacity: 0; }
  100% { transform: rotate(360deg); opacity: 0.3; }
}
@keyframes project-list-svg-animation2 {
  0% { transform: rotate(189deg); opacity: 0; }
  100% { transform: rotate(360deg); opacity: 0.3; }
}



.project-list-item-wrapper {}

.project-list-item {
    margin: 30px 0;
    background: rgba(0,69,120,.3);
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    transition: all .2s ease-out;
}
@media all and (min-width: 62.5em) {
	.project-list-item {
		margin: 60px 0;
	}
}
.project-list-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translate(0, -2px);
}
.project-list-item:hover img {
 	transform:scale(1.02);
 	transform-origin: 50%;
}
.project-list-item-wrapper:nth-of-type(even) .project-list-item  {
    background: rgba(106,137,144,.4);
}

.project-thumb {
    float: left;
    width: 100%;
    overflow: hidden;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 350px;
}
@media all and (min-width: 62.5em) {
	.project-thumb {
		width: 50%;
		min-height: 300px;
    max-height: 350px;
	}
}
.project-thumb img {
    width: 100%;
    height: auto;
    float: left;
    transition: all .5s ease-out;
}

.project-list-text {
	padding: 20px;
	color: white;
}
@media all and (min-width: 62.5em) {
	.project-list-text {
		    width: 50%;
		    padding: 30px;
	}
}
.project-list-text p {
	line-height: 2.1rem;
	margin: 30px 0;
}
.project-list-text h3 {
	color: white;
}

.entry-title {
	margin-bottom: 30px;
	display: inline-block;
}

.entry-content {}
.entry-content p {
	margin: 30px 0;
}
@media all and (min-width: 62.5em) {
	.entry-content p {
		margin: 30px 0;
	}
}


.wide-widget-container {
  background: #9ED855;
}
.wide-widget-container div {
  position: relative;
  max-width: 960px;
  padding: 30px 20px;
  font-size: 2.6rem;
  line-height: 3.6rem;
  color: white;
  text-align: center;
  font-weight: 700;
  text-shadow:  0 3px 6px rgba(0,0,0, 0.3);
}

.wide-widget-container span.schloss {
  display: block;
  position: absolute;
  left: 50%;
  top: -70px;
  width: 120px;
  margin-left: -60px;
  height: 100px;
  background: url(../wfw/img/key.png) no-repeat center center;
  background-size: contain;
}
@media all and (min-width: 62.5em) {
	.wide-widget-container {
	  height: 80px;
	}
	.wide-widget-container div {
	  margin: 0 auto;
	  padding: 0;
	  font-size: 3.6rem;
	  line-height: 80px;
	}
	.wide-widget-container span.schloss {
		  left: -20px;
		  top: -20px;
		  width: 180px;
		  height: 120px;
		  margin: 0;
		}
}

.outer-footer {
	    margin-top: 70px;
	flex-shrink: 0;
}
.footer-container {
  width: 100%;
  padding: 0;
  background: white;
}
#footer {
  max-width: 960px;
  margin: 0 20px;
}
@media all and (min-width: 62.5em) {
	.footer-container {
	  padding: 100px 0;
	}
	#footer {
	  margin: 0 auto;
	}
}

#footer > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 20px;
}
#footer > ul > li {
  padding: 0em;
  width: 100%;
}
@media all and (min-width: 40em) {
  #footer > ul > li {
    width: 50%;
  }
}
@media all and (min-width: 62.5em) {
  #footer > ul > li {
    width: 25%;
  }
}
#footer ul, #footer ul li {
  list-style-type: none;
  margin: 0;
}
#footer h3 {
  margin: 30px 0;
}
#footer #nav_menu-2 h3 {
    width: 75%;
    max-width: 175px;
    height: 150px;
    text-indent: -9999px;
    background: url(../wfw/img/wohlfuehlwohnen.png) no-repeat center center;
    background-size: contain;
}
@media all and (min-width: 62.5em) {
	#footer h3 {
	  margin: 0 0 30px 0;
	  height: 150px;
	  line-height: 182px;
	}
	#footer #nav_menu-2 h3 {
		height: 150px;
	}
}
#footer #nav_menu-3 h3 {
  text-indent: -9999px;
}
#footer .menu-item a {
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 0 0 30px 0;
}
#footer .menu-item  a:hover {
  color: rgba(106,137,144,1);
}

#footer p {
  padding: 0 0 30px 0;
}

.project-edit {
	position: relative;
}
.project-edit .post-edit-link {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    z-index: 10;
    background: #6CB950;
    line-height: 66px;
    border-radius: 35px;
    width: 70px;
    height: 70px;
    text-shadow: 0 3px 3px rgba(0,0,0,0.3);
    color: white;
}
.project-list .project-edit .post-edit-link {
	font-size: 3.6rem;
    line-height: 48px;
    border-radius: 25px;
    width: 50px;
    height: 50px;
}

.single-post article.post {
	margin-top: 70px;
}

.single-post article.post header {
	margin-left: 20px;
}
.single-post article.post h2 {
	margin: 0 0 30px 0;
}
.single-post article.post h3, .single-post article.post h3 a {
	color: #004578;
}
.single-post article.post p {
	line-height: 2.5rem;
	line-height: 25px;
  margin: 30px 20px;
}
.single-post article.post header p {
  margin: 30px 0;
}
.single-post article.post img {
	width: 100%;
	height: auto;
	margin: 30px 0 0 0;
}
.single-post article.post h4 {
	margin: 30px 20px 0 20px;
}
.single-post article.post ul.gallery {
	    display: block;
	    overflow: hidden;
	    clear: both;
	    margin: 30px 20px;
}
.single-post article.post ul.gallery li {
	    float: left;
	    overflow: hidden;
	    margin: 0 10px 10px 0; 
	    transition: all .2s ease-out;
	    width: 100px;
}
.single-post article.post ul.gallery li img{
	    margin: 0;   
	    transition: all .2s ease-out;
}
.single-post article.post ul.gallery li:hover {
	transform: translate(0, -2px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.single-post article.post ul.gallery li:hover img {
 	transform:scale(1.02);
 	transform-origin: 50%;
}
.project-list-item-wrapper:nth-of-type(even) .project-list-item  {
    background: rgba(106,137,144,.4);
}
.single-post article.post ul.downloads {
	    margin: 0;
	    overflow: hidden;
}
.single-post article.post ul.downloads li {
	    margin: 20px 10px;
}
.single-post article.post ul.downloads li a {
	line-height: 4rem;
}
.single-post article.post ul.downloads li i {
	 font-size: 4rem;
    float: left;
    display: inline-block;
}
.single-post .footer .navigation {
	margin: 30px 20px 0 20px;
}
.nav-previous {
  float: left;
    margin: 15px 0;
}
.nav-next {
  float: right;
    margin: 15px 0;
}
@media all and (min-width: 62.5em) {
	.single-post article.post {
		margin-top: 100px;
	}
	.single-post article.post header {
		float: left;
		margin: 0;
	}
	.single-post article.post h2 {
		margin: 0 0 100px 0;
	}
	.single-post article.post img {
		margin: 60px 0 0 0;
	}
	.single-post article.post h4 {
		margin: 60px 0 0 0;
	}
  .single-post article.post p {
    margin: 30px 0;
  }
	.single-post article.post ul.gallery {
		    margin: 60px 0;
	}
	.single-post article.post ul.gallery li {
	    width: auto;
	}
	.single-post article.post ul.downloads {
		    margin: 30px 0 0 0;
	}
    .single-post .footer .navigation {
		margin: 30px 0 0 0;
	}
	.nav-previous {
	    margin: 50px 0;
	}
	.nav-next {
	    margin: 50px 0;
	}
}


  dl {
    display: flex;
    flex-flow: row wrap;
    margin: 30px 0;
  }
  dt {
    flex-basis: 100%;
    padding: 15px 0 5px 20px;
    background: rgba(0,69,120,.3);
    color: #fff;
    margin: 5px 0 0 0;
    f
  }
  dd {
    flex-basis:100%;
    padding: 5px 20px 15px 20px;
    background: rgba(0,69,120,.3);
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 300;
  }

  dd div {
  	margin-top: 15px;
  }

  dd a {
  	 color: white;
  	 font-size: 2.6rem;
  }
  dd a span.phonenumber {
  	display: none;
  }
@media all and (min-width: 62.5em) {
  dl {
    margin: 60px 0;
  }
  dt {
    flex-basis: 20%;
    padding: 15px  0 15px 20px;
    margin: 5px 0;
    f
  }
  dd {
    flex-basis: 70%;
    flex-grow: 1;
    padding: 15px 20px;
    margin: 5px 0;
  }
  dd div {
  	float: right;
  	margin-top: 0;
  }
  dd a {
  	font-size: inherit;
  }
  dd a span.phonenumber {
  	display: inline;
  }
}

dt:nth-of-type(even), dd:nth-of-type(even) {
	    background: rgba(106,137,144,.4);
}



.acf-map {
    width: auto;
    height: 200px;
    margin: 70px 20px 30px 20px;
    position: relative;
    z-index: 2;
}
.acf-map a {
    display: block;
    z-index: 3;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-indent: -9999px;
}
.acf-map-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: white;
    z-index: 4;
    position: relative;
}
.acf-map iframe {
   width: 100%;
   height: 200px;
}
.leaflet-container  {
    height: 300px  !important;
    width: 300px;
    background: none !important;
    overflow: hidden;
    border-radius: 150px;
    background: white;
}
.leaflet-top { opacity: 0; }
.leaflet-bottom { opacity: 0; } 
.map-shape {
  display: none;
}
@media all and (min-width: 62.5em) {
	.acf-map {
      width: 300px;
      height: 300px;
      margin: 70px auto 30px auto;
	    float: right;
	    margin: 100px 0;
	}
  .acf-map-container {
      width: 300px;
      height: 300px;
      border-radius: 150px;
  }
  .acf-map iframe {
    width: 340px;
    height: 340px;
    margin-top: -10px;
    margin-left: -25px;
  }
	.map-shape {
   display: block;
    position: absolute;
    transform: rotate(50deg);
    opacity: 0;
    -webkit-animation: map-svg-animation 15s cubic-bezier(0.250, 0.460, 0.450, 0.940)  both;
    animation: map-svg-animation 1s cubic-bezier(0.250, 0.460, 0.450, 0.940)  both;
	    right: -101px;
	    top: -104px;
	}
}
.map-shape svg {
  width: 500px;
  height: auto;
  opacity: 0;
  opacity: 1;
}
.map-shape svg path {
  color: #6A8990;
}


@-webkit-keyframes map-svg-animation{
  0% { transform: rotate(50deg); opacity: 0; }
  50% { opacity: 0; }
  100% { transform: rotate(285deg);opacity: 0.3; }
}
@keyframes map-svg-animation {
  0% { transform: rotate(50deg); opacity: 0; }
  50% { opacity: 0;}
  100% { transform: rotate(285deg); opacity: 0.3; }
}





#cookie-notice {
  background-color:rgba(0,69,120,.9) !important;
  padding: 16px 0;
    font-size: 18px;
  font-size: 1.8rem;
  text-align: right;
        line-height: 2.5rem;
}
#cookie-notice a {
  color: #9ED855;
  text-decoration: underline;
}
.cookie-notice-container {
  text-align: right;
}
#cn-notice-text {
  text-align:left;
  display: inline-block;
}
#cookie-notice .cn-button {
  margin-left: 0;
    margin-right: 10px;
}



#slb_viewer_wrap .slb_theme_slb_default .slb_container {
    border-radius: 0px !important;
}