/*
	Theme Name: BLNK
	Description: Derek's WordPress Theme
	Version: 1.0.0
	Author: Derek (@derekonomy)
	Author URI: http://uixist.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 {

}
body {font-family: 'Helvetica Neue', sans-serif;

  font-size: 22px;
	background-color: #FFFFFF;
	color: #000;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

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

h1 { font-size: 5em;
	 }

h2 { font-size: 2.5em;
 }


h3 { font-size: 1.2em;
	line-height: 1.25;
	margin: 1em 0px; }

p { line-height: 1.2; }

@media only screen and ( max-width: 820px ){ 
 h1 { font-size: 2em; }
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
overflow: hidden;
}

.container { 
	max-width:1720px;
	width:90%;
	margin:0 auto;
	position:relative;
}

.notification { background-color: #F7F7F7;	
	color: #DD6A61;
	text-align: center; 
	margin: 0px;
	line-height: 1;
	padding: 0.5rem; }

.notification a { color: #DD6A61; }

.notification span { display: inline-block; }

/* header */
.header {
	width:100%;
	background-color: #FFF; 
	z-index: 99;
	position: relative;
}

.inner-header { max-width:1720px;
	width: 90%;
	margin: 0px auto;
	padding: 3rem 0px; 
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

/* logo */
.logo {

}
.logo-img {
	height: 1.5rem; 
}
/* nav */
.nav {

}

.nav ul { list-style: none;
	margin: 0px; padding: 0px; }

.nav ul li { display: inline-block; }

.nav a { padding: 1em 0.5em ; }

.nav .sub-menu { position:absolute; -webkit-padding-start: 0px; padding: 0x; margin-top: 1em; opacity: 0;
        background-color: #444; z-index: -10; visibility: hidden;
		border-bottom: 1px solid #97D700; }
.nav .sub-menu li a { background-color: transparent; text-shadow: 0px 0px 0px transparent;}
.nav .sub-menu li { float: none; display: block; padding: 0.5em 0.5em 1em; margin-left: 0px;}   
.nav .sub-menu li:hover { background-color: #444; }   
.nav .sub-menu, .nav .sub-menu li { transition: all 0.5s ease-in-out; }
.nav ul li:hover > ul { opacity: 1; z-index: 99; visibility: initial;}


/* sidebar */
.sidebar {

}
/* footer */
.footer {

}
	.footer { background-color: #F7F7F7; padding-bottom: 1em; }
	
.footer .social { margin-right: 10em; }
	.footer .social img { margin-right: 1em; }
	.footer-container { display: flex; justify-content: space-between; align-items: center; padding: 1em 0px 1em; }
	.footer-right { display: flex; align-items: center; flex-grow: 1; justify-content: flex-end; }
	.footer ul { list-style: none;
		margin: 0px; padding: 0px;
		}
	.footer ul li { display: inline-block; margin: 0.25em 0px; margin-right: 5em; }

.copyright { font-size: 0.75em;}

@media only screen and (max-width: 640px){
	.social { margin-bottom: 2em; }
	.footer-container { display: block; }
}


/*------------------------------------*\
    HAMBURGER
\*------------------------------------*/

.top_right { display: flex; align-items: center; }

#hamburger {
  width: 60px;
  height: 40px;
  position: relative;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
	position: relative; 
	z-index: 99;
 	display: block;
	caret-color: transparent;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #222;
  opacity: 1;	
  right: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
	caret-color: transparent;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2) {
  top: 18px;
}

#hamburger span:nth-child(3) {
  top: 36px;
}

#hamburger.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#hamburger.open span:nth-child(2) {
  opacity: 0;
  right: -60px;
}

#hamburger.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}


.nav { position: relative; 
	background-color: #FFF;
	right: 0px; 
	transform: translateX(100vw);
	transition: 0.25s;
	z-index:99;
	}

.open-nav { transform: translateX(0vw); }

@media only screen and ( max-width: 640px ){
	
	.nav { position: absolute; 
		background-color: #020202;
		padding: 1em; 
		bottom: -2em;
		right: 0px; 
		transform: translateX(100vw);
		transition: 0.25s;      
	}
	
	.nav ul li a { color: #FFF; }
	.open-nav { transform: translateX(10%); }
	
}

#hamburger:hover {

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

article > p { 

 }


.post-edit-link { background-color: #97D700;
	padding: 1em 2em; 
	position: fixed; 
	bottom: 0px; right: 0px;
	color: #000; }

br.clear { display: none; }

.emblem { margin-right: 5%; }

/*------------------------------------*\
    SINGLE
\*------------------------------------*/
.single article {    max-width: 1720px;
    width: 90%;
    margin: 0 auto 10em; }

.single article p,
.single article li { max-width: 50em; }

.single article li { margin-bottom: 0.5em; }

.category section {    max-width: 1720px;
    width: 90%;
    margin: 0 auto 10em; }

.category section h2 { margin-bottom: 0px; }

.category article { max-width: 1440px; 
	border-bottom: 1px solid;	
	margin-bottom: 5em; }

/*------------------------------------*\
    BLOCKS
\*------------------------------------*/

.attachment-post-thumbnail { width: 100%; height: auto; }

.wp-block-cover, .wp-block-cover-image { min-height: 75vh; padding: 5em 10%; }

.wp-block-media-text { padding: 0px 10%;
	margin: 5em auto;
	}
.wp-block-media-text .wp-block-media-text__content { padding: 0px 10%; }


.wp-block-separator {
	margin: 0px;
    border-top: 1px solid #97D700;
	border-bottom: none;
}


.wp-block-group__inner-container { max-width:1440px;
	width:90%;
	padding: 3em 0px; 
	margin:0 auto; }

.wp-block-group__inner-container p { max-width: 31em; }

.wp-block-gallery.has-nested-images figure.wp-block-image { display: block; }

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a, 
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img { display: block; height: initial; object-fit: contain; }

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption { background: none; 
	color: #222; 
	font-size: 1em;
	position: relative; 
	text-align: left;
	margin-bottom: 1em; text-shadow: none; }

.wp-element-caption { 	padding: 0.5em 0px;
	background-color: #FFF; position: relative;  }

.wp-block-image figure,
.wp-block-image { overflow: hidden; }
.wp-block-image img { transition: 0.5s ease-out; }
/*--
.wp-block-image img:hover { transform: scale(1.1, 1.1); }
.noHover img:hover { transform: scale(1, 1); }
--*/
@media only screen and (max-width: 640px){ 
	.wp-element-caption { font-size: 0.8em; }
}

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

@font-face {
	font-family:'Helvetica Neue';
	src: url("fonts/HelveticaNeueRoman.otf") format("opentype");
    font-weight:normal;
    font-style:normal;
}

@font-face {
	font-family:'Helvetica Neue';
	src: url("fonts/HelveticaNeueBold.otf") format("opentype");
    font-weight:bold;
    font-style:normal;
}

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

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    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 {
	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;
	}
}
