/*
URI: http://www.sabath-media.de
Author: Lukasz Zielinski
*/

/**
 * Table of Contents:
 *
 * 1.0  -  General
 * 2.0  -  Structure
 * 3.0  -  Header
 * 4.0  -  Content
 *   4.1  -  Slideshow
 * 5.0  -  Footer
 */

/**
 * 1.0 - General
 * ------------------------------------------------------------
 */

body{
	margin: 0;
	color: #555;
/* 	text-align: center; */
	font-family: 'DINRound';
}

ul, p{
	margin: 0;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'RockwellStd-Light';
}

h1{
	margin-bottom: 1em;	
}

h3{
	margin-top: 0;
}

h3, h4{
	margin-bottom: 0.5em;
}

a{
	color: #ff5d02;
	text-decoration: none;
	
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
}

a:hover, .current-menu-item a{
	text-decoration: none;
	color: #555;
}

.fcolor{
	#fff;
}

/**
 * 2.0 - Structure
 * ------------------------------------------------------------
 */
 

#main-container{
	margin-top: 8em;
}

.widget-area {
	padding: 1em;
    border: 1px solid #ccc;
    border-radius: 0.5em;
}

.next-post,
.prev-post{
	margin-top: 1em;
}
/**
 * 4.1 - Slideshow
 * ------------------------------------------------------------
 */

#main-slideshow{
	position: relative;
	width: 100%;
	padding-bottom: 28%;
	margin-top: 1em;
}

#main-slideshow img{
	width: 100%;
}

#main-slideshow .slide{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	
	opacity: 0;
	
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

#main-slideshow > div:first-child{
	opacity: 1;
}

#main-slideshow .title{
	position: absolute;
	left: 1em;
	top: 1em;
	color: #fff;
	font-size: 2em;	
}

#main-slideshow .next,
#main-slideshow .prev{
	position: absolute;
	right: 0.5em;
	top: 50%;
		
	        transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	
	color: #fff;  
	font-family: 'WebFont';  
	font-size: 1.5em;
	cursor: pointer;
	
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

#main-slideshow .next:hover,
#main-slideshow .prev:hover{
	        transform: translate(0, -50%) scale(1.2);
	-webkit-transform: translate(0, -50%) scale(1.2);
	    -ms-transform: translate(0, -50%) scale(1.2);
}

#main-slideshow .next:before{
	content: '>';
}

#main-slideshow .prev{
	right: auto;
	left: 0.5em;
}

#main-slideshow .prev:before{
	content: '<';
}

#main-slideshow .dots{
	position: absolute;
	left: 50%;
	bottom: 0.5em;
		
	        transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
}

#main-slideshow .dot{
	position: relative;
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	
	border: 2px solid #fff;
	border-radius: 50%;
	
	margin: 0 0.25em;
}

#main-slideshow .dot:not(.active){
	cursor: pointer;
}

#main-slideshow .dot .fill{
	width: 50%;
	height: 50%;
	
	margin-top: 25%;
	margin-left: 25%;

	background: #fff;	
	border-radius: 50%;
	
	opacity: 0;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

#main-slideshow .dot.active .fill,
#main-slideshow .dot:not(.active):hover .fill{
	opacity: 1;
}

/**
 * 4.2 - Contact form
 * ------------------------------------------------------------
 */

.wpcf7 input[type=tel],
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 textarea{
	width: 100%;
	resize: vertical;
	background: #fff;
	padding: 0.4em;
	margin-bottom: 0.5em;
	border: 1px solid #ddd;
	border-radius: 0.25em;
	font-size: 0.9em;
}

#.wpcf7 input[type=submit]{
#	position: absolute;
#	left: -9999px;
#}


.wpcf7-not-valid-tip{
	color: #ff5d02;
	margin: -0.25em 0 1em 0;
}

.wpcf7-validation-errors{
	display: none !important;
}

div.wpcf7-mail-sent-ok{
	border: none;
	padding: 0;
	margin: 1em 0 1em 0;
}

div.wpcf7-validation-errors{
	position: absolute;
	left: 9999px;
}

div.wpcf7 img.ajax-loader{
	display: none;
}

/**
 * 4.3 - Contact form
 * ------------------------------------------------------------
 */

.feature{
	text-align: center;
}

.feature .icon{
	display: inline-block;
	width: 5em;
	height: 5em;
	
	border-radius: 0.75em;
	
	background-color: #ff5d02;
	background-size: 4em 4em;
	background-position: center center;
	background-repeat: no-repeat;
}

.feature h3, .feature h4{
	margin-bottom: 0;
}

.feature p{
	padding: 1.2em;
	font-size: 1em;
	
}

/**
 * 4.4 - Popup
 * ------------------------------------------------------------
 */
 
.lightbox-trigger{
	display: inline-block;
	color: #ff5d02;
	cursor: pointer;
}

/**
 * 4.5 - Blog
 * ------------------------------------------------------------
 */
 
.blog-nav{
	margin-top: 4em;
	text-align: center;
}

/**
 * 4.6 - Newsletter
 * ------------------------------------------------------------
 */
 
.mc-newsletter input[type="submit"]{
	display: none;
}

/**
 * 5.0 - Footer
 * ------------------------------------------------------------
 */

footer{
	text-align: center;
}
 
footer ul{
	display: inline-block;
	min-height: 3em;
	padding: 0;
	list-style-type: none;
}

footer li{
	float: left;
	padding: 1em;
}

footer .copyright{
	padding-bottom: 1em;
	font-style: italic;
	color: #888;
    font-size: 0.9em;
	
}
 