/*
 * INHALT 
 
 - HTML
 - Generell
 - Fonts
 - Überschriften 
 - Listen
 - Text Anker
 - Block Quote
 - TelefonLinks
 - Pebweb Modal
 - Slider Container
 - Header
 - Menu
 - Top Icons
 - Hol dir jetzt die upway App

 - Footer
 - Seite Funktionen 
 
 
 
 */

html {
	scroll-behavior: smooth;
}


/* Generell */
a:focus, a:active {
	outline:none;
}
button::-moz-focus-inner {
	border: 0;
}

.page{
	margin: 0;
}


/* Fonts*/
.peb{
	font-family: peb;
	font-size: 115%;
}

body{
	font-family: robotolight;
}


/* Überschriften */
h2 {
    word-spacing: 8px;
}


/* Listen */
ul {
    list-style-image: url('/wp-content/uploads/bullet.png');
    margin-left: 0;
    padding-left: 15px;
    line-height: 1.8;
}
ul a{
	color: #555555;
	text-decoration: none;
}
ul a:hover{
	color: #ABC959;
	text-decoration: underline;
}


/* Text Anker */
.textAnchor{
	position: relative;
	top: -55px;
}


/* Block Quote */
.wp-block-quote {
	border-left: 0 solid;
	background-color: #EFEFEF;
	padding: 20px 60px;
	position: relative;
	border-radius: 5px;
	margin-top: 4em;
}
@media(min-width:768px){
	.wp-block-quote {
		border-top: .25em solid #895FFF;
	}
}
.wp-block-quote:before {
	content: "\00AB";
	font-size: 60px;
	font-weight: bold;
	color: #657A28;
	position: absolute;
	top: -12px;
	left: 12px;
}
.wp-block-quote:after {
	content: "\00BB";
	font-size: 60px;
	font-weight: bold;
	color: #657A28;
	position: absolute;
	bottom: -2px;
	right: 12px;
}
.wp-block-quote cite {
	font-weight: bold;
	font-size: 0.75em;
}
.wp-block-quote p{
	margin-top: 0; 
}

/* TelefonLinks */
a.phoneLink {
	color: #555555;            /* Link Schriftfarbe */
    text-decoration: none !important;
}

@media (max-width:767px) {
	a.phoneLink {
		padding:5px;
		background-color:#ffffff;
		color: #555555;             /* Button Schriftfarbe */
		border:1px solid #555555;  /* Button Ramenfarbe */
		line-height:2;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		-moz-box-shadow: 1px 1px 6px #aaaaaa;
		-webkit-box-shadow: 1px 1px 6px #aaaaaa;
		box-shadow: 1px 1px 6px #aaaaaa;
		white-space: nowrap;
	}
}


/* Pebweb Modal 
.pebweb-modal {
    position: fixed;
    top: 0;
    right: 100%;
    bottom: 100%;
    left: 0;
	overflow: hidden;
    background: rgba(180, 180, 180, .6);
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	opacity: 0;
	transition: right 1s, bottom 1s, opacity 1s;
}
.pebweb-modal-show{
	right: 0;
	bottom: 0;
	opacity: 1;
	transform: rotateX(0deg);
	z-index: 1000;
	
}
.pebweb-modal-content {
    max-width: 500px;
    margin: 30px;
    padding: 5px 30px 30px;
    background: #FFF;
	z-index: 2;
	transform: rotateX(80deg);
	transition: transform 2.5s;
	color: #555555;
}
.pebweb-modal-show .pebweb-modal-content{
	transform: rotateX(0deg);
}
.pebweb-modal-header{
	text-align: right;
	font-size: 1.4em;
	font-weight: bold;
	cursor: pointer;
	margin-right: -15px;
}
.pebweb-modal-body{
	
}*/



/*  Kadence Kontakt Formular  */
form.kb-form{
	width: 100%;
	max-width: 400px;
	margin: auto;
}
.kadence-blocks-form-message {
    text-align: center;
	max-width: 390px;
	margin: auto;
}


/* Header */
header#masthead{
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 32px 15px;
	border-bottom: 2px solid #eee;
}
div.site-branding{
}
nav#site-navigation{
	display: flex;
	width: 100%;
	justify-content: flex-end;
}
p.site-title{
	display: none;
}


/* Menu */
.main-navigation ul {
	align-items: center;
}
li.menu-item {
	padding: 0 1.2vw;
	margin-left: 5px;
	/*border-bottom: 2px solid #FFFFFF;*/
}
li.menu-item:hover, li.current_page_item {
	/*border-bottom: 2px solid #ABC959;*/
}
li.menu-item:last-child{
	border-bottom: 0px solid;
	padding-left: 0;
}
li.menu-item a{
	font-family: robotomedium;
	font-size: 14px;
	line-height: 70px;
	text-transform: uppercase;
	color: #555555;
}
li.menu-item a:hover{
	text-decoration: none;
}

div.menu-menu-1-container .menu-item:nth-last-child(-n  + 2) a{
	display:block;
	padding: 10px;
	margin-left: 1.5vw;
	border-radius: 5px;
	line-height: 1.2;
	color: #FFFFFF ;
	white-space: nowrap;
}
div.menu-menu-1-container .menu-item:nth-last-child(-n  + 2) a{
	background-color: #ABC959;
}
div.menu-menu-1-container .menu-item:nth-last-child(-n  + 2) a:hover{
	background-color:#B9D961;
}
div.menu-menu-1-container .menu-item:last-child a{
	background-color: #895FFF;
}
div.menu-menu-1-container .menu-item:last-child a:hover{
	background-color:#9E7DFB;
}

li.menu-item:last-child{
	padding-left: 0;
}

@media(min-width:950px){
	li.menu-item {
		padding: 0 1.8vw;
	}
}
@media(min-width:1100px){
	li.menu-item {
		padding: 0 2.4vw;
	}
}
	
/* Menu Items grüner Unterstrich */
	
li.menu-item::before {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	height: 2px;
	width: 96%;
	background-color: #ABC959;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s;
}
li.menu-item:hover::before, li.current_page_item::before {
	transform: scaleX(1);
}
li.menu-item:hover:nth-last-child(-n +2)::before, li.current_page_item:nth-last-child(-n +2)::before {
	transform: scaleX(0);
}
	
	
	
	#nav-toggle { display: none ; }
.main-navigation .onepress-menu { overflow:visible; width: auto !important; }
@media ( max-width: 900px ) {
#nav-toggle { display: block ; }
.main-navigation .onepress-menu { overflow: hidden; }
}
	

/* Top Icons auf Home*/
figure.top-icon {
	text-align: center;
}
figure.top-icon img{
	max-width: 150px;
}
figure.top-icon figcaption{
	font-family: robotomedium;
	font-size: .9em;
}


/* Row "Hol dir jetzt die upway App" */
#kt-layout-id_a6bb2b-02 {
    height: 65px;
	
}
.kt-row-layout-inner > .kt-row-column-wrap > .kadence-column_f65ad4-0a > .kt-inside-inner-col{
	padding-top: 10px !important;
}
div#getItNow{
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 15px 0;
	color: #FFFFFF;
	font-family: robotomedium;
}
div#getItNow div.stores{
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: -10px 5px 0px 15px;
	max-width: 100px;
}
div#getItNow img.store{
	width: 100%;
	max-width: 25vw;
	margin-right: 10px;
}
div#getItNow .cta {
	margin-top: 0px;
	white-space: normal;
	line-height: 1.1;
}
@media(min-width:500px){
	div#getItNow div.stores{
		margin: 25px 5px 0px 15px;
		flex-direction: row;
		max-width: 100%;
	}
}
@media(min-width:700px){
	div#getItNow .cta {
		padding-top: 25px;
		white-space: nowrap;
	}
	div#getItNow img.store{
		width: 100%;
		max-width: 190px;
		margin-right: 10px;
	}
}


/* Footer */
footer.site-footer{
	background-color: #EFEFEF; 
	padding:50px 15px 25px; 
	font-size: 0.9em;
}
div.footer-container {
	max-width: 1100px; 
	margin: auto;	
}
div.footer-header{
	text-align: center;
}
div.footer-header img{
	max-width: 120px;
}
div.footer-footer{
	background-color: #767171;
	text-align: center;
	color: #ffffff;
	font-size: 0.8em;
	line-height:1;
	padding: 8px 15px;
}
div.footer-section-wrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
div.footer-section-wrapper p{
	margin-top: 18px;
}
div.footer-section-wrapper ul{
	margin-top: 16px;
}
div.footer1 p{
	margin-left: 15px;
}
.footer2 ul {
    margin-left: 0;
    padding-left: 0;
	list-style-image: none;
    list-style-type: none;
    text-align: left;
}
.footer3{
	padding-top: 15px;
}
.footer-store-img {
    max-width: 150px;
}
@media(min-width:600px){
	div.footer-section-wrapper{
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
	div.footer-header{
		text-align: left;
	}
}


/* Seite Funktionen */
.iconUndText-Wrapper{
	display:flex;
	align-items: center;
	justify-content: center; 
}
.iconUndText-Icon {
    padding: 15px;
}
.iconUndText-Icon img{
	width: 70px;
	height: 105px;
	min-width: 70px;
}
.iconUndText-Text {
    text-align: center;
}
@media(min-width:768px){
	.iconUndText-Text {
		text-align: justify;
	}
}










