/*
	Theme Name: Swicks
	Theme URI: http://www.hiddenpublic.com
	Description: For Swicks By Hidden Public
	Version: 1.4.6
	Author: Derek Lam (@derekonomy)
	Author URI: http://www.derekonomy.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: 18px;
}
body {
	font-family: 'Lora', serif;
	background-color: #f7f7f7;
	color:#111;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

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

h1 {
	font-family: 'Roboto', sans-serif;
	line-height: 1.2;
}

.container > p,
.container > ul,
.container > ol { 
	width: 90%; max-width: 800px;
	line-height: 1.5;
	margin: 1em auto;
 }

.container li { margin: 1em 0em; }


.container > h1 { font-size: 3em; margin-bottom: 0px; }

ol li { margin-bottom: 1em; }

h2:first-of-type { margin-top: 0px; }

h1,
h2 {
	width: 90%;
	max-width: 1440px; 
	margin: 1em auto; }

p { line-height: 1.5; }

@media only screen and ( max-width: 640px ){
	.container > h1 { font-size: 2em; }
	
}

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

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
	padding-top: 5em;
}

/* header */
.header {
	width: 100%;
	z-index: 90;
	padding: 1em; 
	transition: 0.5s;
	position:fixed;
	top:0px;
}

.header:after {
	content: '';
	display: block;
	position: absolute;
	background-color: #FFF;
	width: 100%; 
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 10;
}

.header-wrapper { 
	max-width: 1440px; 
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
    align-items: center;	
	}

/* logo */
.logo {
	float: left;
}
.logo-img {
	position: relative;
	height: 3em;
    z-index: 99;
}
/* nav */
.nav {
	float: right;
	position: relative; 
	z-index: 90;
}


.nav ul { list-style: none; padding: 0px; margin: 10px 0px;  }
.nav li { display: inline-block; margin-left: 20px; position: relative; }
.nav li a { color: #111;
	position: relative; }
.nav li a:hover { color: #95ab63;}

.nav ul.sub-menu { position: absolute; 
	background-color: #FFF;
	left: -1em;
	margin: 0px;
	padding: 0.5em 0em;
	visibility: hidden;
	opacity: 0;
	transition: 0.25s;
	}

.nav ul.sub-menu li { display: block;
	margin: 0px; padding: 0.5em 1em;
	white-space: nowrap; }

.nav li:hover ul.sub-menu { visibility: visible; 
	opacity: 1; }


.hamburger {
   	cursor: pointer;
    position: absolute;
    right: 20px;
	display: none;
	z-index:95;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #000;
    margin: 6px 0;
    transition: 0.4s;
}


.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}

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

	html { font-size: 16px; }
	
	.hamburger { display: inline-block; }
	
	.nav {
		width: 100vw;
		max-height: calc( 100vh - 4em );
		overflow-y: auto;
	   	position: fixed;
		left: 0px;
	    top: -100vh;
		transition: 0.5s;
		opacity: 0;
		padding: 0em 0px 3em; 
		background-color: #FFF;
		}

	.nav-active { top: 4em;
		opacity: 1; }

	.nav-background {
		width: 100%;
		height: 100%;
		top: 0px;
		background-color: #FFF;
		position: absolute;
		opacity: 0.97;
	}
	
	.nav ul.sub-menu { display: block;
		opacity: 1; 
		visibility: initial;
		position: relative;
		font-size: 0.75em;
		background-color: transparent;}

	.nav > ul {
	}

	.nav ul { margin: 0px;
		padding: 0px; }
	.nav li { display: block;
		margin-top: 20px; }
	.nav li a { color: #000; 
		font-weight: bold; 
		font-size: 1.5em; }
	
	.nav ul.sub-menu li a { color: #888; 
		font-weight: 400; }	
	
	
}


/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

	.footer { font-size: 18px; 
		position: relative;
		background-color: #2C4034;
		color: #FFF;
		padding: 7em 0px 2.5em;
		z-index: 90; }
	
	.footer a { color: #FFF; }
	.footer a:hover { color: #95ab63; }
	
	.footer_container { display: flex;
		justify-content: space-between;
		width: 90%; 
		max-width: 1440px;
		margin: 0em auto;
		gap: 5em; }
	
	.footer_container > div { width: 40%; }
	
	.footer .left_col { display: flex; }
	
	.footer .logo img { width: auto;
    	height: 6em;
    	top: -2.5em;
		left: 50%;
    transform: translateX( calc( -50% - 1.25em )) ;
    position: absolute; }	

	.footer .left_col .widget_1 { flex-basis: 0; flex-grow: 1; }
	.footer .left_col .widget_1 p:first-of-type { margin-top: 0px; }
	
	.footer .right_col { display: flex; 
		flex-flow: wrap;
		justify-content: space-between; 
		gap: 2em; }
	
	.footer ul { list-style: none; 
		padding: 0px; 
		margin-top: 0px;
		text-align: left;
		margin-bottom: 0px; }
	
	.footer li { break-inside: avoid-column; }
	
	.footer .widget_nav_menu > ul > li > a { font-weight: 900; text-transform: uppercase; margin-bottom: 0.5em; }
	.footer .widget_nav_menu > ul > li { margin-bottom: 2em; }
	.footer .widget_nav_menu > ul > li:last-of-type { margin-bottom: 0px; }
	
	.footer .sub-menu li {  }
	
	.fine_print { 
		border-top: 1px solid; 
		font-size: 0.75em;
		display: flex;
		justify-content: space-between;
		width: 90%; 
		max-width: 1440px;
		margin: 3em auto 0px; }


	.social_media_icons img { height: 1.5em; width: auto; }


	@media only screen and (max-width: 1080px){
		.footer_container { display: block; }
		.footer_container > div { width: 100%; }
		.footer .left_col { padding-bottom: 2.5em; }
				.footer .widget_3 { margin-top: 1em; }
	}
	
	
	@media only screen and (max-width: 1080px){
		.footer .right_col { display: block; }
		.footer .widget_nav_menu > ul > li:last-of-type { margin-bottom: 2em; }
		.footer .widget_nav_menu > ul { column-count: 2; }
	}	
	
	@media only screen and (max-width: 640px){
		.footer { padding: 5em 0px 2.5em; }
		.footer .widget_nav_menu > ul {
			font-size: 0.9em;
			gap: 4em;
		 }
		.footer li { white-space: wrap;  }
		.footer li > ul > li { margin-top: 1em; }
		.widget_nav_menu { margin-top: 2em; }
		.copyright { width: 50%; }
		
		.footer .right_col { padding-left: 0em; }
		.footer .left_col { display: block; }
		.footer .logo img { top: -2.5em; transform: translateX(calc(-50% - 0.25em)); }
		
	}	

.shadow {
     -webkit-filter: drop-shadow(2px 10px 10px #222);
     filter: drop-shadow(2px 10px 10px #222);
     }

.wow { visibility: hidden; 
}

.mid-wrapper { width: 100%; 

	margin: 0 auto; }

/*------------------------------------*\
    LANDING
\*------------------------------------*/

.landing { width: 100%; 
	height: calc( 95vh - 80px );
	max-height: 768px;
	position: relative;
	background-color: #111;
	background-repeat: no-repeat;
	background-size: cover;
	 }

.landing-vid-container {
	height: 100%; width: 100%; 
	position: absolute;
	overflow: hidden;
	
}
#landing-vid {
	min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-size: cover;
    transition: 1s opacity;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1.01,1.01);

}

.landing-wrapper { max-width: 1440px; 
	width: 90%; 
	height: 100%; 
	position: relative;
	margin: 0 auto; }

.landing-title {
	position: absolute; 
	width: 100%; 
	bottom: 1em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2em;
	color: #FFF;
	max-width: 25em;
	text-align: center; 
	line-height: 1;
}

.landing-title h1 { width: 100%; }

.cta { position: absolute;
	bottom: -29px;
	width: 100%; 
	}

.cta .button { float: right;
	padding: 20px 25px;
	color: #111;
	background-color: #FFF;
	transition: 0.5s;
	}

.cta .black-button { background-color: #111; color: #FFF; }

.landing-content {
	padding: 15vh 10vh;
	
}

.landing-content p { padding: 0px 20px;
	width: 50%; 
	float: left; }

.see-work-container { position: relative; }

.see-work { padding: 0vh 10vh; 
		position: absolute; 
		top: 0px; left: 0px; }

.see-work-content {
	background-color: #FFF;
	padding: 5vh;
	width: 35%;
	position: relative;
	z-index: 10;
}

.see-service { width: 46%; 
	padding: 10px 20px; 
	border: 1px solid #111; 
	box-sizing: border-box;
	float: left; 
	margin: 2%; 
	text-align: center; 
	color: #111;
	transition: 0.5s; }

.see-service:hover { background-color: #111;
	color: #FFF; }

.work-cta {
	padding: 20px 25px;
	background-color: #111;
	color: #FFF;
	float: left;
	transition: 1s;
}

.see-work-image {
	position: relative; 
	height: 100%;
	width: 75%;
	background-size: cover;
	float: right; 
}

.see-work-image img { width: 100%; }

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

	.landing-title {
		font-size: 1.5em;
		max-width: 100%;
	}
	
	.landing-content p {
    	width: 100%;
	}
	

}

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

.page-header { height: 60vh; 
	position: relative; 
	background-color: #111;}

.page-description {  }


.page-description p { max-width: 640px; margin: 10px auto; }


.review-left { width: 50%; 
	float: left; 
	margin-top: 5em;
	text-align: center; }

.review-right { width: 50%; 
	float: right; 
	 }

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

	.review-left { margin-top: 2.5em; }

@media only screen and (max-width: 640px){
	.review-left,
	.review-right { width: 100%;  }
	
	.review-left { margin-bottom: 5em; }
	
}

/*------------------------------------*\
    PORTFOLIO
\*------------------------------------*/


.portfolio-container {   }

.portfolio-item { width: 21%; 
	float: left; 
	position: relative; 
	margin: 2%;
	margin-bottom: calc( 2% + 15px ); }

.item-description {
	position: absolute;
    bottom: -15px;
    width: 100%;
}

.item-title { 
    background-color: #FFF;
    padding: 10px;
   	width: 75%;
	float: left;
    display: inline-block;
}

.item-title a { color: #111; }

.item-title h3 { margin: 0px; font-weight: 400;  }

.item-enlarge { position: absolute;
		bottom: 0px;
		left: 75%;
		max-width: 20%; }
.item-enlarge img { height: 38px; 
		width: auto; 
		position: relative; 
		transition: 0.5s; }
.item-enlarge img:hover {
		-webkit-filter: invert(100%); /* Safari */
    	filter: invert(100%);
}

/*------------------------------------*\
    POSTS
\*------------------------------------*/
.single_container { max-width: 1440px; width: 90%; margin: 1em auto; }


.post-title h1 { width: 100%; }

.post-content > p,
.post-content > h1,
.post-content > h2,
.post-content > h3,
.post-content > ul,
.post-content > ol { width: 90%; 
	max-width: 800px;
	margin: 2em auto 0.75em; }

.post-content { padding: 5em 0px 0px;
	margin: 0px auto;}

.post-content .wp-block-image, 
.post-content .wp-block-gallery { margin: 0.5em auto; }

.related { text-align: center;
	text-align: center;
    padding: 5vh 0px;
    border-top: 1px solid #ccc;
	}

.next-link { position: relative;
    width: 35%;
	display: inline-block;
	margin: 5%; }

.prev-link { position: relative; 
	width: 35%;
	display: inline-block;
	margin: 5%;}

.single-back { width: 35%; 
	margin: 5%; 
	background-color: #111;
	color: #FFF;
	font-weight: 700;
	padding: 20px; 
	text-align: center;
	vertical-align: top; 
	transition: 0.5s; 
	display: inline-block; }
	

.single-back:hover { color: #111;
	background-color: #FFF; }

.single_nav { margin: 5em auto; display: flex; justify-content: space-between; align-items: stretch; flex-flow: wrap; }

.comments { border: 1px solid #eee; padding: 1em; max-width: 1000px; margin: 5em auto; }
.comments a { color: #222; }
.comments h2 { width: 100%; }
.comments ul { list-style: none; padding: 0px; }
.comments li .comment-body { background-color: #FFF; padding: 1em; }
.commentmetadata { font-size: 0.75em;}
.comments .children { padding-left: 1em; }
.comments .children li { border-left: 2px solid #888; }

.comments textarea { max-width: 100%; }

.reply { display: inline-block; border: 1px solid; padding: 0.5em 1em; font-size: 0.75em; }
#respond label { display: block; font-size: 0.75em; }
#respond { margin-top: 2em; }
#respond input[type="submit"] { border: 1px solid #888; background-color: #888; color: #FFF; padding: 0.5em 1em; }

@media only screen and ( max-width: 640px ){
	
		.post-header { height: 120vw; }
	
}

/*------------------------------------*\
    SERVICES
\*------------------------------------*/
.service-section { border-bottom: 1px solid #111; }

.service-item { width: 33.33333%;
	float: left; 
	padding: 20px; }

.service-item-content { display: none;  }

.service-item:nth-child(5) { clear: both; }

.expand { float: right; transition: 0.5s; }
.expand img { width: 38px; 
		display: inline-block;
		vertical-align: middle; 
		margin-left: 10px; 
		cursor: pointer; 
		transition: 0.5s; }
.expand img:hover {
		-webkit-filter: invert(100%); /* Safari */
    	filter: invert(100%);
}

.full { opacity: 0; }

.services h2 { padding-top: 100px; margin-top: 0px; }

.service-excerpt { margin: 20px 0px; }

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

.page-content {  
	max-width: 1440px; 
	margin:  auto;
	padding: 5em 0px; }

.page-content h2 { line-height: 1.3; }

.page-content p {  }


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

.gallery { margin: 80px 0px 20px !important; }
.gallery-item { margin: 0px !important;
	padding: 5px; }
.gallery-item img { height: auto !important;
	border: none !important; 
	width: 100%; }



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

.wp-block-image,
.wp-block-gallery { /*-- max-width: 1440px; --*/
	margin: 0.5em auto; }

.wp-block-image:last-of-type { margin-bottom: 0px; }

figure.wp-block-gallery.has-nested-images { align-items: stretch; }
.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) { margin: 0px;}
.wp-block-gallery.has-nested-images figure.wp-block-image img { height: 100%; }

.wp-block-image img { 
	max-width: 100%; 
	height: 100%;
	max-height: 100vh; 
	object-fit: cover; }

.wp-block-media-text { align-items: stretch;
	width: 90%;
	max-width: 1440px;
    margin: 5em auto;
    align-items: stretch; }


.wp-block-media-text .wp-block-media-text__content p,
.wp-block-media-text .wp-block-media-text__content h2,
.wp-block-media-text .wp-block-media-text__content ol,
.wp-block-media-text .wp-block-media-text__content ul { width: 100%; }

.wp-block-media-text__media { height: 100%; }
.wp-block-media-text__media img { width: 100%; height: 100%; object-fit: cover; }

.wp-block-media-text__content h2.wp-block-heading:first-of-type { margin-top: 1em; }


.wp-block-image img { width: 100%; }

.wp-block-separator { max-width: 1440px; 
	border: 0px;
	border-bottom: 1px solid;
	margin: 0px auto; }

.wp-block-button__link { border-radius: 2px; 
	font-size: 0.9em;
	color: #222;
	border: 1px solid;
	background-color: transparent;
}

.wp-block-button__link:hover { background-color: #95ab63; color: #FFF; }

.wp-block-group { padding: 1px 0px; }

.post-content > .wp-block-heading { 
	margin: 2em auto 0.75em; }

h2.wp-block-heading:first-of-type { margin-top: 2em; }

.wp-block-columns { width: 90%; max-width: 1440px; 
	margin: 0px auto; }

.wp-block-columns h2 { width: 100%; }

@media only screen and ( max-width: 640px ){
	
	.wp-block-gallery .wp-block-image { width: 100% !important; }
	.wp-block-image img { }
	
	.wp-block-media-text .wp-block-media-text__content { padding: 0px; }
	
	.wp-block-media-text { margin: 1em auto; }
	
	.has-large-font-size { font-size: 1.5em !important; }
}

/*------------------------------------*\
	BLOG
\*------------------------------------*/
.post-title { margin-bottom: 2em; }
.post-title h1 { margin: 3rem auto 1rem;}
.post-title .author,
.post-title .date { display: inline-block;   }
.post-title .author
.post-metadata { font-size: 0.75em; border-left: 1px solid; margin-left: 0.5em; padding-left: 0.5em; padding-left: 0.5em;  }


.blog_container { width: 90%;
	max-width: 1440px; 
	margin: 1em auto;  
	display: flex; 
	justify-content: space-between; 
	flex-flow: wrap; 
	align-items: stretch; }

	.blog_entry { 
		width: 49%;
		background-color: #FFF; 
		margin-bottom: 2%; 
		position: relative;
		padding-bottom: 3em;
		}
	
	.blog_thumb { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2;  overflow: hidden; position: relative; }
	.blog_thumb img { width: 100%; height: 100%;
		object-fit: cover;
		transition: 1s ease-out; }
	
	.blog_entry:hover .blog_thumb img { transform: scale(1.1,1.1); }
	
	.blog_summary { width: 100%;
		padding: 5%; }

	.blog_summary h2 { width: 100%; 
		margin: 1rem 0px 0px;
		font-size: 1.5rem;
		color: #222; }
	
	.blog_summary .date {     position: absolute;
    transform: translateY(-1em);
    font-size: 0.75em; }

	.blog_summary p { font-size: 0.9em; margin-top: 1em; width: 100%; }
	
	.blog_summary a { color: #222; }
	
	.blog_button { background-color: #eee;
		position: absolute;
		display: block;
		width: 100%; 
		bottom: 0px; left: 0px;
		text-align: center; 
		font-size: 0.9em; 
		padding: 1em; }
	
	.blog_button:hover { background-color: #ccc; }
	
	.pagination { width: 90%; 
	margin: 2.5rem auto 10rem;
	text-align: center; }


	@media only screen and (max-width: 640px){
		
		.blog_entry { width: 100%; margin-bottom: 1em; }
		
	}

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

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

.has-large-font-size { line-height: 1.2; }


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






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


	.portfolio-item { width: 46%; 
		float: left; 
		position: relative; 
		margin: 2%;
		margin-bottom: calc( 2% + 15px ); }
	
	.service-item { width: 100%; }

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


	
	.portfolio-item { width: 100%; 
		margin: 0px; 
		margin-bottom: 10vh; }
	
	.service-item { width: 100%; }
	
	.see-work { padding: 0px; position: relative; }
	.see-work-content { width: 100%; }
	.see-work-image { position: relative; 
		width: 100%; }
	
	
	/*-- Pages --*/
	.service-cta { bottom: -120px; }
	.service-button { width: 50%; 
		text-align:center; }
	
	.page-description {  }
	.services .page-description { }
	

	
	/*-- Single --*/
	
	.next-link,
	.prev-link,
	.single-back { width: initial; } 
	
	

	
	/*-- gallery --*/
	.gallery-item { width: 50% !important; }
}

@media only screen and (max-width:480px) {
	
	/*-- gallery --*/
	.gallery-item { width: 100% !important; }	
	
}

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


.contact .landing { background-position: center center; }


/*-- ADMIN --*/

.admin-bar .header { top: 32px; }

#wpadminbar ul { max-width: initial; }

.wp-block-embed { max-width: 40em;
	font-size: 20px;
	margin: 1em auto; }