/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#444;
	font-family: museo-sans-rounded, sans-serif; 
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color: #ed8d0f;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1200px;
	width:95%;
	margin:0 auto;
	position:relative;
	font-size: 18px;
	padding-top: 300px;
}


/* header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 3;
}

.header_inner {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;	
	position: relative;
}

.header_inner::after {
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	bottom: 0;
	left: 50%;
	background-color: #ed8d0f;
	transition: all 0.5s;
	transition-delay: 0.5s;
}

.scrld .header_inner::after {
	width: 100%;
	left: 0%;
	background-color: #444;
}


/* logo */
.logo {
	height: 300px;
	width: auto;
	padding: 20px 0;
	transition: all 0.5s;
}

.scrld .logo {
	height: 130px;
	padding: 10px 0;
}

.logo-img {
	height: 100%;
	width: auto;
}
/* nav */
.nav {
	width: 70%;
	max-width: 600px;
}

.nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	font-family: blambot-casual, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 28px;
}

.nav ul a {
	padding: 0.2em 0.6em;
	display: inline-block;
	position: relative;
	transition: color 0.5s;
}

.nav ul a::after  {
	content: "";
	width: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	height: 0%;
	left: 0;
	background-color: #ed8d0f;
	transition: height 0.5s;
}

.nav ul a:hover::after  {
	height: 100%;
	bottom: 0;
	top: auto;
}

.nav ul a:hover  {
	color: #fff;
}

.nav .current_page_item a {
	text-transform: uppercase;
	color: #ed8d0f;
}

.nav a:hover {
	
}

.sm_ct {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 1em;
}

.sm_ct span {
	font-size: 14px;
	color: #999;
	letter-spacing: 0.1em;
	padding-bottom: 0.5em;
	font-weight: 400;
}

.sm_ct svg {
	height: 40px;
	width: auto;
}



.menu_icon_ct {
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 30px;
	z-index: 20;
	display: none;
}

.menu_icon {
	width: 40px;
	display: flex;
	flex-direction: column;
	height: 40px;
	cursor: pointer;
	position: relative;
}

.menu_icon_line {
	width: 100%;
	height: 3px;
	background-color: #000;
	opacity: 1;
	transform-origin: center center;
	position: absolute;
	display: inline-block;
	transition: all 0.5s;
}

.menu_icon .line1 {
	top: 5px;
}
.menu_icon .line2 {
	top: 13px;
}
.menu_icon .line3 {
	top: 21px;
}

.menuopen .menu_icon .line1 {
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;

}

.menuopen .menu_icon .line2 {
	opacity: 0;
}

.menuopen .menu_icon .line3 {
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 50%;

}


/* sidebar */
.main_ct {
	display: flex;
	justify-content: space-between;
	padding-top: 4em;
}



main {
	width: 75%;
}

body.page main {
	width: 100%;
}

/* sidebar */
.sidebar {
	width: 20%;
	padding-left: 20px;
	border-left: 1px solid #ccc;
	/*display: none;*/
}
body.page .sidebar {
	display: none;
}
/* footer */
.footer {
	font-size: 14px;
	color: #999;
	padding: 1em 0;
	border-top: 1px solid #ccc;
	margin-top: 4em;
	text-align: center;
	font-weight: 400;
	letter-spacing: 0.05em;
}


/*------------------------------------*\
	GENERAL
\*------------------------------------*/

.widget_archive ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 16px;
}

.bg_color1 {
	background-color: rgba(0,0,0,0.05);
}



/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    BLOG
\*------------------------------------*/


.post_arch article, .single article {
	display: flex;
	justify-content: space-between;
	padding: 2em 0;
	border-top: 1px solid #ccc;
}

.single article {
	padding: 0;
}

article:first-child {
	border-top: none;
}

.article_image {
	width: 25%;
}

.article_inner {
	width: 70%;
}

span.date, .wp-block-latest-posts__post-date {
	font-size: 14px;
	color: #999;
}


.single-post .article_image {
	width: 45%;
}

.single-post .article_inner {
	width: 50%;
}

.front_post {
	padding: 0;
	margin: 0;
}

.front_post li > a {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-bottom: 0.5em;
}



.wp-block-latest-posts__featured-image {
	width: 25%;
	padding-right: 30px;
	float: left;
}

.lbp_box {
	padding: 50px;
	border: 2px solid rgba(237, 141, 15,1);
}

.lbp_titel {
	display: inline-block;
	padding: 0.5em 1em;
	color: #fff;
	margin: 0;
	background-color: rgba(237, 141, 15,1);
	margin-left: 50px;
}

.post_nav {
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	font-size: 16px;
	margin-top: 3em;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.wp-block-media-text__media img, .wp-block-media-text__media video {
	height: auto;
}

.wp-block-image img {
	height: auto;
}

.blocks-gallery-item figure {
	transform: scale(0.8);
	transition: all 0.5s;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0);
box-shadow: 0 0 15px 0 rgba(0,0,0,0);
}

.blocks-gallery-item figure:hover {
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
	transform: scale(0.9);
}



/*------------------------------------*\
    PLUGINS
\*------------------------------------*/

.sbi-owl-dots .sbi-owl-dot.active span {
	background-color: #ed8d0f !important;
}

.sbi-owl-nav .sbi-owl-prev {
	margin-left: -30px;
}

.sbi-owl-nav .sbi-owl-next {
	margin-right: -30px;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

h1, h2, h3 {
	font-family: blambot-casual, sans-serif;
	font-weight: 700;
}

.view-article {
	font-weight: 600;
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width: 1200px) {

	#sb_instagram{
		max-width: 95%;
	}
	
}


@media only screen and (max-width: 1000px) {

	.nav {
		position: absolute;
		left: 0;
		max-width: 100%;
		bottom: 0;
		transform: translateY(99%);
		text-align: center;
		background-color: #fff;
		width: 50%;
		opacity: 0;
		pointer-events: none;
		padding: 2em 0;
		transition: all 0.5s;
		border-bottom: 3px solid rgba(237, 141, 15,1);
	}
	
	.menuopen .nav {
		width: 100%;
		opacity: 1;
		pointer-events: auto;
	}
	
	.nav ul {
		flex-direction: column;
	}
	
	.menu_icon_ct {
		display: inline-block;
		position: relative;
	}
	
	#sb_instagram {
		max-width: 84%;
	}
	
}

@media only screen and (max-width: 760px) {
	
	.wrapper {
		padding-top: 200px;
		font-size: 16px;
	}
	
	.logo {
		height: 200px;
		padding: 2px 0;
	}
	
	.scrld .logo {
		height: 60px;
		padding: 2px 0;
	}
	
	.menu_icon_ct {
		padding: 0;
		padding-top: 15px;
	}
	
	.sm_ct {
		padding-bottom: 0;
	}
	
	.sm_ct span {
		font-size: 11px;
		padding-top: 10px;
		padding-bottom: 0.25em;
	}
	
	.sm_ct svg {
		height: 30px;
	}
	
	.sidebar {
		display: none;
	}
	
	main {
		width: 100%;
	}
	
	.wp-block-latest-posts__featured-image {
		padding-right: 0;
		padding-bottom: 30px;
		width: 100%;
	}
	
	.single-post .article_image {
		width: 100%;
	}
	
	.single-post .article_inner {
		width: 100%;
	}
	
	.post_arch article, .single article {
		flex-direction: column;
	}
	
	.article_image {
		width: 100%;
		max-width: 400px;
	}
	
	.article_inner {
		width: 100%;
	}
	
	.lbp_box {
		padding: 20px;
	}
	
}



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
