@charset "UTF-8";
/* CSS Document */

/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * Programming // Der Hersteller // www.der-hersteller.de                        *
 * Layout // XXX                                                                 *
 *                                                                               *
 * ----------------------------------------------------------------------------- */

/**
 * Theme Name:     RALF BIERMANN
 * Theme URI:      https://geordneter-rueckbau-stuttgart.de/
 * Description:    Theme der ersten Generation für RALF BIERMANN
 * Author:         Der Hersteller
 * Author URI:     http://www.der-hersteller.de
 * Version:        1.0
 */




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * GLOBALS                                                                       *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
html {
	height: 101%;
}
body {
	font: 62.5%/1.5em 'pt_sansregular', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    background: rgb(229,191,110);
    color: rgb(29,29,27);
}

a {
	transition: all 1s; 
}
a, a:active, a:link, a:visited {
    color: inherit;
    text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
figure {
    padding: 0;
    margin: 0;
}

.left {float: left;}
.right {float: right;}
.clear {clear: both;}

.clearfix:after {
    visibility: hidden;
    display: block;
    content: " ";
    clear: both;
    height: 0;
}

.mobile-only {display: none !important}
.nowrap {white-space: nowrap;}
.uppercase {text-transform: uppercase;}

.background-cover {
	background-position: center center;
  	background-repeat: no-repeat;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
}
.multiply {
	mix-blend-mode: multiply;
}
.shadow {
	-moz-box-shadow: 3px 3px 2px rgba(0,0,0,0.5);
	-webkit-box-shadow: 3px 3px 2px rgba(0,0,0,0.5);
	box-shadow: 3px 3px 2px rgba(0,0,0,0.5);
}

.box-sizing {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.hyphens {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.flex {
	display: flex;
    flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.stretch {
	align-self: stretch;
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * TYPOSATZ                                                                      *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 0;
	padding: 0;
}

h1 {
    font-size: 2.15em;
    line-height: 1.2em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2.7em;
}
h2 {
    font-family: 'pt_sansbold';
    font-size: 2em;
    line-height: 1.35em;
    margin-bottom: 1.5em;
}
#main p + h2 {
    margin-top: 2.8em;
}
#footer h2 {
    text-transform: uppercase;
}
h3 {
    font-family: 'pt_sansbold';
    font-size: 2em;
    line-height: 1.35em;
}
.abbruch #main h3 {
    position: relative;
    text-indent: 1.5em;
}
.abbruch #main h3:before {
    content: "";
	position: absolute;
    width: 0.85em;
    height: 0.85em;
    background-image: url("images/hook.png");
    background-size: 0.85em;
    background-repeat: no-repeat;
	left: 0;
    top: 0.3em;
}
h4 {	
}
h5 {	
}
p, #main ul {
    font-size: 2em;
    line-height: 1.35em;
    margin: 0 0 1.2em 0;
    -webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.main-page #main p {
    position: relative;
    text-indent: 1.5em;
}
.main-page #main p:before {
    content: "";
	position: absolute;
    width: 0.85em;
    height: 0.85em;
    background-image: url("images/hook.png");
    background-size: 0.85em;
    background-repeat: no-repeat;
	left: 0;
    top: 0.3em;
}
#main ul {
	list-style: none;
	padding: 0 0 0 0;
}
#main ul li {
	padding-left: 1em;
    position: relative;
}
#main ul li:before {
	content: " • ";
	position: absolute;
	left: 0;
    top: 0;
	font-size: 1.2em;
}
i, em {
	font-style: normal;
    font-family: 'pt_sansitalic';
}
b, strong {
	font-weight: normal;
    font-family: 'pt_sansbold';
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * CONTAINER                                                                     *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
#wrapper {
  	background-repeat: no-repeat;
}
.index #wrapper {
    background-image: url("images/figure-index.jpg");
    background-position: right bottom;
    background-size: 59%;
}
.rueckbau #wrapper {
    background-image: url("images/figure-rueckbau.jpg");
    background-position: left bottom;
    background-size: 50%;
}
#content {
    display: flex;
    flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
    padding-bottom: 6em;
}

.inside {
    margin: 0 auto;
    padding: 0 3em;
}
#wrapper .inside {
    width: 114em;
}
#footer .inside {
    width: 70em;
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * HEADER                                                                        *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
#header {
    padding: 3.2em 0;
    margin-bottom: 2em;
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * NAVIGATION                                                                    *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
#nav {
}
#nav ul {
    text-align: right;
}
#nav ul > li {
    display: inline-block;
    margin-left: 2.2em;
}
#nav ul > li > a {
    font-size: 1.8em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
#nav ul > li > a:hover,
#nav ul > li > a:active,
#nav ul > li > a:focus,
#nav ul > li.current-menu-item > a {
    color: rgb(255,255,255);
}

#sub-nav {
}
#sub-nav ul {
    text-align: right;
}
#sub-nav ul > li {
    display: inline-block;
}
#sub-nav ul > li:before {
    content: " / ";
    font-family: 'pt_sansbold';
    font-size: 2em;
    margin: 0 0.2em;
}
#sub-nav ul > li:first-child:before {
    content: "";
}
#sub-nav ul > li > a {
    font-family: 'pt_sansbold';
    font-size: 2em;
    line-height: 1.35em;
    text-transform: uppercase;
}
#sub-nav ul > li > a:hover,
#sub-nav ul > li > a:active,
#sub-nav ul > li > a:focus,
#sub-nav ul > li.current-menu-item > a {
    color: rgb(255,255,255);
}

/* responsive-nav */
.open-nav {
	display: none;
    text-align: right;
}
.close-nav {
    margin: 3em;
}
.open-nav .toggle-button {
    font-size: 1.6em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.open-nav .toggle-button span {
    font-size: 1.65em;
    letter-spacing: 0;
}
.close-nav .toggle-button {
    font-size: 2.8em;
}
.open-nav .toggle-button:hover,
.open-nav .toggle-button:active,
.open-nav .toggle-button:focus {
    color: rgb(255,255,255);
}
.close-nav .toggle-button:hover,
.close-nav .toggle-button:active,
.close-nav .toggle-button:focus {
    color: rgb(224,180,84);
}

#responsive-nav.toggle {
	width: 28em;
}
#responsive-nav {
	display: none;
	position: fixed;
	width: 0em;
	height: 100%;
	top: 0;
	right: 0;
	overflow-x: hidden;
	background: rgba(255,255,255,0.95);
	-webkit-transition:0.5s ease;  
   	-moz-transition:0.5s ease;  
   	-o-transition:0.5s ease;  
   	transition:0.5s ease;
	z-index: 999;
}
#responsive-nav ul {
	width: 28em;
	padding: 3em;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#responsive-nav ul > li {
    margin-bottom: 2em;
}
#responsive-nav ul > li > a {
    font-size: 1.6em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
#responsive-nav ul > li > a:hover,
#responsive-nav ul > li > a:active,
#responsive-nav ul > li > a:focus,
#responsive-nav ul > li.current-menu-item > a {
    color: rgb(224,180,84);
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * MAIN                                                                          *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
#main {
    width: 59.21052631578947%; /* 675 / 1140 */ 
    margin-top: 4.2em;
}
#main .logo {
    width: 70.7em;
    margin-left: -3.2em;
    margin-bottom: 1em;
}

.referenz {
    margin-bottom: 3em;
}
.referenz img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}
.referenz .image-single {
    margin-bottom: 2.6em !important;
}
.referenz .image-group {
    display: flex;
    flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
    margin-bottom: 2.6em !important;
}
.referenz .image-group div {
    width: 47%;
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * ASIDE                                                                         *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
#aside {
    width: 34.385964912280703%; /* 392 / 1140 */
}
#aside img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}




/* ----------------------------------------------------------------------------- *
 *                                                                               *
 * FOOTER                                                                        *
 *                                                                               *
 * ----------------------------------------------------------------------------- */
#footer {
    padding: 6.4em 0;
    background: rgb(224,180,84);
}
#footer a:hover,
#footer a:active,
#footer a:focus {
    color: rgb(255,255,255);
}
.footer-top {
    display: flex;
    flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

/* form */
form {
	width: 100%;
	margin: 1em 0 6.4em 0;
}
form p {
    margin-bottom: 0 !important;
}
input, textarea {
	display: block;
	border: none;	
	background: rgb(255,255,255);
	padding: 0.3em 0.5em;
	width: 100%;
	font-size: 0.9em;
	line-height: 1.35em;
	color: rgb(102,103,107);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input {
	margin-bottom: 1.2em;
}
textarea {
	height: 8em;
	margin-bottom: 0.6em;
}
input[type=submit] {
	float: right;
	border: none;
	background: none;
	text-transform: uppercase;
	color: rgb(29,29,27);
	text-align: right;
	cursor: pointer;
	width: auto;
	margin-right: -0.6em;
}
input[type=submit]:hover {
	color: rgb(255,255,255);
	-webkit-transition: 0.5s linear;  
   	-moz-transition: 0.5s linear;  
   	-o-transition: 0.5s linear;  
   	transition: 0.5s linear;  
}



