/*
Theme Name: WP Bootstrap Child
Description: Childtheme WP Bootstrap Starter
Author: Afterimage Designs
Author URI: https://afterimagedesigns.com/
Template: wp-bootstrap-starter
Version: 1.0
Tags:
*/
/*<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600" rel="stylesheet">*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
    font-family: Broadway;
    src: url(/wp/wp-content/themes/wp-bootstrap-child/fonts/Broadway-Regular.ttf);
}
@font-face {
    font-family: Metropolis;
    src: url(/wp/wp-content/themes/wp-bootstrap-child/fonts/Metropolis-Regular.otf);
    font-weight: 400;
}
@font-face {
    font-family: Metropolis;
    src: url(/wp/wp-content/themes/wp-bootstrap-child/fonts/Metropolis-Thin.otf);
    font-weight: 300;
}
p {
  margin-bottom: 0;
  //color:#fff;
  //color:rgba(255,255,255,.9);
  font-weight: 300;
}

a, a:hover, a:focus {
  transition: all 0.3s ease-out;
  outline: 0;
  text-decoration: none;
}

a {
	color: #DA9223;
}

.medium {
  font-weight: 500;
}

h2, h3, h4 {
	font-family: 'Metropolis';
  /*font-family: 'Roboto';*/
}

h2 {
	text-transform: uppercase;
	color: #333 !important;
	font-weight: 300 !important;
	font-size:38px;
}

.white, .white h2, .white h3 {
	color: rgba(255,255,255,.8) !important;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html, body {
	overflow-x: hidden;
}
body {
	background:#000;

}
body, .widget {
  line-height: 1.5;
	font-size: 18px;
	color: #333;
  font-family: Roboto;
  font-family: Metropolis;
}

button:focus , a, a:hover{
  outline: 0;
  text-decoration: none;
  transition: all .3s ease-out;
}

ul {
  list-style: none;
}

.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#content.site-content, .entry-content {
  padding-top: 0;
  margin-top: 0;
}

.right-align {
  text-align: right;
}

.left-align {
  text-align: left;
}

.center-align {
  text-align: center;
}

.alignright {
  margin-left: 0;
}

.pos_rel {
  position: relative;
}

label {
	font-size:12px;
	margin-top:30px;
	margin-bottom:0;
	color:#000;
}

/* hide browser-styling */
input, select, .form-control {
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:none;
  border-radius: 0;
	background: none;
	outline: 0;
}

/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
  display:none;
}

input:focus, select:focus, input:active, select:active {
	outline:0;
}

input[type=text], input[type=email], input[type=password], textarea, select,  input, .form-control {
	border-radius: 0;
	border-bottom: 1px solid #333;
	background: #fefefe;
	background: rgba(0,0,0,.0);
	width: 80%;
	padding: 7px 0px;
	font-size: 16px;
	transition: all .5s linear;
}
input[type=checkbox] {
	-webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
	width:22px;
}
.wpcf7-checkbox {
	border:none;
	margin-bottom:20px;
}
.wpcf7-checkbox span{
	margin:0;
}

textarea {
	height:130px !important;
}

.form-control:focus {
	box-shadow: none;
	outline:0;
	border-bottom: 1px solid #DA9223;

	transition: all .5s linear;
}

.btn-primary,
.btn-prim a {
	margin-top:30px;
	background: transparent;
	color:#000;
	border-radius:0;
	border: 2px solid #000;
	width:150px;
}
.btn-prim a {
  display: block;
  font-weight: 400;
  padding: 6px 0;
  text-align: center;
}
.btn-primary:hover, .btn-prim a:hover {
	background:#000;
	border: 2px solid #000;
  color: #fff;
}

.btn-prim.white  a {
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.8);
}
.btn-prim.white  a:hover {
  background:#fff;
	border: 2px solid #fff;
  color: #000
}
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

header#masthead {
  margin-bottom: 0;
  background-color: #000 ;
  padding: 0;
	padding-top:15px;
}

#masthead nav {
  padding-left: 0;
  padding-right: 0;
}

#masthead .navbar-nav > li > a {
  color: #fff !important;
  letter-spacing: 0.5px;

}

body:not(.theme-preset-active) #masthead .navbar-nav > li > a,
body:not(.theme-preset-active) #masthead .navbar-nav > li > a:hover,
body:not(.theme-preset-active) #masthead .navbar-nav > li.current_page_item > a {
  padding: 15px 30px;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}
#masthead .navbar-nav > li.current_page_item > a,
#masthead .navbar-nav > li > a:hover {
	color: #DA9223 !important;

}



body:not(.theme-preset-active) #masthead .navbar-nav > li:first-child > a {
	padding-left: 10px;
}


.navbar {
  padding-bottom: 10px !important;
}

.navbar-dark .navbar-toggler {
	border:none;
	padding: 15px;
}
.navbar-toggler-icon, .navbar-toggler-icon::before, .navbar-toggler-icon:after {
	width: 35px;
	height: 2px;
	background: #fff;
	display: inline-block;
    transition: all 0.3s ease-out;
}
.navbar-toggler-icon {
	position: relative;
}

.navbar-toggler-icon::before, .navbar-toggler-icon::after {
	position: absolute;
	content:'';
	left: 0;
}
.navbar-toggler-icon::before {
	top: -9px;
}
.navbar-toggler-icon::after {
	bottom:-9px;
}
.navbar-toggler-icon.open {
   background: transparent;
}
.navbar-toggler-icon.open::before {
	transform: rotate(-45deg);
    top:0;
    transition: all 0.3s ease-out;
}
.navbar-toggler-icon.open::after {
	transform: rotate(45deg);
    bottom:0;
    transition: all 0.3s ease-out;
}


.footer-nav {
  display: flex;
  justify-content: center;
}

.footer-nav li a{
  border-right: 1px solid #fff;
  padding: 0 10px;
  font-size: 14px;
}

.footer-nav li:last-child a {
  border-right: none;
}

/***** Logo ******/

.logo-part {
  font-size:48px;
  text-align: center;
	text-transform: uppercase;
	font-family:'Broadway';
	color: #fff;
	max-width:1140px;
	margin: 0 auto;
	padding-top: 25px;
	padding-bottom:5px;
}
.logo-part2 {
  font-size:26px;
  text-transform: uppercase;
  letter-spacing: 9px;
  max-width:1140px;
	margin: 0 auto;
  text-align: center;
  color: #fff;
  font-weight: 300;
  padding-left: 10px;
  opacity: .8;
  padding-bottom:15px;
}
/*
.logo-part2 .part-2{
	font-size:19px;
	letter-spacing:4px;
}*/
.logo-part3 {
  position: relative;
  max-width:1140px;
	margin: 0 auto;
  padding-bottom: 10px;
}
.auto-container {
  position: relative;
  max-width:1140px;
  margin: 0 auto;
}
.auto {
  position: absolute;
  bottom: -20px;
  left: 0;
  animation: move 3s .5s forwards;
}
.auto img {
  width: 75px;
}
hr {
  width:100%;
  position: absolute;
  border-bottom:1px solid #fff;
  opacity: .4;
  text-align: left;
  left:0;
  //animation: grow 2s .5s forwards;
}


.intro {
  position: relative;
}
.intro p {
  position: absolute;
  left:50%;
  top: 30%;
  transform: translate(-50%);
  text-align: center;
  color: #fff;
  font-size: 36px;
  text-shadow: 1px 1px 3px rgba(0,0,0,.2);
  background-image: radial-gradient(rgba(0,0,0,.18) 50%, transparent, transparent);
  padding: 40px;
}


.page-id-160,
.page-id-160 header#masthead {
  background: #fff;
}
.page-id-160 .logo-part,
.page-id-160 .logo-part2,
.page-id-160 .logo-part3,
.page-id-160  #masthead .navbar-nav > li > a {
  color: #333 !important;
}
.page-id-160 hr {
  border-bottom:1px solid #333;
}
.page-id-160 .filmstreifen,
.filmstreifen {
  display: none;
}
@keyframes grow {
  from {width: 0}
  to {width:100%}
}
@keyframes move {
  from {left: 0}
  to {left:100%}
}

.filmstreifen {
	height:15px;
	background: url(/wp/wp-content/uploads/2020/09/Filmstreifenbalken1.jpg);
  background-size: contain;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

#Ebene_1 {
	max-width:120px;
	transform:skew(-8deg);
}

.dunja {
	stroke: #fff;
	stroke-width: 2;
	fill: none;
	stroke-linecap:round;

}

#dunja1 {
    stroke-dasharray: 125.1151351928711;
	stroke-dashoffset:125.1151351928711;
    animation: dash .15s linear forwards .8s;
}
#dunja2 {
    stroke-dasharray: 262.85247802734375;
	stroke-dashoffset:262.85247802734375;
    animation: dash .3s linear forwards 1s;
}
#dunja3 {
    stroke-dasharray: 132.28759765625;
	stroke-dashoffset:132.28759765625;
    animation: dash .2s linear forwards 1.3s;
}
#dunja4 {
    stroke-dasharray: 88.77471923828125;
	stroke-dashoffset:88.77471923828125;
    animation: dash .2s linear forwards 1.5s;
}
#dunja5 {
    stroke-dasharray: 227.84510803222656;
	stroke-dashoffset:227.84510803222656;
    animation: dash .5s linear forwards 1.7s;
}
#dunja6 {
    stroke-dasharray: 269.02581787109375;
	stroke-dashoffset:269.02581787109375;
    animation: dash .5s linear forwards 2.2s;
}

#dunja7 {
    stroke-dasharray: 265.25042724609375;
	stroke-dashoffset: 265.25042724609375;
    animation: dash .5s linear forwards 2.7s;
}

#dunja8 {
    stroke-dasharray: 13.528008460998535;
	stroke-dashoffset: 13.528008460998535;
    animation: dash .2s linear forwards 3.25s;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.phone p {
  position: relative;
  padding-left: 55px;
  font-size: 30px;
}
.mail a {
  position: relative;
  padding-left: 55px;
  font-size: 24px;
}
.phone p:before,
.mail a:before {
  position: absolute;
  content: '';
  left:0;
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  background: url(/wp/wp-content/uploads/2020/09/phone.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .7
}
.mail a:before {
	background: url(/wp/wp-content/uploads/2020/10/icon_kontakt.png);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.mail a:hover {
	color:#000;
}

.box {
  max-width: 770px ;
  margin: 0 auto;
}

.galerie img {
  border: 0px solid #fff;
}

.ueber-mich {
  position: relative;
}
.ueber-mich::before, .ueber-mich:after {
  position: absolute;
  content: '';
  bottom: 60px;
  width:300px;
  height: 1px;
  background: #fff;
  left:50%;
  transform: translate(-50%);
  opacity: .5
}
/*.ueber-mich::before {
  top:50px;
  bottom: unset
}*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

body:not(.theme-preset-active) footer#colophon {
	background:#000;
}

#menu-menu-2 {
	flex-direction:row !important;
	flex-wrap:nowrap;
	margin-left:-10px;
}

#menu-menu-2 li a:hover {
	background:transparent;
	color:#fff;
}

.site-info {
	padding:20px 0;
}


/*--------------------------------------------------------------
# Collage
--------------------------------------------------------------*/
.section {
  background-repeat: no-repeat !important;
  background-size: 50%;
  background-attachment: fixed;
}
.section.right {
  background-position: right;
}

/*--------------------------------------------------------------
# Collage
--------------------------------------------------------------*/
@media only screen and (min-width:768px) {
	.collage-section {
		position:relative;
	}

	.collage {
		transform: scale(1);
		transition: all 0.5s ease-out;
	}
	.collage:hover {
		transform: scale(1.3);
		transition: all 0.5s ease-out;
		z-index:999999;
	}

	#coll-2 {
		margin-top:50px;
		margin-left: -20%;
	}

	#coll-3 {
		margin-top:-20%;
		margin-right:-50px;
	}
}
/*--------------------------------------------------------------
# Medi aqueries
--------------------------------------------------------------*/


@media only screen and (min-width:768px) {
	.container {
		padding-left:0;
		padding-right:0;
	}
	.elementor-row {
		margin-left: -15px;
		margin-right: -15px;
	}
}



@media only screen and (max-width:767px) {
	.container {
		padding-left:0;
		padding-right:0;
	}
	#content {
		padding-left:15px;
		padding-right:15px;
	}
	.elementor-row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.logo-part {
		font-size:24px;
		padding-top: 15px;
		padding-bottom: 0;
	}
	.collage {
		margin-bottom:15px !important;
		float: left;
	}
	h2 {
		font-size: 26px;
	}
	.section {
		background-attachment: unset;
		background-position: center 5% !important;
	}
	.phone p,
	.mail a {
		font-size:20px;
		padding-left:50px;
	}
}
