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

/* variables */
:root {
	--link-color: #ae6a3a;
	--link-hover-color: #d8ac8b;
}

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

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: white;
	opacity: 1; /* Firefox */
}

body {
	font-family: 'Hudara-Font';
	font-size: 1.7rem;
	color: #4a423e;
	background-color: #4a423e;
	padding-top: 0px;
}
/* clear */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

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

h1 {
	font-family: 'Hudara-Font-Bold';
	font-size: 6rem;
	line-height: 5.5rem;
	letter-spacing: -1px;
	margin: 0px;
}

.bold,
b {
	font-family: 'Hudara-Font-Bold';
}

.center {
	text-align: center !important;
	padding-top: 0px !important;
}

h2 {
	font-family: 'Hudara-Font-Bold';
	font-size: 2rem;
	color: #c27d4d;
	text-align: center;
	margin: 0px auto;
}

h3 {
	font-family: 'Hudara-Font-Bold';
	font-size: 2rem;
	color: inherit;
	text-align: left;
	margin: 0px;
	padding-top: 0px;
}

#scroll-to-top {
	display: none !important;
}

.has-medium-font-size {
	font-size: 2rem;
	line-height: 3.2rem;
}

.wp-block-embed__wrapper {
	max-width: 100% !important;
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 56%;
	margin-bottom: 50px;
}

.wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.b-description_readmore {
	position: relative !important;
}

.b-morelines_section_ellipsis:after {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 75%;
	height: 25px;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0),
		rgb(245, 245, 245) 65%
	);
}

.b-morelines__readmore-white_ellipsis:after {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 75%;
	height: 25px;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0),
		rgb(255, 255, 255) 65%
	);
}

.b-morelines_section_button,
.b-morelines__readmore-white_button {
	display: inline-block;
	/* width: 150px; */
	/* border: 1px solid black; */
	padding: 10px 0;
	color: var(--link-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	cursor: pointer;
	/* text-align: center; */
}

.b-morelines_section_button:hover,
.b-morelines__readmore-white_button:hover {
	color: var(--link-hover-color);
}

.b-morelines__readmore-white_wrapper {
	margin: 0px !important;
}

.smoke .b-morelines__readmore-white_ellipsis:after {
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0),
		rgb(245, 245, 245) 65%
	);
}

footer .fab {
	width: 30px;
	text-align: center;
	line-height: 30px;
}
#team .social-icons {
	margin-top: 10px;
}

#team h3 {
	margin-top: 10px;
}

#team svg {
	width: 30px;
	height: 30px;
	fill: #ffffff;
	transition: all 0.3s ease-in-out 0s;
	padding: 3px;
	background-color: var(--link-color);
}

#team svg:hover {
	background-color: #ededed;
	fill: var(--link-color);
}

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

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

/* header */
.header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background: #c27d4d;
	transition: top 0.2s ease-in-out;
	opacity: 1;
	z-index: 1000;
	border-bottom: #4c403d33 0px solid;
}

#mission .subsections_wrap {
	padding-top: 0px !important;
}

.por {
	margin-top: 0px;
	float: left;
	width: 100%;
}

.nav-up {
}

.nav-down {
}

.header_container {
	max-width: 1160px;
	margin: 0px auto;
	padding: 0px 30px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mobile {
	display: none;
}
.desk {
	display: block;
}

.mobile_header_container {
	display: none;
}

/* logo */

.logo-img {
	max-height: 35px;
	transition: all 0.3s ease-in-out;
}

.logo-img:hover {
	opacity: 0.7;
}

/* nav */
.nav {
	font-family: 'Hudara-Font';
	font-size: 1.8rem !important;
	color: white;
	height: 60px;
}

.nav a {
	color: inherit;
	text-decoration: none;
	position: relative;
}

.nav a:hover {
	color: inherit;
}

.animated {
	position: relative;
	font-size: 1.8rem !important;
	font-family: Hudara-Font-Bold;
	height: 60px;
}

.animated > a {
	height: 60px;
	display: flex;
	align-items: center;
}

.animated > a::after {
	position: absolute;
	content: '';
	bottom: 16px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: white;
	transform-origin: left;
	transition: width 0.8s ease;
	z-index: -1;
}

.animated:hover a::after {
	width: 100%;
}

.current-menu-item a {
	padding-bottom: 2px;
}

.current-menu-item a::after {
	width: 100%;
}

.menu-item-18 {
	color: #4a423e !important;
}

.current-lang {
	color: white;
	font-family: 'Hudara-Font-Bold';
}

.nav ul {
	display: flex;
	align-items: baseline;
	list-style: none;
	margin: 0px;
	padding: 0px;
	height: 60px;
}

.nav > ul {
	align-items: center;
}

.nav ul li {
	margin-left: 40px;
	font-size: 1.6rem;
}

.nav ul li:hover ul {
	display: block;
}

.nav ul li ul li a {
	text-transform: none;
	border: 0;
	padding-top: 15px;
	display: block;
}

.nav ul li ul li a:hover {
	color: #4a423e !important;
}

ul.sub-menu {
	display: none;
	position: absolute;
	background: #c27d4d;
	padding: 15px 10px;
	transition: all 0.4s ease;
	padding: 5px 10px 15px;
	top: 43px;
	min-width: 200px;
	z-index: -2;
	height: auto;
}

ul.sub-menu li {
	margin: 0px !important;
	padding: 0px;
	padding-right: 20px;
	text-transform: uppercase;
	transition: all 0.2s ease;
	line-height: initial;
	background-color: inherit;
	border-bottom: 0px !important;
}

#menu-item-1808,
#menu-item-1812 {
	border: 0px !important;
}

ul.sub-menu li a {
	color: inherit !important;
}

li#menu-item-1808n {
	height: 60px;
	line-height: 60px;
	margin-left: 0px !important;
	padding-right: 20px;
	padding-left: 20px;
	transition: all 0.2s ease;
	cursor: pointer;
}

li#menu-item-1808 a,
li#menu-item-1812 a {
	display: none;
}

.lang-item a {
	display: block !important;
}

ul.sub-menu li a::after {
	content: none !important;
}

.menu-item-description {
	font-size: 1.4rem;
	margin: 0px;
	color: #c47d48;
}

.lang-item-first {
	padding-right: 5px;
	border-right: 1px solid white;
}

.lang-item a:hover {
	color: #4a423e;
}

@media only screen and (min-width: 801px) {
	.lang-item-de {
		margin-left: 5px !important;
	}
}

.donateb {
	position: relative;
	max-width: 200px;
	border: 3px solid white;
	border-radius: 4px;
	padding: 7px 20px;
	font-family: 'Hudara-Font-Bold';
	transition: all 0.8s ease;
	margin: 0px;
	color: white;
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	cursor: pointer;
}

.mailingb {
	line-height: 26px;
	margin: 0px !important;
	text-align: center;
	max-height: 46px;
}

.mailingb:hover {
	color: #4a423d !important;
}

.donateb:hover {
	color: #c37c4c;
}

.donateb a {
	border: 0px !important;
}

.donateb::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: white;
	transform-origin: left;
	transition: width 0.4s ease;
	z-index: -1;
}

.donateb:hover::after {
	width: 100%;
}

#abstractin {
	align-items: flex-end !important;
}

#synopsis {
	align-items: flex-start !important;
}

.callout {
	max-width: 200px;
	height: 50px;
	background: whitesmoke;
	border-radius: 4px;
	padding: 10px 30px;
	font-family: 'Hudara-Font';
	transition: all 0.2s linear;
	color: #c07e4c;
	align-items: center;
	justify-content: center;
}

.callout:hover {
	opacity: 0.7;
	cursor: pointer;
}

.callout span::after {
	font-family: 'Font Awesome 5 Free';
	content: '\f105';
	display: inline-block;
	padding-left: 10px;
	/* vertical-align: middle; */
	font-weight: 900;
	font-size: 1.2rem;
}

.callout_orange:hover {
	background: #c37c4c !important;
	border-color: white;
	cursor: pointer;
}

.single_page {
	min-height: 100vh;
	padding-top: 60px;
	padding-bottom: 100px;
}

.page-id-4770 .single_page,
.page-id-4774 .single_page {
	min-height: 0;
}

.single_page_title {
	padding-top: 60px;
	font-size: 4rem;
	text-align: left;
	font-family: Hudara-Font-Bold;
	padding-bottom: 20px;
}

.single_page h3 {
	padding-top: 40px;
}

/* footer */

ul.site_map {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 20px;
}

.dark {
	background: #38332f !important;
	margin: 0px;
}

.friends {
	min-height: 400px;
}

.footer_logo {
	max-height: 30px;
	margin: 0px 0px 10px;
	opacity: 1;
}

.fab {
	font-size: 1.8rem;
	transition: all 0.3s ease-in-out 0s;
	background: #ededed;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50px;
	color: #4a423e;
}
.fab:hover {
	cursor: pointer;
	background: #c37c4c;
}

.social {
	margin-top: 50px;
}

.footer {
	width: 100%;
	background: #4b433d;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	line-height: 2rem;
}
.footer_container {
	width: 100vw;
	max-width: 1160px;
	margin: 30px auto;
	padding: 20px 30px;
	background: inherit;
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
	color: whitesmoke;
}

.footer_image {
	width: 100%;
	height: 450px;
	background: no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: flex;
	align-items: center;
}

.footer_message {
	width: 960px;
	padding: 20px;
	margin: 0px auto;
	/* text-align: center; */
	color: white;
}

.footer_message p {
	font-size: 2.3rem;
	margin-top: 15px;
	max-width: 500px;
}

.footer_message h1 {
	max-width: 500px;
}

.donatebb {
	max-width: 200px;
	/* border: 3px solid whitesmoke; */
	border-radius: 4px;
	padding: 15px 30px;
	font-family: 'Hudara-Font-Bold';
	transition: all 0.2s linear;
	/* margin: 0px auto; */
	color: #ffffff;
	font-size: 2.5rem;
	background: #c27d4c;
	letter-spacing: 2px;
	justify-content: center;
	text-transform: uppercase;
}

.donatebb:hover {
	color: #4a423e;
	background: white;
}

.give-goal-progress {
	margin-bottom: 30px !important;
	margin-top: 50px !important;
	clear: both;
}

.donation_wrap {
	margin-bottom: 50px !important;
	max-width: 1000px !important;
	padding-top: 50px !important;
}

.formw {
	width: 75%;
	line-height: 2.2rem;
	padding-right: 50px;
	text-align: left;
}

.formw-join {
	width: 100%;
	line-height: 2.2rem;
	padding-right: 0;
}

.paoc-modal-popup .paoc-popup-con-bg {
	background: #c37c4b;
}

.paoc-modal-popup input[type='text'],
.paoc-modal-popup input[type='email'],
.paoc-modal-popup textarea {
	background-color: #ce966c;
	padding: 5px;
	margin: 15px 0;
	color: white;
	border: unset;
}

.paoc-modal-popup img {
	margin: 0;
	width: 100%;
}

.paoc-modal-popup p {
	margin: 0px !important;
}

#mc_embed_signup {
	padding: 20px;
}

div.mce_inline_error {
	margin: 0 0 0 !important;
	padding: 10px 0 !important;
	background-color: inherit !important;
	font-weight: inherit !important;
	z-index: 1;
	color: #6b0505 !important;
}

.wpcf7 {
	padding: 20px !important;
}

.paoc-popup-modal-cnt input,
.paoc-popup-modal-cnt textarea {
	background-color: #d29061;
	border: 0px;
	margin-top: 20px;
	padding: 10px;
	max-width: 860px;
}

.help {
	width: 100%;
	top: 90px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	border-bottom-right-radius: 0px;
	margin-bottom: 20px;
}

.half_footer {
	width: 50%;
}

.half_footer span {
	color: #c37c4c;
}

.line {
	background-repeat: round;
	background-size: 40px;
	background-color: inherit;
	margin-top: -3px;
	min-width: 100%;
	height: 160px;
}

ul#menu-footer-docs,
ul#menu-footer-docs-de {
	list-style: none;
	display: flex;
	align-items: flex-end;
	margin: 0px;
	padding: 0px;
	justify-content: flex-end;
}

ul#menu-footer-docs li,
ul#menu-footer-docs-de li {
	padding: 0px 10px;
	border-left: 1px solid #988a7f;
}
ul#menu-footer-docs a,
ul#menu-footer-docs-de a {
	transition: all 0.2s linear;
}
ul#menu-footer-docs a:hover,
ul#menu-footer-docs-de a:hover {
	color: #c37c4c;
}

.copy {
	padding: 0 10px;
}

.mailto {
	color: #c37c4c;
	transition: all 0.2s linear;
}

.flex {
	display: flex;
}

.mailing {
	color: white;
}

.mailing .donateb {
	float: right;
	margin-top: 10px;
}

.mc-field-group input {
	padding: 10px;
	margin-bottom: 15px;
	background: #ce966c;
	border: 0px;
	width: 100% !important;
	color: white;
}

input#mc-embedded-subscribe,
input.wpcf7-submit {
	background: #4b433e;
	padding: 10px;
	border: 0px;
	width: 200px;
	height: 42px;
	line-height: normal;
	color: white;
	border-radius: 6px;
	transition: all 0.2s ease;
}

input#mc-embedded-subscribe:hover,
input.wpcf7-submit:hover {
	background: #312c28;
}

.response {
	margin: 15px 0;
}

.wpcf7-text,
.wpcf7-textarea {
	width: 100%;
	color: whitesmoke;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
	border: 0px !important;
	padding: 0px !important;
}
.span.wpcf7-not-valid-tip {
	color: #9c0000 !important;
}

span.wpcf7-not-valid-tip {
	padding-top: 10px;
}

div.wpcf7-mail-sent-ok {
	border: 0px solid #398f14;
	padding: 0px;
	margin: 15px 0px;
}

.wpcf7-submit {
	line-height: 4rem;
	width: 50%;
	background: inherit;
	transition: all 0.2s linear;
}

.wpcf7-submit:hover {
	background: #cc7a41;
	border-color: white;
	cursor: pointer;
}

#mce-EMAIL {
	max-width: 90vw;
	width: 300px;
}

#map {
	height: 50vh;
	max-height: 600px;
	max-width: 960px;
	margin: 0 auto;
}
#contact {
	padding-bottom: 100px;
}

#contact.no-spacing {
	padding-bottom: 0;
}

#contact.no-spacing .formb {
	margin-bottom: 0;
}

.project_section_container .section_image {
	padding-top: 0px;
	padding-bottom: 50px;
}

.copyright {
	font-size: 1.2rem;
	color: whitesmoke;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.right {
	text-align: right;
	justify-content: space-between;
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	z-index: 0;
}

/*------------------------------------*\
    HOME PAGE
\*------------------------------------*/

.landing_image {
	width: 100%;
	height: 75vh;
	min-height: 500px;
	background: no-repeat center top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	/* display: flex; */
	/* align-items: center; */
	position: relative;
}

.donate_page_image {
	width: 100%;
	height: 400px;
	background: no-repeat center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	display: flex;
	align-items: center;
	background-color: #0b0505;
}

.landing_message {
	/* padding-bottom: 50px !important; */
	/* margin: 0px auto; */
	/* padding-right: 30px; */
	font-size: 2.2rem;
	color: #4a423e !important;
	font-family: Hudara-Font-Bold;
	color: white;
	max-width: 55%;
	position: relative;
	text-align: left;
	overflow: hidden;
	line-height: 3.8rem;
	left: 45%;
	top: 60%;
	/* margin: 0px auto; */
	/* bottom: calc(-70vh + 200px); */
}

.landing_message span.ti-wrapper {
	padding: 4px 0px 4px 10px;
	color: white !important;
	background-color: #4a423e78;
}

.ti-container {
	padding-left: 0px !important;
}

/* Animation */
.anim-typewriter {
	animation: typewriter 4s steps(44) 1s 1 normal both,
		blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter {
	from {
		width: 0;
	}
	to {
		width: 24em;
	}
}
@keyframes blinkTextCursor {
	from {
		border-right-color: rgba(255, 255, 255, 0.75);
	}
	to {
		border-right-color: transparent;
	}
}

/*
.slider {
	list-style: none;
	margin: 0px;
	padding: 0px;
	position: absolute;
	left: 50%;
}

.slider li {
	font-size: 2.5rem;
    line-height: 4rem;
	font-family: 'Hudara-Font-Bold';
}

.bx-wrapper{
	width: 970px;
	margin: 0px auto;
	padding-top: 200px;
}

.bx-controls {
	display: none;
}*/

.job {
	padding-top: 5px;
}

#image {
	position: relative;
}

.learn {
	position: absolute;
	bottom: 50px;
	width: 100%;
	text-align: center;
	color: white;
}

#abstract,
#about,
#work {
	display: flex;
}

#abstract {
	height: 100vh;
	max-height: 600px;
}

.amount_label {
	background-color: transparent;
	font-size: 1.15em;
	font-weight: 700;
	margin: 50px 0 15px !important;
	padding: 0 0 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	width: 100%;
}

#give-final-total-wrap {
	display: none;
}

form.give-form {
	margin-bottom: 100px !important;
}

.give-recurring-donors-choice label {
	font-size: 1.7rem !important;
}

.give-form legend {
	font-family: 'Hudara-Font-Bold';
}

.give-form-wrap {
	width: 100%;
}

#give-payment-mode-select,
#give_checkout_user_info,
#give_cc_address,
#give_cc_fields {
	margin-top: 50px;
}

.give-tooltip {
	display: none;
}

.give-text-input {
	color: black;
}

.give-form-title {
	display: none;
}

#give-amount,
span.give-currency-symbol {
	font-size: 2rem !important;
	border: 0px !important;
}

span.give-currency-symbol {
	background: inherit !important;
}

.single_page_title {
	padding-top: 50px;
}

.give-donation-level-btn,
.give-submit {
	background: #c37c4c;
	border: 0px solid #ccc;
	color: #fff;
	padding: 8px 10px;
	cursor: pointer;
	line-height: 1.2em;
	font-family: hudara-font-bold;
	font-size: 1.8rem;
	border-radius: 4px;
	width: 100%;
	height: 50px;
	transition: all 0.4s ease;
}

.give-donation-level-btn:hover::after {
	width: 100%;
}

.give-default-level,
.give-donation-level-btn:hover,
.give-submit:hover {
	background: #a5673e;
}

.form-row-wide {
	margin: 0px;
	width: 100%;
}

.form-row-last {
	float: left !important;
}

#give-donation-level-button-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

ul#give-donation-level-button-wrap li {
	flex-grow: 1;
	margin: 0 15px 5px 0;
}

.give-submit {
	font-size: 1.8rem;
	text-transform: uppercase;
	float: left;
	max-width: 200px;
	height: 50px;
	margin-top: 30px;
	letter-spacing: 1px;
}

#give-gateway-radio-list {
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
}

ul#give-gateway-radio-list li {
	padding-top: 10px !important;
}

.billing-country {
	height: 30px;
}

.give-form-wrap {
	margin-bottom: 50px;
}

#give-receipt {
	width: 100%;
	margin-bottom: 50px;
}

#about,
#work {
	align-items: center !important;
	height: 100vh;
	max-height: 600px;
}

#about {
	background: #c17e4c;
}

#work {
	background: whitesmoke;
}

.halfs {
	max-width: 1100px;
	width: 100%;
	height: 500px;
	margin: 0 auto;
}

.half {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.callout_container {
	margin: 0px;
	background: inherit;
	/* width: 60%; */
	padding: 50px;
	/* max-width: 600px; */
	text-align: left;
}

.half_image {
	background: no-repeat center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	filter: grayscale(1);
	opacity: 0.9;
	display: flex;
	align-items: center;
	transition: filter 0.4 ease;
}

.half_image:hover {
	filter: grayscale(0);
}

.white {
	background-color: white;
}
.orange {
	background-color: #c27d4d;
	color: white;
}
.brown {
	background-color: #4a423e;
	color: white;
}
.smoke {
	background-color: whitesmoke;
	color: #4a423e;
}
.dark_smoke {
	background-color: #eee;
}
.green {
	background-color: #4d6d52;
	color: white;
	text-align: center;
}
.gray {
	background-color: #ededed;
}

.abstract_container {
	text-align: left;
	padding: 60px 30px;
	color: #4a423e !important;
	font-size: 3rem;
	line-height: 4rem;
	max-width: 580px;
	margin: 0;
}

.synopsis_container {
	text-align: left;
	padding: 60px;
	max-width: 580px;
	font-size: 1.8rem;
	line-height: 2.4rem;
}

.monogram {
	height: 45px;
	margin-top: 20px;
	padding-left: 50px;
	transform: rotate(-12deg);
	z-index: auto;
}

.half_title,
.half_subtitle {
	margin-bottom: 15px;
}

.half_subtitle {
	line-height: 3rem;
	font-size: 2rem;
	margin-bottom: 20px !important;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/

.pattern {
	background-image: url('file:///Applications/MAMP/htdocs/hudara/wordpress/wp-content/themes/html5blank-stable/img/pattern.png');
	background-size: 35px;
	background-color: #c27d4d;
	margin-top: 0px;
	min-width: 100%;
	height: 50vh;
}

.page_head {
	height: 460px; /* used to be 50vh */
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 60px;
}

.head_image {
	display: none !important;
	width: 100vw;
	height: 75vh;
	background: no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: flex;
	align-items: center;
}

.page_title_container {
	max-width: 620px;
	margin: 0px auto;
	padding: 50px 20px;
	text-align: center;
}

.page-template-template-JoinIn .page_title_container {
	max-width: 100%;
}

.page-template-template-JoinIn .section_title {
	max-width: 940px;
	min-width: 0;
	margin: 0 auto 40px;
	line-height: 1.3;
	padding-top: 50px;
}

.donation_page_title_container {
	width: 700px;
	max-width: 900px;
	margin: 0px auto;
	text-align: left;
}

.page_title {
	color: white;
	font-family: 'Hudara-Font-Bold';
	font-size: 6rem;
	line-height: 6rem;
	margin: 0px;
}

.donate_page_title {
	color: white;
	margin: 0px;
	font-family: 'Hudara-Font-Bold';
	font-size: 8rem;
	line-height: 8rem;
}

.page_subtitle {
	font-size: 2rem;
	padding-top: 25px;
	line-height: 2.8rem;
}

.section_container {
	max-width: 940px;
	padding: 20px;
	padding-top: 0px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

#images-text img {
	height: 175px;
	object-fit: cover;
	width: 100%;
}

/* #images-text p {
	font-size: 16px;
  line-height: 1.2;
} */

#images-text .b-morelines__readmore-white_button {
	display: block;
	text-align: left;
}

#approach .section_container {
	padding-bottom: 60px;
}

#partnersb .section_container {
	padding-top: 50px;
}

.page-template-template-JoinIn #partnersb {
	display: none;
}

#advisors h3 {
	font-size: 1.8rem !important;
}

.advisors_info {
	padding-top: 15px !important;
}

.advisors_info p {
	margin: 10px 0px;
}

.section_title {
	padding-top: 30px;
	min-width: 100%;
	/* height: 100px; */
	/* text-transform: uppercase; */
	/* position: sticky; */
	/* top: 60px; */
	background: inherit;
	/* padding: 15px; */
	/* z-index: 1; */
	/* border: 0px solid #8a77737d; */
	/* border-right: 0px; */
	/* border-left: 0px; */
	/* opacity: .95; */
	line-height: 100px;
}

.section_title h2 {
	color: inherit !important;
	font-size: 3rem !important;
	opacity: 1;
}

.section_subtitle {
	min-width: 100%;
	font-size: 2rem;
	line-height: 3.2rem;
	padding-top: 0px;
}

.section-links {
	padding-top: 50px;
	margin: 0;
	list-style: none;
}

.section-links li {
	text-align: left;
	margin-bottom: 10px;
}

.section-links li a {
	color: #c37c4c;
}

.section-links li a:hover {
	border-bottom: 1px solid #c37c4c;
}

.text {
	min-width: 100%;
	padding-top: 25px;
	line-height: 2.4rem;
	text-align: left;
	min-height: auto !important;
}

.text a {
	color: var(--link-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	word-break: break-word;
}
.text a:hover {
	color: var(--link-hover-color);
}

.section_image {
	min-width: 100%;
	height: auto;
	padding-top: 50px;
}

.bw {
	margin-top: 25px;
	filter: grayscale(1);
}

.subsections_wrap + .section_subtitle {
	display: none;
}

.subsections_wrap,
.alm-reveal,
.alm-btn-wrap {
	max-width: 960px;
	padding: 20px;
	padding-top: 20px;
	padding-bottom: 60px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
}
#texts .subsections_wrap,
.alm-reveal {
	max-width: 980px;
	padding-bottom: 50px;
}

#approach .subsections_wrap {
	padding-top: 0px;
	padding-bottom: 100px;
}

.subsection_container,
.alm-btn-wrap {
	background: inherit;
	padding: 10px;
}

#approach .subsection_container {
	margin-bottom: 40px;
}

.portrait {
	padding: 20px !important;
}

.items_wrap h3 {
	padding-top: 0px;
}

.items_wrap {
	width: 60%;
}

.ilustration {
	width: 40%;
	max-width: 150px;
	padding-right: 15px;
}
.ilustration .far {
	background: #7da984;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50px;
	font-size: 2rem;
	color: whitesmoke;
}

.items_wrap .text {
	padding-top: 0px;
}

.items_wrap p {
	margin-top: 0px;
}

.long {
	display: none;
}

.contact_part {
	padding: 40px 20px;
	align-items: center;
	background: white !important;
	border-radius: 10px;
	border-bottom-left-radius: 0px;
}

.contact_part.logos.smoke {
	background: whitesmoke !important;
}

.formb {
	max-width: 900px;
	margin: 50px auto;
	text-align: center;
	padding-bottom: 50px;
}

.formb a {
	max-width: 200px;
	background: #c27e4c;
	/* border: 1px solid #c27e4c; */
	border-radius: 4px;
	padding: 10px 30px;
	font-family: 'Hudara-Font-bold';
	transition: all 0.2s linear;
	color: white !important;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.alm-load-more-btn {
	font-size: 2rem;
	padding: 0px !important;
	margin: 0px auto !important;
	border: 0px;
	border-bottom: 1px solid white;
	background: inherit;
	color: var(--link-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.alm-load-more-btn:hover {
	color: var(--link-hover-color);
}

.alm-btn-wrap {
	max-width: 900px;
	margin: 0px auto;
	padding-bottom: 50px;
}

.done {
	display: none;
}

.formb a:hover {
	background: #a5673e !important;
	color: white;
}

.two,
.alm-btn-wrap {
	width: 50%;
}
.four {
	width: 25%;
}
.three {
	width: 75%;
	padding-left: 50px;
}
.round {
	border-radius: 50%;
}
.third {
	width: 33%;
}

.logot {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	transition: all 0.3s ease;
	text-align: center;
	max-width: 160px;
	padding: 20px;
	padding-bottom: 40px;
	opacity: 0.8;
}

.logot:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.logob {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	transition: all 0.3s ease;
	text-align: center;
	max-width: 175px;
	padding: 20px;
}

.logob:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.logos {
	align-items: center;
	max-width: 100vw;
	justify-content: center;
	padding-bottom: 30px !important;
}

#partners .logos {
	padding-top: 0px !important;
	max-width: 1180px;
	padding-bottom: 50px !important;
}

.last {
	padding-bottom: 50px;
}

.full {
	width: 100vw !important;
}

.more {
	margin-top: 20px;
	transition: all 0.2s ease-in-out;
}

ul.give-donation-levels-wrap li {
	padding-top: 10px !important;
}

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

#projects .section_container {
	padding-bottom: 60px;
}
#projects {
	padding-bottom: 50px;
}

#ajax-load-more-2 {
	display: none;
}

.wmore {
	padding-top: 50px;
	padding-bottom: 50px;
}

.wmore a {
	color: var(--link-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.wmore a:hover {
	color: var(--link-hover-color);
}

.map {
	background-image: url(img/Hudara_map2.png);
	height: 550px;
	background-size: contain;
	max-width: 980px !important;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
}

.pin_wrap {
	position: absolute;
	display: flex;
}

.pin_wrap p {
	margin: 0px;
}

.pin_info a {
	color: var(--link-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.pin_info a:hover {
	color: var(--link-hover-color);
}

.pin:hover {
	cursor: pointer;
}

.pin_wrap:hover .pin_info {
	display: block;
}

.pin img {
	height: 30px;
}

.pin_info {
	border-radius: 3px;
	margin-left: 10px;
	font-size: 1.3rem;
	background: white;
	padding: 5px;
	opacity: 0.9;
	width: auto;
	max-width: 200px;
	display: none;
	transition: all 0.9s ease;
	z-index: 2;
}

.projects_wrapper {
	display: none;
	/* flex-direction: column; */
	/* margin-left: 40px; */
	padding-bottom: 50px;
	width: 100vw;
	max-width: 1180px;
	/* padding-left: 40px; */
	margin: 0px auto;
	flex-wrap: wrap;
	margin-top: 50px;
	padding: 20px;
}

.project_container {
	max-width: 50%;
	padding-right: 40px;
	padding: 20px;
	background: inherit;
	transition: all 0.2s ease;
	margin-bottom: 50px;
}

.project_container:hover {
	background: #e0e0e0;
}

.project_title {
	margin-top: 10px;
	font-family: Hudara-Font-Bold;
	font-size: 5rem;
	line-height: 5rem;
	letter-spacing: -2px;
}

.project_image,
.project_abstract {
	padding-top: 25px;
}

.project_image img {
	filter: grayscale(1);
	transition: all 0.2s ease;
}

.project_container:hover .project_image img {
	filter: grayscale(0.3);
}

.project_text h3 {
	margin-top: 20px;
}

.writtings_wrapper {
	display: flex;
}

.writting_container {
	width: 50%;
}

.image {
	max-width: 1300px;
	padding-top: 0px;
	margin: 0px auto;
}

.text_title {
	font-size: 2.7rem;
	font-family: hudara-font-bold;
	padding-bottom: 5px;
	padding-top: 10px;
	border-top: 0px solid #c17e4c;
}

.text_item {
	padding: 40px 20px 0px;
}

.alm-btn-wrap {
	padding: 50px auto;
	padding-bottom: 100px;
}

.text_title a:hover {
	opacity: 0.8;
}
  .author {
	line-height: 3rem;
}

/*------------------------------------*\
	SINGLES
\*------------------------------------*/

strong {
	font-family: 'Hudara-Font-Bold';
}

.project_location_tag {
	text-transform: uppercase;
	font-size: 1.8rem;
	color: #c17e4c;
	padding-bottom: 0px;
}

.project_page_head {
	padding-top: 110px !important;
	/* min-height: 30vh; */
	padding: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project_title_container {
	max-width: 940px;
	text-align: left;
	padding: 20px;
	color: inherit;
	width: 100%;
	padding-bottom: 0px;
}

.project_image_band {
	height: 500px;
	background: no-repeat center center;
	background-size: cover;
}

.project_section_container {
	max-width: 940px;
	padding: 20px;
	padding-top: 0px;
	padding-bottom: 100px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	text-align: left;
}

.project_text {
	line-height: 2.2rem;
}

.project_info {
	text-align: left;
}

.project_info p {
	border-top: 1px solid #c17e4c;
	padding-top: 10px;
}

.project_text p a {
	color: var(--link-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.project_text p a:has(> sup) {
	/* remove underline for reference number links in superscript */
	text-decoration: none;
}

.project_text p a:hover {
	color: var(--link-hover-color);
}

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

@font-face {
	font-family: 'Hudara-Font';
	src: url('fonts/GT-Pressura-Mono-Light.eot');
	src: url('fonts/GT-Pressura-Mono-Light.woff') format('woff');
}

@font-face {
	font-family: 'Hudara-Font-Bold';
	src: url('fonts/GT-Pressura-Mono-Bold.eot');
	src: url('fonts/GT-Pressura-Mono-Bold.woff') format('woff');
}

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

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

@media only screen and (max-width: 800px) {
	.current_page_item {
		font-family: Hudara-Font-Bold;
	}
	.current-menu-item a {
		border: 0px;
	}

	#ajax-load-more-2 {
		display: flex;
		flex-direction: column;
	}

	body.datenschutz .section_container,
	body.privacy .section_container {
		overflow: hidden;
	}

	h1 {
		font-size: 6rem;
	}

	#abstract,
	#about,
	#work,
	#donate {
		display: flex;
		flex-direction: column;
		height: auto;
		max-height: none;
	}

	.animated {
		font-family: Hudara-Font;
	}

	.round {
		max-width: 75% !important;
	}

	.logo-img {
		max-height: 30px;
	}

	.halfs {
		height: auto;
	}

	.half {
		width: 100%;
		min-height: 100vh;
	}

	.half_image {
		display: none !important;
	}

	.header_container {
		display: none !important;
	}

	.mobile_header_container {
		max-width: 1200px;
		margin: 0px auto;
		padding: 30px 20px;
		height: 60px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index: 100;
		background: inherit;
	}

	.animated a:before {
		content: '';
		position: relative;
		width: 0px;
		height: 0px;
		bottom: -4px;
		left: 0;
		background-color: white;
		visibility: hidden;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}

	.animated a:hover:before {
		visibility: none;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	.current-menu-item {
		border-bottom: 0px solid white;
		padding-bottom: inherit;
	}

	.logob {
		width: 50% !important;
	}

	.donateb {
		max-width: 200px;
		border: 1px solid whitesmoke;
		border-radius: 2px;
		padding: 10px 30px;
		font-family: 'Hudara-Font';
		transition: all 0.2s linear;
		margin: 0px;
		color: white;
	}

	.menu-item-477 {
		border: 0px !important;
	}

	.footer_container {
		flex-direction: column;
		background: no-repeat center center;
		background-size: contain;
	}

	.mailing {
		color: white;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#wellbeing .section_title {
		line-height: 4.4rem !important;
	}

	.abstract_container {
		padding: 20px;
		font-size: 2.3rem;
	}

	.half_footer {
		width: 100%;
	}
	.two,
	.four {
		width: 100%;
		padding: 20px;
	}
	.three {
		width: 100%;
		padding: 20px;
	}
	.footer_image {
		height: 75vh;
	}
	.footer_container {
		padding: 20px;
		align-items: center;
		text-align: center;
	}
	.half_footer {
		flex-direction: column;
		text-align: left;
		padding-top: 20px;
	}
	.section_container {
		padding: 30px;
	}

	.hamburger {
		font-size: 2.5rem;
		color: white;
	}

	.down {
		right: 0px !important;
	}

	.mobile_nav {
		width: 100vw;
		min-width: 100px;
		height: 100vh;
		position: absolute;
		top: 60px;
		right: -100vw;
		background: #c37c4c;
		color: white;
		transition: all 0.3s ease-in-out;
		z-index: -100;
	}

	.mobile_nav ul {
		list-style: none;
		margin: 0px;
		padding: 0px;
		font-size: 2rem;
	}

	.mobile_nav ul li {
		max-width: 100vw;
		text-align: left;
		margin: 0 20px;
		padding-bottom: 20px;
		padding-top: 20px;
		border-bottom: 1px solid whitesmoke;
		position: relative;
	}

	.menu-item-207 {
		width: 100% !important;
		border: 0px;
		max-width: 100% !important;
	}

	.mobile_nav ul li.lang-item-2 {
		float: left;
		border: 0;
	}

	.mobile_nav ul li.lang-item-5 {
		border: 0;
		float: left;
	}

	.lang-item-first {
		border: 0px;
	}
	/* .lang-item-de {margin: 0px !important;} */
	.section_title {
		top: 60px;
	}

	.contact_part {
		margin: 0px 20px;
	}

	ul#menu-footer-docs {
	}

	ul#menu-footer-docs li {
		padding-left: 10px;
	}

	.donate_page_image {
		background-size: cover;
	}
	.donate_page_title {
		padding: 20px;
		font-size: 5rem;
		line-height: 5rem;
	}

	.formw {
		width: 100%;
		padding: 0px;
	}
	.help {
		width: 100%;
		max-height: none;
		margin-top: 50px;
	}

	.bx-wrapper {
		margin-bottom: 60px;
	}
	.landing_image {
		background: no-repeat left top;
		background-position: -135px;
		height: 80vh;
		background-size: cover;
	}

	.landing_message {
		max-width: 100%;
		text-align: left;
		top: 50%;
		padding-left: 20px;
		left: 0px;
	}

	.landing_message span {
		background: none;
		line-height: inherit;
	}

	.projects_wrapper,
	.subsections_wrap {
		display: flex;
		margin-top: 0px;
		padding: 0px;
	}

	.project_container {
		max-width: 100%;
	}

	.map {
		display: none;
	}

	.project_title {
		font-size: 4rem;
		line-height: 4rem;
	}
	.project_page_head {
		padding: 0px;
	}

	.project_text {
		padding: 0px;
		padding-top: 20px;
	}

	.right {
		text-align: center !important;
		align-items: center;
		padding-top: 50px;
	}
	.donateb {
		float: left !important;
	}
	.desk {
		display: none;
	}
	.mobile {
		display: block;
	}
	.landing_message span {
		padding: 0px !important;
	}
}
@media only screen and (max-width: 480px) {
	.landing_image {
		height: 60vh;
	}

	.half {
		min-height: auto;
	}

	.footer_image {
		height: auto;
	}

	/* homepage containers adjustment */
	.abstract_container {
		font-size: 2.3rem;
		line-height: 3rem;
	}

	.abstract_container,
	.synopsis_container,
	.callout_container,
	.footer_message {
		padding: 30px;
	}

	.footer_image {
		background-position: bottom;
		background-size: 150%;
	}

	.footer_container {
		margin: 0px auto;
	}

	/* inner pages */
	.page_head {
		height: auto;
	}

	.page_title_container {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 360px;
		padding: 30px;
	}

	.page_title {
		font-size: 4rem;
		line-height: 4rem;
		max-width: 200px;
	}

	.section_subtitle {
		line-height: 2.8rem;
	}

	.section_subtitle p {
		margin-block-start: 0;
		margin-block-end: 0;
	}

	.section_image {
		padding-top: 30px;
	}

	.subsection_container.two {
		padding: 30px;
	}

	#mission .section_container {
		padding-bottom: 0;
	}

	#mission .subsection_container.two {
		padding-bottom: 0;
	}

	#mission .subsection_container.two p {
		margin-block-end: 0;
	}

	#mission .subsection_container.two .text {
		padding-top: 0;
	}

	#mission .subsections_wrap {
		padding-bottom: 30px;
	}

	#team .section_subtitle {
		text-align: left;
	}
	#team .subsection_container.two,
	#advisors .subsection_container.four {
		padding: 15px 30px;
	}

	#contact .subsection_container.four {
		/* center align contact image */
		text-align: center;
	}

	#contact .section_title {
		padding: 30px 0;
	}

	#contact .formb {
		padding-bottom: 0px;
	}

	#contact {
		padding-bottom: 50px;
	}

	#approach .section_container {
		padding-bottom: 30px;
	}

	#approach .subsections_wrap {
		padding-bottom: 30px;
	}

	#approach .subsection_container {
		margin-bottom: 0;
		padding-bottom: 0;
	}

	#wellbeing .wmore {
		padding-bottom: 0;
	}

	#projects {
		padding-bottom: 0;
	}

	#projects .section_container {
		padding-bottom: 30px;
	}

	#projects .alm-btn-wrap {
		padding-bottom: 50px;
	}

	.page-template-template-WhatWeDo #texts .alm-reveal {
		padding: 0;
	}

	.page-template-template-WhatWeDo #texts .subsection_container.two {
		padding-top: 0;
	}

	.page-template-template-WhatWeDo #texts .alm-btn-wrap {
		padding-bottom: 50px;
	}

	.donation_wrap {
		padding-top: 0 !important;
		margin-bottom: 0 !important;
	}

	form.give-form {
		margin-bottom: 30px !important;
	}

	.page-id-129 .help {
		margin-top: 0;
	}

	.page-id-129 .donation_wrap .four {
		padding: 0;
	}

	#give-form-255-1 .amount_label {
		margin-top: 20px !important;
	}

	/* Mobile typography */

	.half_title h1,
	.footer_message h1 {
		font-size: 4rem;
		line-height: 4rem;
	}

	.section_title {
		line-height: unset;
	}

	.project_page_head {
		padding-top: 70px !important;
	}

	.project_title_container {
		padding: 30px;
	}

	.project_section_container {
		padding: 0 30px 30px 30px;
	}

	.project_title_container {
		padding: 30px;
	}

	.project_section_container .section_image {
		padding-bottom: 0;
	}

	.project_section_container .project_info {
		padding: 0;
	}

	.project_section_container .project_text {
		padding-top: 0;
	}

	.project_text {
		word-wrap: break-word;
	}
}

@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 {
	background: inherit;
	border: 0px;
	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: 10px 5px 7px;
}
.sticky {
}
.bypostauthor {
}

a.anchor {
	display: block;
	position: relative;
	top: -60px;
	visibility: hidden;
}

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