/*
	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:400 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#000;
	font-family: 'Overpass', sans-serif;	
	overflow-x: hidden;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

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

ul {
	padding-left: 1em;
}


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

/* wrapper */
.wrapper {
	font-size: 2rem;
	overflow-x: hidden;
}

main {
	padding-top: 400px;
}


article, .article {
	max-width:1280px !important;
	width:95%;
	margin:0 auto;
	position:relative;
}



p a, article li a {
	color: hsla(177,100%,30%,1);
}

p a:hover, article li a:hover {
	/*color: hsl(310.7, 43.8%, 50%);*/
	color: #6E2B62;
	text-decoration: underline;
}


/* header */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 30;	
	padding-bottom: 0.5em;
	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);
}

.scrld .header {
	-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);
	background-color: #fff;
}

.header_row.row1 {
	display: flex;
	justify-content: space-between;
}

/* logo */
.logo {
	height: 280px;
	padding: 80px 0;
	transition: all 0.5s;
}

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

.logo-img {
	height: 100%;
	width: auto;
	/*transform: translateX(-21%);*/
}
/* nav */

header .nav {
	width: 60%;
}

header .nav ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}

header .nav > ul > li:first-of-type {
	display: none;
}

header .nav a {
	color: #75838E;
	font-size: 1.2em;
	padding: 0 0.25em;
	text-decoration: none !important;
}

header .nav a:hover, header .nav .current_page_item, header .nav li:not(.current_page_item) .sub-menu .current-menu-item > a, header .nav .current_page_parent > a, .nav > ul > li.current-menu-item > a {
	color: hsla(177,100%,35%,1);
}

header .menu-item-has-children:hover > a {
	border-bottom: 4px solid #00B0F9;
	color: #00B0F9;
}

header .nav > ul > li {
	position: relative;
}


header .nav > ul > li > a {
	z-index: 4;
	position: relative;
}

header .nav ul.sub-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	left: 0;
	top: 100%;
	padding: 0.5em 0 0.25em 0;
	background-color: #fff;
	border-bottom: 4px solid #00B0F9;
}

header .nav li:hover ul.sub-menu {
	display: flex;
}

header .nav .sub-menu a {
	padding: 0.25em 0.25em;
	white-space: nowrap;
	display: inline-block;
}



.menu_ico_ct {
	display: inline-block;
	position: relative;
	cursor: pointer;
	background-color: rgba(255,255,255,0);
	padding: 0px;
	z-index: 10;
	transition: all 0.5s;
	display: none;
}

.menuopen .menu_ico_ct {
	background-color: rgba(255,255,255,0);
}



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

.menu_icon_line {
	width: 100%;
	height: 4px;
	background-color: hsla(177,100%,25%,1);
	opacity: 1;
	transform-origin: center center;
	position: absolute;
	display: inline-block;
	transition: all 0.5s;
}

.menuopen .menu_icon_line {
	background-color: #6E2B62;
}

.menu_ico_ct:hover .menu_icon_line {
	/*background-color: hsl(200, 30%, 30%);*/
	background-color: #6E2B62;
}

.menu_icon .line1 {
	top: 5px;
}

.menu_icon .line2 {
	top: 15px;
}

.menu_icon .line3 {
	top: 25px;
}

.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%;
}





.head_meta {
	display: flex;
	align-items: flex-start;
}

.head_btn {
	color: #fff;
	background-color: #6E2B62;
	border-radius: 0 0 0.5em 0.5em;
	font-size: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10em;
	height: 3em;
	font-weight: 600;
	margin-right: 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.5s;
}

.scrld .head_btn {
	transform: translateY(-101%);
}

.head_btn:hover {
	background-color: #0D3A87;
}

/*
.lang_select {
	margin-left: 1em;
	font-size: 1.2em;
	font-weight: 600;
	text-shadow: 1px 1px 0 #fff;
}
*/

.lang_select {
	background-color: #fff;
	border-radius: 0 0 0.25em 0.25em;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 1em;
	height: 48px;
	font-weight: 600;
	font-size: 1.2em;
	padding: 0 1em;
}

.lang_select > span {
	padding: 0 0.25em;
}

.lang_select .active, .lang_select .current-lang a {
	color: #6E2B62;
}

.lang_select li {
	list-style: none;
}

.lang_select .lang-item-de::after {
	content: '/';
	margin: 0 0.25em;
}



/* footer */
.footer {
	background-color: #838E97;
	color: #fff;
	padding: 2em 0;
	font-size: 0.9em;
}

.footer_row {
	display: flex;
	justify-content: space-between;
}

.footer a {
	color: inherit;
}

.footer a:hover {
	color: hsla(177,100%,45%,1);
}

.footer .hlt_link {
	padding-top: 2em;
	padding-bottom: 2em;
}

.footer .hlt_link a {
	color: hsla(177,100%,45%,1);
	font-size: 1.1em;
	font-weight: 900;
}

.footer_col.col3 p:first-of-type {
	display: flex;
	align-items: flex-end;
	line-height: 1;
}

.footer_col.col3 p:first-of-type img {
	height: 1.6em;
	width: auto;
	margin-left: 0.5em;
}

.footer_col.col2 {
	max-width: min-content;
}

.footer_col.col2 ul {
	list-style: none;
	font-weight: bold;
	padding: 0;
}

.footer_col.col2 > ul {
	/*column-count: 2;*/
	column-gap: 2em;
}

.footer_col.col2 li {
	padding: 0.25em 0;
}

.footer_col.col2 a {
	white-space: nowrap;
}

.footer_col.col2 > ul > li {
	padding-bottom: 1em;
	display: block;
	width: 100%;
}

.footer_col.col2 .sub-menu {
	font-weight: normal;
}

.footer_col.col2 .menu-item-has-children {
	display: inline-block;
}




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

/* home */

.intro_fact {
	border-top: 4px solid;
	border-bottom: 4px solid;
	font-size: 1.4em;
	font-weight: 900;
	color: #0D3A87;
}

.intro_fact strong {
	color: #00B0F9;
	font-size: 3.6em;
	font-family: 'Permanent Marker', cursive;
	line-height: 1;
}

.stoerer_blog {
	position: absolute;
	right: 420px;
	top: -320px;
	font-size: 1.3em;
	width: 5.6em;
	height: 5.6em;
	line-height: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 100%;
	border: 4px solid;
	color: #6E2B62;
	z-index: 31;
	font-family: 'Permanent Marker', cursive;
	transition: all 0.5s;
}

.stoerer_blog:hover {
	color: #0D3A87;
	transform: rotate(-10deg);
}

.scrld .stoerer_blog {
	opacity: 0;
	pointer-events: none;
}

.home .upper_right_corner {	
	background-image: url(/wp-content/uploads/2024/04/axm_scr1.jpg), radial-gradient(circle, rgba(0,176,249,1) 0%, rgba(13,58,135,1) 100%);	
	/*background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 100px center, center center;*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	right: 0;
	width: calc(50% - 50px);
	height: 560px;
	z-index: 3;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 338px 100%);
}

.home-en .upper_right_corner {	
	background-image: url(/wp-content/uploads/2024/01/scrabble_home_en.png), radial-gradient(circle, rgba(0,176,249,1) 0%, rgba(13,58,135,1) 100%);	
}

.home_diag1 {
	width: 28em;
	height: 100%;
	position: absolute;
	left: calc(100% - 8em);
	top: 0;
	background: linear-gradient(213deg, hsla(177,100%,35%,0) -74.58%, hsla(177,100%,35%,0.2) 134.19%);
	transform: skewX(-30deg);
	transform-origin: top left;
	z-index: -1;
}

.home_diag2 {
	width: 50vw;
	height: 100%;
	position: absolute;
	left: calc(100% + 20em);
	top: 0;
	/*background: linear-gradient(207deg, hsla(177,100%,15%,1) 47.26%, hsla(177,100%,65%,1) 102.92%);*/
	background: linear-gradient(213deg, hsla(177,100%,35%,0.8) -74.58%, hsla(177,100%,35%,0.2) 134.19%);
	transform: skewX(-30deg);
	transform-origin: top left;
	z-index: -1;
}


.home_text2 {
	/*background-image: url(/wp-content/uploads/2023/12/scrb_bs1.png), url(/wp-content/uploads/2023/12/scrb_bs1.png);
	background-repeat: no-repeat, no-repeat;
	background-size: auto 6em, auto 6em;
	background-position: right top, 73% 85%;
	background-image: url(/wp-content/uploads/2024/01/scrb_axxos_wirr.png);*/
	background-repeat: no-repeat;
	background-size: auto 12em;
	background-position: 90% 25%;
	margin-bottom: 0;
}

.news_box_grid_wrapper {
	grid-template-columns: 1fr 1fr;
	grid-gap: 120px;
	display: grid;
	align-items: flex-end;
}

.news_box_item {
	display: flex;
	flex-direction: column;
}

.news_box_item .news_titel {
	font-size: 1.2em;
	font-weight: 700;
	border-bottom: 4px solid #0D3A87;
	padding-top: 0.2em;
	padding-bottom: 0.4em;
}

.news_box_item img {
	margin: 1em 0;
	height: 10em;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.news_box_item .news_more {
	font-weight: 700;
	font-size: 1.1em;
	color: #6E2B62;
	margin-top: 0.5em;
	transition: all 0.5s;
}

.news_box_item:hover .news_more {
	color: #0D3A87;
}



.news_box_item .news_more i {
	transition: all 0.5s;
	transform: translateX(0);
}

.news_box_item:hover .news_more i {
	transform: translateX(60%);
}

.home_prt1 {
	position: relative;
}

.home_prt1::before {
	content: '';
	width: 200%;
	height: 100vw;
	position: absolute;
	background-color: #fff;
	z-index: 0;
	bottom: 0;
	left: 50%;
	transform-origin: center bottom;
	transform: translateX(-65%) skewX(-30deg);
}

.home_prt1 img {
	position: relative;
	z-index: 3;
}

.testimonial_box {
	padding-right: 30%;
}

.testimonial_box.format2 {
	padding-right: 0;
	color: #0D3A87;
}

.testimonial_text {
	position: relative;
}

.testimonial_text::before {
	content: '«';
	font-family: 'Permanent Marker', cursive;
	font-size: 4em;
	position: absolute;
	top: -0.75em;
	left: -1em;
}

.testimonial_text::after {
	content: '»';
	font-family: 'Permanent Marker', cursive;
	font-size: 4em;
	position: absolute;
	bottom: -0.15em;
	right: -1em;
}


.testimonial_wrapper {
	
}

.testimonial_wrapper .testimonial_box {
	display: none;
	opacity: 0;
	transition: opacity 0.3s;
	padding: 0 5em;
}

.testimonial_wrapper .testimonial_box.active {
	opacity: 1;
}


.testimonial_wrapper > div > div:first-of-type {
	display: block;
}

.tm_nav_wrapper {
	padding: 0 5em;
	padding-top: 1em;
	display: flex;
	justify-content: center;
}

.tm_prev {
	margin-right: 1em;
	color: #838E97;
	cursor: pointer;
}

.nav_darkbg .tm_prev, .nav_darkbg .tm_next {
	color: #fff;
}

.tm_prev:hover {
	color: #6E2B62;
}

.tm_next {
	margin-left: 1em;
	color: #838E97;
	cursor: pointer;
}

.tm_next:hover {
	color: #6E2B62;
}

.tm_dot {
	cursor: pointer;
	display: inline-block;
	width: 1.2em;
	height: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tm_dot::before {
	content: '';
	display: inline-block;
	width: 0.4em;
	height: 0.4em;
	border-radius: 100%;
	background-color: #838E97;
	transition: all 0.5s;
}

.tm_dot:hover::before {
	background-color: #6E2B62;
}

.tm_dot.active::before {
	background-color: #0D3A87;
	width: 0.5em;
	height: 0.5em;
}

.nav_darkbg .tm_dot::before {
	background-color: #fff;
	opacity: 0.7;
}
.nav_darkbg .tm_dot.active::before {
	background-color: #fff;
	opacity: 1;
}

.home_block3 {
	position: relative;
}

.home_block3 article {
	position: relative;
}

.home_block3 article::before {
	content: '';
	z-index: 3;
	position: absolute;
	background-image: url(/wp-content/uploads/2024/01/scrb_cases.png);
	width: 12em;
	height: 8em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	bottom: 60px;
	left: 0;
}

.testimonial_corner_img1 {
	background-image: url(/wp-content/uploads/2024/01/Axxos_Home2.jpg);
	background-size: cover;
	background-position: center 10%;
	background-repeat: no-repeat;
	position: absolute;
	height: 50%;
	width: calc(50% - 300px);
	left: 0;
	top: 0;
	clip-path: polygon(0% 0%, 100% 0%, calc(100% - 350px) 100%, 0% 100%);
}

.testimonial_corner_img2 {
	background-color: rgba(0, 176, 249, 0.50);
	position: absolute;
	height: 50%;
	width: calc(50% - 300px);
	left: 0;
	bottom: 0;
	clip-path: polygon(0% 0%, calc(100% - 350px) 0%, 100% 100%, 0% 100%);
}



.download_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.6em 0.4em;
	min-height: 4em;
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
	color: #fff;	
	transition: all 0.5s;
}

.download_box > div {
	width: 80%;
	display: flex;
	flex-direction: column;
}

.download_box strong {
	font-weight: 900;
	font-size: 1.1em;
}

.download_box:hover {
	background-color: #fff;
	color: #0D3A87;
}


.download_box + .download_box {
	border-top: none;
}

.download_box i {
	color: #00B0F9;
	font-size: 2em;
}

.home_diag4 {
	height: 100vw;
	width: 50vw;
	position: absolute;
	bottom: 0;
	left: 90%;
	background: linear-gradient(213deg, rgba(217, 217, 217, 0.00) -74.58%, rgba(0, 176, 249, 0.46) 134.19%);
	transform: skewX(-30deg);
	transform-origin: left bottom;
}


/* expertise */

.expertisen_grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 4em 2em;
}

.exp_img img {
	width: 5.5em;
	height: 5.5em;
	object-fit: contain;
	object-position: center center;
	margin-bottom: -1em;
}

.exp_text .tx_large {
	color: #0D3A87;
	font-weight: 700;
}

.exp_text .exp_teasertext * {
	hyphens: auto;
}

.exp_teaser_box {
	padding-right: 2em;
	padding-bottom: 2em;
}

.exp_teaser_box .tx_large {
	color: #0D3A87;
}

.exp_intro_corner {
	position: relative;
}

.exp_intro_img img {
	position: absolute;
	left: 0;
	top: -250px;
	height: auto;
	width: 40vw;
	max-width: none;
}

.diag_wrapper {
	position: relative;
}

.exp_diag1 {
	height: 150vh;
	width: 600px;
	position: absolute;
	bottom: auto;
	top: 0;
	left: auto;
	right: -300px;
	background: linear-gradient(211deg, rgba(0, 176, 249, 0.46) 36.16%, rgba(217, 217, 217, 0.00) 80%);
	transform: skewX(-30deg);
	transform-origin: right top;
	z-index: -1;
}

.exp_scrb2 {
	position: absolute;
	z-index: 4;
	right: -8em;
	bottom: 2em;
	height: 6em;
	width: auto;
	pointer-events: none;
}

.exp_diag2 {
	height: 60vw;
	width: 600px;
	position: absolute;
	bottom: -2px;
	left: calc(50% + 140px);
	 background: rgb(0,176,249);
background: -moz-linear-gradient(0deg, rgba(0,176,249,0.3) 0%, rgba(217,217,217,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,176,249,0.3) 0%, rgba(217,217,217,0) 100%);
background: linear-gradient(0deg, rgba(0,176,249,0.3) 0%, rgba(217,217,217,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00b0f9",endColorstr="#d9d9d9",GradientType=1); 
	transform: skewX(30deg);
	transform-origin: left bottom;
	z-index: -2;
}

.exp_diag3 {
	height: 60vw;
	width: 600px;
	position: absolute;
	bottom: -2px;
	left: calc(50% + 540px);
	background: linear-gradient(207deg, #00B0F9 47.26%, #0D3A87 102.92%);
	transform: skewX(-30deg);
	transform-origin: left bottom;
	z-index: -1;
	pointer-events: none;
}


.exp_kontakt_box {
	margin-left: 3em;
	border-top: 4px solid #0D3A87;
	border-bottom: 4px solid #0D3A87;
}

.exp_kontakt_box p {
	margin: 0.4em 0;
}

.exp_kontakt_box strong {
	display: inline-block;
	margin-top: 0.5em;
}

/* cluster */

.single-cluster main {
	padding-bottom: 4em;
}

.single-cluster .exp_diag1, .single-post .exp_diag1 {
	height: 150vh;
	bottom: auto;
	top: 0;
	left: auto;
	right: -300px;
	transform-origin: right top;
	background: linear-gradient(211deg, rgba(0, 176, 249, 0.46) 36.16%, rgba(217, 217, 217, 0.00) 80%);
}

.single-cluster .exp_diag2 {
	bottom: -4.2em;
	left: calc(50% + 140px);
	opacity: 0.5;
}

.single-cluster .exp_diag3 {
	bottom: -4.2em;
	left: calc(50% + 640px);
	z-index: -3;
}

.single-cluster .exp_scrb2 {
	right: auto;
	left: calc(50% + 640px);
	height: 8em;
}

.cluster_intro_wrapper {
	display: flex;
}

.cluster_intro_text {
	flex-grow: 1;
	flex-basis: 65%;
}

.cluster_intro_image {
	flex-grow: 1;
	flex-basis: 35%;
	position: relative;
	pointer-events: none;
}

.cluster_intro_image img {
	position: absolute;
	left: 3em;
	top: -250px;
	height: auto;
	width: 40vw;
	max-width: none;
}

.fda-services .cluster_intro_image img {
	top: -450px;
}

.cluster_item_wrapper {
	padding: 3em 0 0 0;
}

.cluster_item_wrapper .exp_img {
	padding-bottom: 0.6em;
}

.single-cluster .tx_large {
	color: #0D3A87;
}

.cluster_item_inner {
	display: flex;
}

.cluster_item_text {
	flex-grow: 1;
	flex-basis: 65%;
}

.cluster_item_contact {
	flex-grow: 1;
	flex-basis: 35%;
	position: relative;
}

.cluster_more span {
	font-weight: 700;
	font-size: 1.1em;
	color: #6E2B62;
	margin-top: 0.5em;
	transition: all 0.5s;
}

.cluster_more:hover span {
	color: #0D3A87;
}



.cluster_more span i {
	transition: all 0.5s;
	transform: translateX(0) translateY(10%);
}

.cluster_more:hover span i {
	transform: translateX(60%) translateY(10%);
}

.exp_kontakt_wrapper {
	margin-left: 3em;
	border-top: 4px solid #0D3A87;
	border-bottom: 4px solid #0D3A87;
	margin-top: 1em;
}

.exp_kontakt_wrapper a {
	color: inherit;
}

.exp_kontakt_wrapper p:first-of-type {
	margin-top: 0.5em;
}

.exp_kontakt_wrapper p:last-of-type {
	margin-bottom: 0.5em;
}


/* team */

#ueber_head .exp_diag3 {
	transform: skewX(30deg);
	transform-origin: top left;
	bottom: auto;
	top: 0;
	left: calc(50% + 140px);
	height: 150vh;
	width: 70vw;
	background: linear-gradient(30deg, #00B0F9 50%, #0D3A87 100%);
}

#ueber_head .exp_scrb2 {
	right: 2em;
	bottom: auto;
	top: 300px;
}

#diag_team {
	position: relative;
}

#diag_team .exp_diag2 {
	transform: skewX(-30deg);
	left: calc(50% - 640px);
}

#diag_team .exp_scrb2 {
	height: 8em;
	z-index: 1;
	right: 4em;
	bottom: -2em;
	pointer-events: none;
}

.team_wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2em;
	z-index: 2;
	padding-bottom: 2em;
	position: relative;
}

.ovl_on .team_wrapper {
	position: unset;
}

.team_teaser {
	cursor: pointer;
}

.team_teaser:hover .team_name {
	color: #00B0F9;
}

.team_img {
	width: 100%;
	padding-top: 125%;
	position: relative;
	overflow: hidden;
}

.team_img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
	transform: scale(1);
}

.team_img img:nth-of-type(2){
	opacity: 0;
}

.team_teaser:hover .team_img img:nth-of-type(2) {
	opacity: 1;
}

.team_text {
	padding: 1em 0;
	display: flex;
	flex-direction: column;
	line-height: normal;
}

.team_name {
	font-size: 1.2em;
	font-weight: 700;
	transition: all 0.5s;
}

body.ovl_on {
	overflow: hidden;
}

.team_ovl {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 40;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
}

.team_ovl.active {
	opacity: 1;
	pointer-events: auto;
}

.team_ovl_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
}

.team_ovl_inner {
	position: relative;
	width: 95%;
	max-width: 1000px;
	background-color: #fff;
	z-index: 5;
	height: 94vh;
	/*overflow-y: auto;*/
	padding-left: 3em;
	/*padding-top: 5em;*/
	padding-bottom: 0;
	overflow: hidden;
}

.team_ovl_inner::after {
	content: '';
	width: 20em;
	height: 100vh;
	position: absolute;
	left: 40%;
	bottom: 0;
	opacity: 0.6;
	background: linear-gradient(211deg, rgba(217, 217, 217, 0.00) 36.16%, rgba(0, 176, 249, 0.46) 90.45%);
	transform: skewX(-30deg);
	transform-origin: bottom left;
	z-index: -1;
}

.team_ovl_head {
	position: relative;
	height: 2.5em;
}

.team_ovl .head_btn {
	position: absolute;
	top: 0;
	width: 70%;
	max-width: 16em;
	pointer-events: none;
	height: auto;
	padding: 0.75em 1.5em;
	line-height: normal;
	transform: none !important;
	display: none;
}

.team_ovl .ico_close {
	position: absolute;
	width: 2em;
	height: 2em;
	background-color: #fff;
	right: 0.5em;
	top: 0.25em;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}


.team_ovl .ico_close::before {
	content: '';
	width: 1.5em;
	height: 3px;
	position: absolute;
	background-color: #6E2B62;
	transform: rotate(45deg);
}

.team_ovl .ico_close::after {
	content: '';
	width: 1.5em;
	height: 3px;
	position: absolute;
	background-color: #6E2B62;
	transform: rotate(-45deg);
}

.team_ovl .ico_close:hover::before, .team_ovl .ico_close:hover::after {
	background-color: #00B0F9;
}

.team_ovl_content_wrapper {
	max-height: calc(94vh - 5em);
	overflow-y: auto;
	z-index: 2;
	min-height: 100%;
}

.team_ovl_cols {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	grid-gap: 2em;
	
}

.team_ovl_img {
	margin-bottom: 2em;
}

.team_ovl_name {
	font-size: 1.3em;
	font-weight: 700;
	color: #0D3A87;
}

.team_ovl_email {
	font-weight: bold;
}

.team_ovl_email a:hover {
	color: #00B0F9;
}


.team_ovl_linkedin {
	padding-top: 0.5em;
	display: inline-block;
}

.team_ovl_linkedin img {
	height: 1em;
	width: auto;
}

.team_ovl_cols .col2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.team_ovl_cols .col2 .col_inner {
	padding-right: 3em;
	padding-bottom: 1.2em;
}

.team_ovl_scrabble {
	position: relative;
	pointer-events: none;
	transition: all 0.5s;
	opacity: 1;
	overflow: hidden;
	margin-right: -3em;
	margin-bottom: -400px;
}

.team_ovl_scrabble img {
	height: auto;
	transform: scale(1.35);
}

.team_ovl.fbox_on .team_ovl_scrabble {
	opacity: 0;
}

.team_ovl_folds {
	padding-bottom: 2.5em;
	min-height: calc(400px + 2.5em);
}

.foldbox_wrapper {
	/*padding-bottom: 1em;
	padding-right: 1em;*/
}

.foldbox_item {
	/*padding: 2em 0;*/
}

.foldbox_item::before {
	content: '';
	position: relative;
	width: 4em;
	height: 0.2em;
	background-color: hsla(177,100%,25%,1);
	display: inline-block;
}

.foldbox_head {
	position: relative;
	font-size: 1.2em;
	padding-top: 0.35em;
}

.foldbox_head span {
	position: relative;
	cursor: pointer;
	display: inline-block;
	cursor: pointer;
	font-weight: 700;
	color: hsla(177,100%,25%,1);
}

.foldbox_head span:hover {
	/*color: hsl(310.7, 43.8%, 50%);*/
	color: #6E2B62;
}

.foldbox_head i {
	transition: all 0.5s;
	position: absolute;
	right: -1.5em;
	transform: rotate(0);
	transition: transform 0.5s;
}

.foldbox_item.active .foldbox_head i {
	transform: rotate(180deg);
}

.foldbox_content > ul:first-child {
	margin-top: 0;
}

#werte_ct article {
	z-index: 2;
}

#werte_head {
	position: relative;
}

#werte_head .exp_scrb2 {
	bottom: auto;
	width: calc(50vw - 80px);
	height: auto;
	right: -120px;
	top: 0;
	transform: translateY(-30%);
}

#werte_diag {
	position: relative;
}

#werte_diag .exp_diag2 {
	z-index: 1;
	left: calc(50% + 600px);
}

#werte_diag .exp_scrb2 {
	right: 8em;
	bottom: -2em;
	height: 8em;
}




#se_diag .exp_diag2 {
	left: calc(50% + 360px);
}


#referenzen_head {
	top: -400px;
}

#referenzen_head .exp_diag3 {
	transform: skewX(30deg);
	transform-origin: top left;
	bottom: auto;
	top: 0;
	left: calc(50% + 540px);
	height: 100vh;
	width: 70vw;
	background: linear-gradient(213deg, hsla(177,100%,35%,0.8) -74.58%, hsla(177,100%,35%,0.2) 134.19%);
}

#referenzen_head .exp_scrb2 {
	right: 4em;
	height: 10em;
	top: 40vh;
}

#referenzen_diag .exp_diag3 {
	transform-origin: bottom right;
	top: auto;
	bottom: -2em;
	left: auto;
	right: calc(50% + 600px);
	transform: skew(30deg);
	opacity: 0.5;
	background: linear-gradient(213deg, hsla(177,100%,35%,0) -74.58%, hsla(177,100%,35%,0.2) 134.19%)
}

#referenzen_diag .exp_scrb2 {
	right: calc(50% + 700px);
	left: auto;
	height: 6em;
	bottom: 20vh;
}

#cases article {
	position: relative;
	z-index: 1;
}

#cases_diag {
	position: relative;
	pointer-events: none;
}

#cases_diag .exp_diag2 {
	z-index: 0;
	transform: skew(-30deg);
	height: 200vh;
	left: calc(50% - 140px);
	width: 800px;
}

#aktuelles_head {
		top: -400px;
	}


#aktuelles_head .exp_diag3 {
	transform: skewX(30deg);
	transform-origin: top left;
	bottom: auto;
	top: 0;
	left: calc(50% + 240px);
	height: 150vh;
	width: 70vw;
	background: linear-gradient(0deg, #00B0F9 50%, #0D3A87 100%);
}

#aktuelles_head .exp_scrb2 {
	right: calc(50% - 640px);
	top: 50vh;
}

#aktuelles_diag {
	position: relative;
	pointer-events: none;
}

#aktuelles_diag .exp_diag2 {
	z-index: 0;
	transform: skew(-30deg);
	height: 200vh;
	left: calc(50% + 140px);
}

#aktuelles_diag .exp_scrb2 {
	right: calc(50% - 700px);
	left: auto;
	height: 6em;
	bottom: 10vh;
}

#kontakt article {
	z-index: 2;
	position: relative;
}

#kontakt_diag {
	position: relative;
	pointer-events: none;
}

#kontakt_diag .exp_diag2 {
	z-index: 0;
	transform: skew(-30deg);
	height: 200vh;
	left: calc(50% + 140px);
	background: linear-gradient(213deg, hsla(177,100%,35%,0.8) -74.58%, hsla(177,100%,35%,0.2) 134.19%);
}

#kontakt_diag .exp_scrb2 {
	right: calc(50% - 700px);
	left: auto;
	height: 8em;
	bottom: 640px;
}

/* posts */

.post-navigation a {
	color: #0D3A87;
	display: inline-block;
}

.post-navigation a:hover {
	color: #6E2B62;
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	padding-bottom: 2em;
	padding-top: 2em;
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation .nav-links > div:first-of-type.nav-next {
	width: 100%;
}

.post-navigation .nav-previous i {
	margin-left: -1.3em;	
	margin-right: 0.2em;
}

.post-navigation .nav-next i {
	margin-right: -1.3em;	
	margin-left: 0.2em;
}

/* referenzen */

.referenzen_grid_wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.ref_item_wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 60%;
}

.ref_item_inner {
	padding: 2em;
	position: absolute;
	width: 100%;
	height: 100%;
	filter: grayscale(1) opacity(0.6);
	transition: all 0.5s;
	-webkit-box-shadow: 0 0 1.2em 0 rgba(0,0,0,0);
	box-shadow: 0 0 1.2em 0 rgba(0,0,0,0);
}

.ref_item_wrapper:hover .ref_item_inner {
	filter: grayscale(0) opacity(1);
	-webkit-box-shadow: 0 0 1.2em 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 1.2em 0 rgba(0,0,0,0.2);
}

.ref_item_inner img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center center;
}


/*------------------------------------*\
    COMPLEX
\*------------------------------------*/

.nl_form_wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1em;
}

.nl_form_wrapper p {
	display: contents;
}

.nl_col_full {
	grid-column: span 2;
}

.foldbox_content {
	/*padding: 1em 0;*/
	display: none;
}

.nl_hinweis {
	color: #999;
}

.wpcf7-submit {
	color: #fff;
	background-color: #6E2B62;
	border-radius: 0.5em;
	border: none;
	font-size: 0.8em;
	font-weight: 600;
	margin-right: 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.5s;
	padding: calc(.8em + 2px) calc(1.333em + 2px) calc(.667em + 2px) calc(1.333em + 2px);
}

.wpcf7-submit:hover {
	background-color: #00B0F9;
}

.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	margin: 0 0 1em 0;
	padding: 0.5em 1em;
	font-weight: bold;
	color: #fff;
	background-color: rgba(101,177,0,1.00);
}


/*------------------------------------*\
    FORMS
\*------------------------------------*/

.wpcf7-text {
	font-family: 'Overpass', sans-serif;
	padding: 0.5em;
	padding-bottom: 0.25em;
	border: 1px solid;
	line-height: 1;
	width: 100%;
	background-color: #fff;
}


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

h2 {
	color: hsla(177,100%,25%,1);
	font-size: 2.1em;
	font-weight: 900;
}

.single h2 {
	max-width: 1000px;
}

h3 {
	color: hsla(177,100%,25%,1);
	font-size: 1.6em;
	font-weight: 700;
}

.intro_text {
	color: hsla(177,100%,25%,1);
	font-size: 1.8em;
	font-weight: 900;
	line-height: normal;
}

.intro_text strong {
	color: #6E2B62;
	font-family: 'Permanent Marker', cursive;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.tx_large {
	font-size: 1.2em;
}

.wp-block-button__link {
	color: #fff;
	background-color: #6E2B62;
	border-radius: 0.5em;
	font-size: 0.8em;
	font-weight: 600;
	margin-right: 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.5s;
	padding: calc(.8em + 2px) calc(1.333em + 2px) calc(.667em + 2px) calc(1.333em + 2px);
}

.wp-block-button__link:hover {
	background-color: hsla(177,100%,35%,1);
	color: #fff;
}







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


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

	main {
		padding-top: 300px;
	}
	
	.wrapper {
		font-size: 1.8rem;
	}
	
	article, .article {
		max-width: 1000px;
	}
	
	.logo {
		height: 200px;
		padding: 60px 0;
	}
	
	.logo-img {
		transform: none;
	}
	
	.home .upper_right_corner {
		height: 304px;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 305px 100%);
	}
	
	.stoerer_blog {
		right: 100px;
		top: 40px;
	}
	
	.intro_text {
		font-size: 1.4em;
	}
	
	.lang_select {
		height: 43px;
	}
	
	.footer_col.col1, .footer_col.col3 {
		min-width: max-content;
	}
	
	.footer_col.col1 {
		padding-right: 3em;
	}
	
	.fda-services .cluster_intro_image img {
		top: -250px;
	}
	
}

@media only screen and (max-width : 1200px)  {
	
	.wrapper {
		font-size: 1.6rem;
	}
	
	article, .article {
		max-width: 900px;
	}
	
	.home .upper_right_corner {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 273px 100%);
	}
	
	.footer_row.row1 {
		display: grid;
		grid-template-columns: 1fr 2fr;
	}
	
	.footer_row.row1 .col3 {
		grid-column: span 2;
	}
	
	header .nav {
		width: 70%;
	}
	
	.news_box_grid_wrapper {
		grid-gap: 3em;
	}
	
	.exp_intro_img img {
		top: -50px;
	}
	
	.exp_scrb2 {
		bottom: 0;
		right: 50vw;
		transform: translateX(50%);
		height: 4.5em;
	}
	
	#ueber_head .exp_scrb2 {
		right: 6em;
		top: 250px;
	}
	
	#werte_head .exp_scrb2 {
		width: 50vw;
		right: -65px;
	}
	
	#referenzen_head .exp_scrb2 {
		right: 8em;
		bottom: 24em;
	}
	
	.single-cluster .exp_diag1, .single-post .exp_diag1 {
		opacity: 0.4;
	}
	
	.cluster_intro_image img, .fda-services .cluster_intro_image img {
		top: -100px;
	}
	
	.single-case .exp_diag1 {
		opacity: 0.4;
	}
	
}

@media only screen and (max-width : 1040px)  {
	
	.team_ovl_inner {
		padding-left: 3vw;
	}
	
	.team_ovl_scrabble{
		margin-bottom: -39vw;
	}
	
	.post-navigation .nav-links {
		padding-left: 1.5em;
		padding-right: 1.5em;
	}
	
	
}


@media only screen and (max-width : 781px)  {
	
	main {
	padding-top: 100px;
	}
	
	.home .upper_right_corner {
		background-size: 120% auto;
		background-repeat: no-repeat;
		background-position: center center, center center;
		position: relative;
		top: 100px;
		right: auto;
		width: 100%;
		height: 40vw;
		z-index: 3;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	
	.header {
		padding-bottom: 0;
	}
	
	header .nav {
		width: 100%;
	}
	
	.stoerer_blog {
		right: 1em;
		top: -3em;
	}
	
	.intro_text {
		padding-top: 2em;
	}
	
	.intro_facts > div:nth-of-type(2), .intro_facts > div:nth-of-type(4)  {
		display: none;
	}
	
	.intro_facts > div:nth-of-type(1), .intro_facts > div:nth-of-type(3)  {
		border-bottom: none;
	}
	
	.home_text2 {
		background-position: 90% 103%;
	}
	
	.home_diag2 {
		opacity: 0.3;
	}
	
	.footer_row.row1 .col1 {
		order: 4;
	}
	
	.footer_row.row1 .col2 {
		order: 2;
		grid-column: span 2;
	}
	
	.footer_row.row1 .col3 {
		order: 6;
		grid-column: span 1;
	}
	
	.head_meta .head_btn {
		display: none;
	}
	
	.header_inner.article {
		width: 100%;
	}
	

	
	.header_row.row1 {
		width: 95%;
		margin: 0 auto;
		align-items: center;
		
	}
	
	.header_row.row1 .logo {
		order: 1;
		flex-basis: 33%;
		flex-shrink: 0;
	}
	
	.header_row.row1 .head_meta_wrapper {
		order: 2;
		flex-basis: 34%;
		display: flex;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.header_row.row1 .menu_ico_ct {
		order: 3;
		flex-basis: 33%;
		display: flex;
		justify-content: flex-end;
		flex-shrink: 0;
	}
	
	.lang_select {
		margin-left: 0;
	}
	
	.logo {
		height: 100px;
		padding: 20px 0;
	}
	
	.scrld .logo {
		height: 60px;
		padding: 10px 0;
	}
	
	.header_row.row2 {
		position: absolute;
		width: 100%;
		left: 0;
	}
	
	
	.menu_ico_ct {
		display: inline-block;
	}
	
	
	header {
		background-color: #fff;
	}
	
	.menuopen header {
		z-index: 50;
	}
	
	header .nav {
		position: absolute;
		width: 100%;
		left: 0;
		padding: 1em;
		background-color: #fff;
		/*border-bottom: 4px solid hsl(310.7, 43.8%, 50%);*/
		border-bottom: 4px solid #6E2B62;
		max-height: calc(100vh - 100px);
		overflow-y: scroll;
		transform: translateX(105%);
		transition: all 0.5s;
	}
	
	.menuopen header .nav {
		transform: translateX(0%);
	}
	
	header .nav ul {
		flex-direction: column;
		line-height: normal;
	}
	
	header .nav > ul > li {
		padding-top: 0.5em;
		padding-bottom: 0.5em;
		border-bottom: 1px solid #ccc;
		position: relative;
	}
	
	header .nav > ul > li > a {
		font-weight: 700;
	}
	
	header .nav > ul > li.menu-item-has-children::after {
		content: '+';
		font-weight: 200;
		font-size: 2em;
		width: 1em;
		height: 1em;
		padding-top: 0.15em;
		display: flex;
		position: absolute;
		background-color: #75838E;
		color: #fff;
		right: 0;
		top: 0.125em;
		justify-content: center;
		align-items: center;
		line-height: 1;
	}
	
	header .nav > ul > li.show_sub.menu-item-has-children::after {
		content: '-';
	}
	
	header .nav li:hover ul.sub-menu {
		display: none;
	}
	
	
	
	header .nav ul.sub-menu {		
		position: relative;
		border-bottom: none;
		padding-left: 1.2em;
		font-size: 0.9em;
	}
	
	header .nav li.show_sub ul.sub-menu {	
		display: flex;
	}
	
	.mob_no {
		display: none !important;
	}
	
	.mob_reverse {
		flex-direction: column-reverse;
	}
	
	:where(.wp-block-columns) {
		margin-bottom: 0 !important;
	}
	
	
	.home_block3 article::before {
		bottom: -6em;
		left: auto;
		right: 3em;
	}
	
	.testimonial_box, .testimonial_box.format2 {
		padding-right: 15%;
		padding-left: 15%;
	}
	
	
	
	.testimonial_corner_img1 {
		position: relative;
		height: 40vw;
		clip-path: none;
		width: 100%;
		background-position: center center;
	}
	
	.exp_intro_img img {
		position: relative;
		top: auto;
		width: 100%;
		left: auto;
		height: 50vw;
		object-fit: contain;
		object-position: center center;
	}
	
	.expertisen_grid {
		grid-template-columns: 1fr 1fr;
	}
	
	#ueber_head .exp_scrb2 {
		display: none;
	}
	
	.team_wrapper {
		grid-template-columns: 1fr 1fr;
	}
	
	#werte_head .exp_scrb2 {
		display: none;
	}
	
	#referenzen_head .exp_scrb2 {
		display: none;
	}
	
	.referenzen_grid_wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.single-cluster .exp_diag1, .single-post .exp_diag1 {
		width: 60vw;
		height: 300vw;
		right: -120vw;
	}
	
	.cluster_intro_wrapper {
		flex-direction: column-reverse;
	}
	
	.cluster_intro_image {
		flex-basis: 100%;
		display: flex;
		justify-content: center;
	}
	
	.cluster_intro_image img, .fda-services .cluster_intro_image img {
		top: 0;
		position: relative;
		width: 80vw;
		max-width: 500px;
		left: auto;
	}
	
	.cluster_item_inner {
		flex-direction: column;
	}
	
	.exp_kontakt_wrapper {
		margin-left: 0;
		margin-top: 0;
	}
	
	.single-case .exp_diag1 {
	height: 600vw;
	right: -90vw;
	width: 60vw;
	}
	
	.ueber-uns .exp_diag2, .ueber-uns .exp_diag3, .about-us .exp_diag2, .about-us .exp_diag3 {
		display: none;
	}
	
	.team_ovl_inner {
		height: 86vh;
	}
	
	.diag_wrapper {
		overflow-x: hidden;
		position: absolute;
		width: 100vw;
		left: 0vw;
		top: 0;
		height: 400vw;
		pointer-events: none;
	}
	
	.diag_wrapper.mob_bottom {
		top: auto;
		bottom: 0;
	}
	
	
	.page-id-781 .diag_wrapper {
		/*width: 100%;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		background-color: rgba(255,0,0,0.4);
		height: 300vw;*/
	}
	
	#cases > div {
		position: relative;
	}
	
	#cases_diag {
		position: absolute;
		top: auto;
		bottom: 0;
	}
	
	.aktuelles main, .news main {
		position: relative;
	}
	
	#aktuelles_diag {
		position: absolute;
		top: auto;
		bottom: 0;
	}

	
	
}


@media only screen and (max-width : 560px)  {
	
	
	h2 {
		font-size: 1.8em;
	}
	
	.footer_col.col2 > ul {
		column-count: auto;
	}
	
	.footer_row.row1 {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 2em;
	}
	
	.footer_row.row1 .col1 {
		grid-row: span 2;
	}
	
	.footer_row.row1 .col2 {
		grid-column: auto;
	}
	
	.news_box_grid_wrapper {
		grid-template-columns: 1fr;
	}
	
	.news_box_item img {
		height: 40vw;
	}
	
	.expertisen_grid {
		grid-template-columns: 1fr;
	}
	
	.team_ovl_inner {
		padding-right: 3vw;
	}
	
	.team_ovl_cols {
		grid-template-columns: 1fr;
	}
	
	.team_ovl {
		transition: none;
		pointer-events: auto;
		opacity: 1;
		display: none;
	}
	
	.team_ovl.active {
		display: flex;
	}
	
	.team_ovl_img {
		margin-bottom: auto;
	}
	
	.team_ovl_scrabble {
		margin-bottom: auto;
		margin-right: auto;
	}
	
	.team_ovl_cols .col2 .col_inner {
		padding-right: 0;
	}
	
	.team_ovl.fbox_on .team_ovl_scrabble {
		opacity: 1;
	}
	
	.referenzen_grid_wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.nl_col_half {
		grid-column: span 2;
	}
	
	.cluster_intro_image img {
		width: 100vw;
	}
	
	.testimonial_text::before, .testimonial_text::after {
		font-size: 3em;
	}
	
	.testimonial_wrapper .testimonial_box {
		padding: 0 3.5em;
	}
	
	.tm_nav_wrapper {
		font-size: 1.3em;
	}
	
}





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