/*
**	Container(s)
*/

/*
** Media query breakpoints
*/

/*
** Colors
*/

/*
** Fonts
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

/*
* DO NOT EDIT: if resets needed add to sass/content-elements/resets.scss
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	background-color: #F6F4F5;
	color: #272C34;
	font-family: "inter-variable", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
}

* {
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	width: 100%;
}

section,
.content-wrapper {
	position: relative;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

#page {
	position: relative;
	xmargin-top: 80px;
}

img {
	max-width: 100%;
	height: auto;
}

img.aligncenter {
	margin-right: auto;
	margin-left: auto;
}

p {
	margin: 10px 0;
}

strong {
	font-weight: 600;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "inter-variable", sans-serif;
	font-weight: 600;
	line-height: 1.2;
}

h1,
.h1 {
	font-size: 72px;
}

h2,
.h2 {
	font-size: 52px;
}

h3,
.h3 {
	font-size: 32px;
	line-height: 1.3;
}

h4,
.h4 {
	font-size: 15px;
}

h5,
.h5 {
	font-family: "inter-variable", sans-serif;
	font-size: 16px;
}

h6,
.h6 {
	font-size: 20px;
}

body.error404 #page h1 {
	font-size: 400%;
}

body.error404 #page .content-wrapper {
	text-align: center;
}

.text-center {
	text-align: center;
}

.wrapper {
	position: relative;
	xmin-height: 100vh;
}

.admin-bar .wrapper {
	min-height: calc(100vh - 32px);
}

section {
	margin: 20px;
	border-radius: 20px;
	background: white;
	padding: 80px 0;
}

.content-wrapper {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1440px;
}

.breadcrumb-section {
	margin-bottom: 0;
}

.breadcrumbs {
	font-size: 13px;
	margin-left: 0px;
}

.overlap {
	margin-top: -110px;
	padding-top: 200px;
	z-index: 1;
}

.no-padding {
	padding: 0;
}

.align-bottom {
	align-items: flex-end;
}

.intro-container {
	width: 40%;
	margin-left: 30%;
}

.intro-container-center {
	text-align: center;
	margin-bottom: 30px;
}

.grid {
	position: relative;
	width: 100%;
}

.grid .row {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 20px;
	position: relative;
	margin: 10px;
}

.grid .col {
	position: relative;
	grid-column: 1/-1;
}

.fact-box {
	position: relative;
	border-radius: 20px;
	padding: 20px 20px 15px 20px;
	display: flex;
	margin: 20px 0 0 0;
	align-items: center;
	flex-flow: row;
	background: rgb(83, 56, 215);
	background: linear-gradient(340deg, rgb(83, 56, 215) 0%, rgb(228, 32, 163) 100%);
	color: #fff;
}

.fact-box .fact-box-icn {
	position: relative;
	flex-shrink: 1;
	width: 56px !important;
	margin-right: 20px;
}

.fact-box .fact-box-icn img {
	width: 100%;
}

.fact-box .fact-box-info {
	position: relative;
	width: calc(100% - 56px);
}

.fact-box .fact-box-info .value {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 600;
}

.fact-box .fact-box-info p {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.3;
}

.custom-tooltip {
	position: absolute;
	border: 1px solid #ddd;
	background-color: #fff;
	padding: 10px;
	z-index: 1000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.anim {
	visibility: hidden;
	opacity: 0;
	transition: all 2s;
}

.anim--default {
	transform: scale(0.95);
}

.anim--fade-left {
	transform: translate3d(-100px, 0, 0);
}

.anim--fade-right {
	transform: translate3d(100px, 0, 0);
}

.anim--fade-top {
	transform: translate3d(0, -100px, 0);
}

.anim--fade-bottom {
	transform: translate3d(0, 100px, 0);
}

.anim--delay200 {
	transition-delay: 0.2s;
}

.animated {
	visibility: visible;
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.hamburger-white .hamburger-inner,
.hamburger-white .hamburger-inner::before,
.hamburger-white .hamburger-inner::after {
	background: #222228;
}

.hamburger {
	padding: 0 0;
	display: flex;
	cursor: pointer;
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 1;
}

.hamburger-box {
	width: 22px;
	height: 14px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 22px;
	height: 2px;
	background-color: #272C34;
	border-radius: 4px;
	position: absolute;
	left: 0;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
	width: 22px;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -6px;
}

.hamburger-inner::after {
	bottom: -6px;
}

/*
 * Squeeze
 */

.hamburger--squeeze .hamburger-inner {
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	color: #222228;
	background-color: #222228;
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
	color: #222228;
	background-color: #222228;
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
	color: #222228;
	background-color: #222228;
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse
 */

.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
	top: -12px;
	transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
	transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -6px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-90deg);
	transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#header {
	position: relative;
	padding-top: 0;
	z-index: 997;
	transition: all 0.75s;
	width: 100%;
	box-sizing: content-box;
}

#header ul {
	list-style-type: none !important;
	margin-left: none !important;
}

.contact a {
	color: #D7F571;
}

.navigation {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 20px 20px 10px 20px;
	align-items: center;
	height: 80px;
	margin: 0px;
}

.logo {
	position: absolute;
	width: 220px;
	left: calc(50% - 110px);
	line-height: 0;
}

.logo svg {
	width: 100%;
}

/*
* MENU
*/

.menu {
	display: flex;
	text-align: center;
}

.menu .menu__item {
	height: 80px;
	display: flex;
	align-items: center;
}

.menu .menu__link {
	background: #ECEAEB;
	font-size: 14px;
	padding: 12px 20px;
	border-radius: 50px;
	color: #272C34;
	margin: 0 5px;
	font-weight: 600;
	transition: background-color 0.3s, color 0.3s;
}

.menu .menu__link:hover {
	background: #272C34;
	color: #fff;
}

.menu .menu__item--active .menu__link {
	color: #fff;
	background: #272C34;
}

.menu .menu__item--nav-showroom a {
	background: #D7F571;
}

.menu__item--parent {
	position: relative;
}

.menu__item--parent:hover .menu__sub {
	oxpacity: 1;
	xvisibility: visible;
	display: flex;
}

.menu__sub {
	xopacity: 0;
	xvisibility: hidden;
	display: none;
	position: absolute;
	top: 71px;
	background: #fff;
	border-radius: 20px;
	padding: 5px;
	min-width: 650px;
	flex-flow: wrap;
	text-align: left;
}

.menu__sub .menu__subitem {
	position: relative;
	margin: 5px;
	padding: 5px;
	height: 48px;
	width: 200px;
	background: #fff;
	border-radius: 50px;
	transition: background-color 0.3s, color 0.3s;
	box-sizing: border-box;
}

.menu__sub .menu__subitem::before {
	position: absolute;
	content: "";
	left: 5px;
	top: 5px;
	width: 38px;
	height: 38px;
	background-color: #ECEAEB;
	color: black;
	border-radius: 50%;
	font-size: 22px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 75%;
}

.menu__sub .menu__subitem:hover {
	background-color: #F6F4F5;
}

.menu__sub .menu__sub__link {
	position: relative;
	height: 38px;
	font-size: 14px;
	line-height: 38px;
	margin-left: 48px;
	color: #272C34;
}

.menu__item--active a,
.menu__item--parent--active a {
	color: #D7F571;
}

#nav {
	position: relative;
	xwidth: 100%;
	text-align: center;
}

#main__menu {
	flex-flow: row;
	justify-content: center;
}

#nav-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	padding-top: 0vh;
	background: #222228;
	transform: translateX(-100%);
	transition: all 0.5s;
	z-index: 998;
	display: flex;
	justify-content: center;
	align-items: center;
}

#nav-mobile .mobile-logo {
	position: fixed;
	top: 25px;
	width: 220px;
	left: calc(50% - 110px);
	line-height: 0;
}

#nav-mobile .mobile-logo svg {
	width: 100%;
}

#nav-mobile ul {
	list-style-type: none !important;
	margin-left: none !important;
}

#nav-mobile .mobile-nav-wrapper {
	position: absolute;
	display: flex;
	margin-top: 80px;
	justify-content: center;
	align-items: flex-start;
	height: calc(100% - 80px);
	padding-left: 10px;
	overflow-y: scroll;
	overflow-x: hidden;
}

#nav-mobile .mobile-nav-wrapper .left-column,
#nav-mobile .mobile-nav-wrapper .right-column {
	position: relative;
	width: 50%;
}

#nav-mobile .mobile-nav-wrapper .left-column {
	display: flex;
	gap: 40px;
	padding-top: 60px;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-banners,
#nav-mobile .mobile-nav-wrapper .menu--mobile-main {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-banners .menu__item,
#nav-mobile .mobile-nav-wrapper .menu--mobile-main .menu__item {
	height: auto;
	margin: 8px 0;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-banners .menu__item .menu__link,
#nav-mobile .mobile-nav-wrapper .menu--mobile-main .menu__item .menu__link {
	background: none;
	border: none;
	color: #fff;
	font-size: 15px;
	padding: 8px 11px;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-banners .menu__item--nav-showroom .menu__link,
#nav-mobile .mobile-nav-wrapper .menu--mobile-main .menu__item--nav-showroom .menu__link {
	color: #D7F571 !important;
}

#nav-mobile .mobile-nav-wrapper .nav-label {
	color: #ECEAEB;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 30px;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-engage {
	position: relative;
	display: flex;
	flex-flow: wrap;
	max-width: 550px;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-engage .menu__item {
	position: relative;
	margin: 5px;
	padding: 0px;
	height: auto;
	width: auto;
	xbackground: #F6F4F5;
	border: none;
	color: #fff;
	border-radius: 50px;
	transition: background-color 0.3s, color 0.3s;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 45%;
	text-align: left;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-engage .menu__item::before {
	position: absolute;
	content: "";
	left: 5px;
	top: 4px;
	width: 30px;
	line-height: 1;
	height: 30px;
	background-color: #fff;
	color: #fff !important;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 75%;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-engage .menu__item .menu__link {
	position: relative;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	margin: 0;
	margin-left: 20px;
	color: #fff;
	background: none;
}

#nav-mobile .mobile-nav-wrapper .industry-nav {
	position: relative;
	display: flex;
	flex-flow: wrap;
	max-width: 550px;
}

#nav-mobile .mobile-nav-wrapper .industry-nav .menu__item {
	position: relative;
	margin: 5px 0;
	padding: 0px;
	height: auto;
	width: auto;
	xbackground: #F6F4F5;
	border: none;
	color: #fff;
	border-radius: 50px;
	transition: background-color 0.3s, color 0.3s;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 47%;
	text-align: left;
}

#nav-mobile .mobile-nav-wrapper .industry-nav .menu__item i {
	content: "";
	width: 30px;
	line-height: 1;
	height: 30px;
	background-color: #fff;
	color: #272C34 !important;
	border-radius: 50%;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	margin-right: 10px;
}

#nav-mobile .mobile-nav-wrapper .industry-nav .menu__item .menu__link {
	position: relative;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	font-weight: 400;
	margin: 0 5px 0 12px;
	color: #fff;
	background: none;
}

#nav-mobile .mobile-nav-wrapper .mainnav {
	margin-top: 0px;
}

#main_menu--mobile .menu__sub,
#nav-mobile .menu {
	margin: 0;
}

.menu__item--nav-swiper::before {
	background-image: url("/wp-content/themes/template/res/img/swiper-ad.png");
}

.menu__item--nav-scratch::before {
	background-image: url("/wp-content/themes/template/res/img/scratch-ad.png");
}

.menu__item--nav-gallery::before {
	background-image: url("/wp-content/themes/template/res/img/gallery-ad.png");
}

.menu__item--nav-survey::before {
	background-image: url("/wp-content/themes/template/res/img/survey-ad.png");
}

.menu__item--nav-branded-player::before {
	background-image: url("/wp-content/themes/template/res/img/branded-player.png");
}

.menu__item--nav-reveal::before {
	background-image: url("/wp-content/themes/template/res/img/reveal-ad.png");
}

.menu__item--nav-story::before {
	background-image: url("/wp-content/themes/template/res/img/story-ad.png");
}

.menu__item--nav-panorama::before {
	background-image: url("/wp-content/themes/template/res/img/panorama-ad.png");
}

.menu__item--nav-shoppable::before {
	background-image: url("/wp-content/themes/template/res/img/shoppable-hotspots.png");
}

.menu__item--nav-cube::before {
	background-image: url("/wp-content/themes/template/res/img/cube-ad.png");
}

.menu__item--nav-gamification::before {
	background-image: url("/wp-content/themes/template/res/img/gamification-ad.png");
}

.menu__item--nav-configurator::before {
	background-image: url("/wp-content/themes/template/res/img/configurator-ad.png");
}

#burger {
	position: fixed;
	margin-right: 10px;
	padding: 15px 25px 15px 15px;
	background: #fff;
	gap: 20px;
	left: 30px;
	top: 22px;
	align-items: center;
	border-radius: 50px;
	z-index: 9999;
	display: none;
}

#burger .burger-text {
	text-transform: uppercase;
	font-size: 11px;
	line-height: 1;
}

#contact-nav {
	position: fixed;
	border-radius: 50px;
	background: #222228;
	padding: 3px 6px;
	right: 40px;
	top: calc(50% - 75px);
	z-index: 90;
}

#contact-nav .contact-nav-elem {
	position: relative;
	margin: 4px 0;
}

#contact-nav .contact-nav-elem .contact-nav-label {
	position: absolute;
	color: #272C34;
	font-size: 12px;
	right: 60px;
	top: 2px;
	width: 160px;
	text-align: right;
	background: white;
	border-radius: 50px;
	height: 45px;
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 20px 0 20px;
	box-sizing: border-box;
	opacity: 0;
	transform: translateX(20px);
	transition: all 0.3s;
	z-index: 89;
	pointer-events: none;
}

#contact-nav .contact-nav-elem:hover .contact-nav-label {
	transform: translateX(0px);
	opacity: 1;
}

#contact-nav .contact-nav-elem i {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	font-size: 30px;
	color: #fff;
	background: #272C34;
	z-index: 90;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

#contact-nav .contact-nav-elem:hover .contact-nav-label {
	transform: translateX(0px);
	opacity: 1;
}

#contact-nav .contact-nav-elem:hover i {
	background: #D7F571;
	color: #272C34;
}

#contact-nav .emergency i {
	background: #E22651;
}

#footer {
	overflow: hidden;
	position: relative;
	margin: 20px 20px 0 20px;
	border-radius: 20px 20px 0 0;
	padding: 70px 0 60px 0;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-contact {
	font-size: 14px;
}

.footer-contact a {
	color: #fff;
}

.footer-contact a:hover {
	color: #D7F571;
}

.foot-form-cont {
	padding-bottom: 70px;
}

.contact-person {
	position: relative;
	margin-top: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.contact-person .contact-pic {
	position: relative;
	border-radius: 20px;
	line-height: 0;
	width: 200px;
	margin-right: 30px;
	overflow: hidden;
}

.contact-person .contact-info .name {
	font-size: 24px;
}

.contact-person .contact-info .position {
	font-size: 16px;
	margin-bottom: 20px;
}

.contact-person .cont-poss {
	display: flex;
	margin: 10px 0;
	align-items: center;
}

.contact-person .cont-poss a {
	color: #fff;
	text-decoration: underline;
}

.contact-person .cont-poss .cont-icon {
	font-size: 30px;
	line-height: 30px;
	margin-right: 15px;
}

.contact-person .cont-poss .subinfo {
	font-size: 11px;
	line-height: 1;
}

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

.menu--footer .menu__link {
	background: none;
	font-size: 16px;
	padding: 0;
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
}

.menu--footer {
	display: flex !important;
	justify-content: space-between;
}

.menu--footer .menu__item {
	height: auto;
}

.menu--footer .menu__link {
	background: none;
	font-size: 16px;
	padding: 0;
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
}

.menu--footer .menu__link:hover {
	color: #D7F571;
}

.meta-grid {
	margin: 40px 0 0 0;
}

.menu--footer-meta {
	display: flex !important;
	justify-content: flex-end;
}

.menu--footer-meta .menu__item {
	height: auto;
}

.menu--footer-meta .menu__link {
	background: none;
	font-size: 12px;
	padding: 0;
	text-transform: uppercase;
	color: #707070;
	margin: 0 5px 0 20px;
	text-decoration: underline;
	font-weight: 400;
}

.acalc section {
	margin: 0;
	padding: 30px;
	width: 100%;
}

form {
	display: flex;
}

form input {
	width: 100%;
	background: #ECEAEB;
	border-radius: 7px;
	color: #272C34;
}

/* ---------- Global Styles ---------- */

.acalc__form {
	margin: 0 auto;
}

.acalc__title {
	margin: 5px 0 10px 0;
}

/* ---------- Labels ---------- */

.acalc__label {
	display: block;
	color: #707070;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}

.acalc-tooltip {
	margin-left: 10px;
	font-size: 20px;
	line-height: 20px;
	cursor: pointer;
}

/* ---------- Custom Select ---------- */

.acalc__input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	font-size: 16px;
	padding: 14px 18px;
	border-radius: 7px;
	border: 1px solid #ECEAEB;
	background-color: #ECEAEB;
	color: #707070;
	transition: all 0.2s ease;
}

.acalc__input[type=select],
.acalc__input select,
.acalc__input-select {
	cursor: pointer !important;
	background-image: url("/wp-content/themes/template/res/img/icn_dropdown.png");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 10px;
}

.acalc__input:hover {
	background-color: #efefef;
}

.acalc__input:focus {
	outline: none;
	border-color: #b6f56e;
	background-color: #fff;
}

/* ---------- Checkbox ---------- */

.acalc__check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	cursor: pointer;
	font-size: 15px;
	user-select: none;
}

.acalc__check input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	width: 25px;
	height: 25px;
	border: 2px solid #ECEAEB;
	border-radius: 7px;
	display: inline-block;
	position: relative;
	transition: all 0.2s ease;
	background-color: #ECEAEB;
}

.acalc__check input[type=checkbox]:checked {
	border-color: #D7F571;
	background-color: #D7F571;
}

.acalc__check input[type=checkbox]:checked::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 7px;
	width: 5px;
	height: 9px;
	border: solid #111;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* ---------- Buttons ---------- */

.acalc-btn:disabled {
	background: #e1e1e1;
	color: #aaa;
	cursor: not-allowed;
}

.acalc__row {
	margin: 20px 0 0 0;
}

.acalc__actions {
	text-align: right;
}

/* ---------- TOOLTIP STYLE ---------- */

.acalc-tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-left: 6px;
	color: #666;
	cursor: help;
	transition: color 0.2s ease;
}

.acalc-tooltip:hover {
	color: #111;
}

/* Tooltip bubble */

.acalc-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 130%;
	left: 50%;
	transform: translateX(-50%) scale(0.8);
	background: #111;
	color: #fff;
	font-size: 13px;
	line-height: 1.3;
	padding: 8px 10px;
	border-radius: 8px;
	white-space: normal;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s ease;
	width: max-content;
	max-width: 220px;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* kleiner Pfeil */

.acalc-tooltip::before {
	content: "";
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	background: #111;
	opacity: 0;
	transition: all 0.2s ease;
}

/* Hover aktivieren */

.acalc-tooltip:hover::after,
.acalc-tooltip:hover::before {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

.acalc__error {
	color: #e53935;
	font-size: 13px;
	margin-top: 4px;
	animation: fadeIn 0.2s ease;
}

.has-error {
	border-color: #e53935 !important;
	background-color: #fff5f5 !important;
}

.acalc-btn[disabled],
.acalc-next[disabled] {
	opacity: 0.6;
	pointer-events: none;
}

.acalc__error {
	color: #e53935;
	font-size: 13px;
	margin-top: 4px;
	animation: fadeIn 0.2s ease;
}

.has-error {
	border-color: #e53935 !important;
	background: #fff5f5 !important;
}

/* =========================================
   Showroom – vollständiges SCSS (fixed sizes)
   ========================================= */

:root {
	--gap: 20px;
	--peek: 100px; /* rechter Peek für angeschnittenen Slide */
}

.showroom__page {
	background: #222228;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	flex-flow: column;
	padding: 55px;
	xmargin-bottom: 150px;
}

.showroom__page__filter {
	position: sticky;
	display: flex;
	background: #272C34;
	border-radius: 50px;
	align-self: flex-start;
	justify-self: flex-start;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 5px;
	top: 50px;
	width: 100%;
	z-index: 3;
	height: 67px;
}

/* ====== Layout ====== */

.showroom__section {
	color: #fff;
	background: #222228;
	display: flex;
	justify-content: flex-start;
	flex-flow: column;
	padding: 20px 0 30px 50px; /* Swiper-Container */
}

.showroom__section__category {
	position: relative;
	margin-top: 25px;
}

.showroom__section__category-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.showroom__section__category-head-column_left {
	position: relative;
	justify-content: flex-start;
}

.showroom__section__category-head-column_right {
	position: relative;
	justify-content: flex-end;
	margin-right: 40px;
}

.showroom__section__category h2,
.showroom__section__category .h2 {
	font-size: 32px;
}

.showroom__section__category h3,
.showroom__section__category .h3 {
	font-size: 26px;
}

.showroom__section__wrapper {
	position: relative;
	margin: 30px 0;
	min-height: 50px;
	overflow: hidden;
	padding-right: var(--peek); /* Gradient-Fades */
}

.showroom__section__wrapper::before,
.showroom__section__wrapper::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 150px;
	top: 0;
	z-index: 10;
	pointer-events: none;
	transition: opacity 0.25s ease;
	opacity: 1;
}

.showroom__section__wrapper::before {
	left: 0;
	background: linear-gradient(-90deg, rgba(34, 34, 40, 0) 0%, rgb(34, 34, 40) 100%);
	opacity: 1;
}

.showroom__section__wrapper::after {
	right: 0;
	background: linear-gradient(90deg, rgba(34, 34, 40, 0) 0%, rgb(34, 34, 40) 100%);
	opacity: 1;
}

.showroom__section__wrapper.is-start::before {
	opacity: 0;
}

.showroom__section__wrapper:not(.is-start)::before {
	opacity: 1;
}

.showroom__section__wrapper.is-end::after {
	opacity: 0;
}

/* ====== Swiper Basis (fixed-size slides) ====== */

.swiper {
	width: 100%;
}

.swiper-wrapper {
	align-items: stretch;
}

.swiper-slide {
	width: auto;
	flex: 0 0 auto;
	width: auto !important;
}

/* ====== Teaser ====== */

.case__teaser {
	position: relative;
	width: 100%;
	background: #272C34;
	border-radius: 10px;
	overflow: hidden; /* Standardformat: 300x250 */
	width: 300px;
	height: 250px; /* Hochformat: 300x600 */ /* Vertical: 300x600 */ /* Wide-Variante: 720x600 */
}

.case__teaser-height {
	width: 300px;
	height: 600px;
}

.case__teaser-vertical {
	width: 338px;
	height: 600px;
}

.case__teaser-width {
	aspect-ratio: 16/9;
	width: 720px;
	height: 600px;
}

.case__teaser--img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.3s;
}

.case__teaser--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.case__teaser--info {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	transform: translateY(70px);
	padding: 30px;
	height: 350px;
	display: flex;
	justify-content: flex-end;
	flex-flow: column;
	z-index: 2;
	background: linear-gradient(180deg, rgba(4, 24, 113, 0) 0%, #041871 60%);
	transition: transform 0.4s ease-in-out;
}

.case__teaser--info h4,
.case__teaser--info .h4 {
	text-transform: uppercase;
	font-weight: 300;
}

.case__teaser--info h3,
.case__teaser--info .h3 {
	margin-top: 5px;
}

.case__teaser--info .btn {
	margin-top: 25px;
	opacity: 0;
	transition: opacity 1.2s;
}

.case__teaser--info .btn::after {
	opacity: 0;
	transform: translateX(-13px) translateY(10px);
	transition: all 0.3s 0.3s;
}

.case__teaser:hover {
	cursor: pointer;
}

.case__teaser:hover .case__teaser--img {
	filter: blur(4px);
	transform: scale(1.02);
}

.case__teaser:hover .case__teaser--info {
	transform: translateY(0);
}

.case__teaser:hover .btn {
	opacity: 1;
	transform: translateY(0);
}

.case__teaser:hover .btn::after {
	opacity: 1;
	transform: translate(0);
}

/* ====== Navigation im Head (arrows) ====== */

.showroom__nav {
	display: flex;
	gap: 10px;
}

.showroom__nav-btn {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: transparent;
	color: #fff;
	border-radius: 999px;
	width: 44px;
	height: 44px;
	font-size: 22px;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: opacity 0.2s, border-color 0.2s, transform 0.15s;
}

.showroom__nav-btn:hover {
	border-color: rgba(255, 255, 255, 0.45);
	transform: translateY(-1px);
}

.showroom__nav-btn:active {
	transform: translateY(0);
}

.showroom__nav-btn[disabled] {
	opacity: 0.35;
	cursor: not-allowed;
	border-color: rgba(255, 255, 255, 0.15);
}

/* Feinheiten */

.showroom__section__wrapper > * {
	position: relative;
	z-index: 1;
}

.showroom__section__category-head {
	margin-bottom: 10px;
}

/* ================= Overlay ================= */

.case-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.case-overlay.is-open {
	display: block;
}

.case-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	opacity: 0;
	transition: opacity 0.25s;
}

.case-overlay__shell {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(16px, 3vw, 32px);
	pointer-events: none;
}

/* Card: 2-Spalten (Media links 16:9, Info rechts) */

.case-overlay__card {
	box-sizing: border-box;
	width: min(750px, 92vw);
	max-width: 100%;
	max-height: min(86vh, 900px);
	background: #062bff;
	color: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	display: grid;
	grid-template-columns: minmax(340px, 1.1fr) 1fr; /* Media / Info */
	align-items: start;
	xgap: clamp(16px, 2.5vw, 28px);
	padding: clamp(16px, 2.5vw, 28px);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.25s, transform 0.25s;
	pointer-events: auto;
	overflow: hidden;
}

.case-overlay.is-visible .case-overlay__backdrop {
	opacity: 1;
}

.case-overlay.is-visible .case-overlay__card {
	opacity: 1;
	transform: translateY(0);
}

/* Overlay im Mess-Zustand */

.case-overlay.measuring {
	display: block;
}

.case-overlay.measuring .case-overlay__backdrop {
	opacity: 0;
}

.case-overlay.measuring .case-overlay__card {
	opacity: 0;
	transform: none;
}

/* ===== Media standardmäßig 16:9 und volle Breite ===== */

.case-overlay__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 10px;
	overflow: hidden;
}

.case-overlay__media iframe,
.case-overlay__media video,
.case-overlay__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

/* Info rechts (oder unterhalb bei 1 Spalte) */

.case-overlay__info {
	min-height: 200px;
	overflow: auto;
	padding-right: 4px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100%;
}

.case-overlay__info h4,
.case-overlay__info .h4 {
	font-weight: 300;
	text-transform: uppercase;
}

.case-overlay__info h2,
.case-overlay__info .h2 {
	margin: 10px 0;
	font-size: 32px;
}

.case-overlay__info h5,
.case-overlay__info .h5 {
	font-weight: 300;
	letter-spacing: 3px;
	font-size: 13px;
}

.case-overlay__info .descr {
	margin-bottom: 30px;
}

.case-overlay__info .meta-element {
	margin: 0px 0 20px 0;
}

.case-overlay__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	cursor: pointer;
	z-index: 9;
}

/* ========== MODE: Wide-Teaser ==========
   Media oben (16:9), darunter Info in 2 Spalten
   JS: ov.classList.toggle('mode-wide', teaser.classList.contains('case__teaser-width'));
*/

.case-overlay.mode-wide .case-overlay__card {
	grid-template-columns: 1fr; /* Media oben */
	grid-template-rows: auto auto;
	max-height: 92vh;
	width: min(900px, 92vw);
}

.case-overlay.mode-wide .case-overlay__media {
	width: 100% !important;
	aspect-ratio: 16/9;
	height: auto !important;
	border-radius: 10px;
}

.case-overlay.mode-wide .case-overlay__info {
	display: flex;
	xgrid-template-columns: 1fr minmax(220px, 320px);
	xgap: clamp(16px, 2vw, 28px);
	align-items: start;
	flex-flow: row;
	padding: 25px 0 25px 15px;
	justify-content: flex-start;
	align-items: flex-start;
}

.case-overlay.mode-wide .case-overlay__info-head {
	width: 65%;
}

.case-overlay.mode-wide .case-overlay__info .h4,
.case-overlay.mode-wide .case-overlay__info .h2,
.case-overlay.mode-wide .case-overlay__info > p {
	grid-column: 1;
}

.case-overlay.mode-wide .case-overlay__info > div,
.case-overlay.mode-wide .case-overlay__info > a.btn {
	grid-column: 2;
	justify-self: start;
}

/* ===== Mobile: fixe Overlay-Media-Größe für normale & height-Teaser =====
   JS setzt Klassen:
   - .mode-wide  (für width-Teaser, Media bleibt 16:9 fluid)
   - .mode-height (für height-Teaser)
   - .mode-normal (für Standard)
*/

/* ================= Media Queries (Beispiel) ================= */

/* kleines UX-Tuning für sehr schmale Screens */

.case-overlay--single {
	position: relative;
	display: block;
	width: auto !important;
	height: auto !important;
	background: var(--bg, #17171E);
	padding: 0;
	z-index: 1;
}

.case-overlay--single .case-overlay__shell {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.case-overlay--single .case-overlay__card {
	width: 100% !important;
	background: transparent;
	box-shadow: none;
	display: flex;
	justify-content: center;
	gap: 40px;
	padding: 0;
	height: 100% !important;
	overflow: visible !important;
	max-height: 100% !important;
}

.case-overlay--single .case-overlay__backdrop,
.case-overlay--single .case-overlay__close {
	display: none;
}

/* --- Größenlogik wie im Overlay.js --- */

.case-overlay.mode-height .case-overlay__media {
	width: 300px;
	height: 600px;
}

.case-overlay.mode-wide .case-overlay__media {
	width: 720px;
	height: 405px;
}

.case-overlay.mode-vertical .case-overlay__media {
	width: 338px;
	height: 600px;
}

.case-overlay.mode-normal .case-overlay__media {
	width: 300px;
	height: 250px;
}

.blog-detail {
	margin: 20px;
	border-radius: 20px;
	padding: 80px 0;
}

.blog-detail h2,
.blog-detail .h2 {
	font-size: 42px;
}

.blog-detail blockquote {
	position: relative;
	padding: 30px 30px 30px 70px;
	font-size: 22px;
	font-style: italic;
	font-weight: 600;
	background: #D7F571;
	border-radius: 20px;
	margin: 30px 0;
}

.blog-detail blockquote::before {
	content: "”";
	font-family: Times New Roman;
	position: absolute;
	left: 0;
	top: -30px;
	color: #fff;
	font-size: 100px;
}

.blog-detail ul {
	padding-left: 30px;
}

.blog-detail ul li {
	position: relative;
	margin: 5px 0;
}

.blog-detail ul li::before {
	position: absolute;
	content: "";
	left: -20px;
	top: 8px;
	width: 8px;
	height: 8px;
	background: #707070;
	border-radius: 50%;
}

/* Hero */

.blog-hero {
	margin-bottom: 40px;
}

.blog-hero-row {
	align-items: center;
}

.blog-hero .blog-meta {
	width: 72%;
}

.blog-hero .blog-meta .blog-hero__excerpt {
	font-weight: 600;
	margin-top: 30px;
}

.blog-hero__image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	object-fit: cover;
	line-height: 0;
}

/* Body & Share */

.blog-body {
	display: flex;
	gap: 40px;
}

.blog-share {
	flex: 0 0 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: sticky;
	top: 120px;
}

.blog-share a {
	font-size: 35px;
	line-height: 1;
	color: #707070;
	transition: color 0.3s;
}

.blog-share a:hover {
	color: #D7F571;
}

.blog-share span {
	font-size: 11px;
}

.blog-content {
	flex: 1;
	padding: 70px;
	border-radius: 12px;
	background: white;
}

.blog-content h2,
.blog-content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.blog-content img {
	max-width: 100%;
	border-radius: 10px;
	height: auto;
}

/* Author Box */

.blog-author {
	display: flex;
	align-items: flex-start;
	padding: 20px 70px;
	gap: 16px;
	width: auto;
}

.blog-author__image {
	position: relative;
	width: 80px !important;
}

.blog-author__image img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.blog-author__info {
	position: relative;
	width: calc(100% - 100px);
}

.blog-author__name {
	font-weight: 600;
	font-size: 20px;
}

/* Responsive */

.mobile-share {
	display: none;
}

/* teasers */

.magazin-teasers {
	display: flex;
	flex-flow: wrap;
}

.magazin-teasers .magazin-teaser {
	padding: 20px;
	border-radius: 20px;
	background: white;
	width: calc(50% - 20px);
	margin: 10px;
	box-sizing: border-box;
}

.magazin-teasers .magazin-teaser .teaser-image {
	width: 100%;
	border-radius: 15px;
	line-height: 0;
	overflow: hidden;
}

.magazin-teasers .magazin-teaser .teaser-image img {
	width: 100%;
}

.magazin-teasers .magazin-teaser h3 {
	color: #272C34;
}

.magazin-teasers .magazin-teaser .teaser-title {
	margin: 15px 15px 0 15px;
}

.magazin-teasers .tripple-teasers {
	width: calc(33% - 20px);
}

.btn {
	position: relative;
	border-radius: 33px;
	padding: 9px 37px 9px 20px;
	border: 1px solid #D7F571;
	color: #D7F571;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	box-sizing: border-box;
	align-self: baseline;
	transition: all 0.3s;
	text-transform: uppercase;
}

.btn::after {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	right: 15px;
	background: url("/wp-content/themes/template/res/img/arrow-black.png") no-repeat;
	xtransition: all 0.3s;
}

.btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 2px rgba(22, 22, 22, 0.05);
}

.btn:hover::after {
	animation: btn-arrow-ani 0.6s;
}

.btn-white {
	border-color: #fff;
	color: #fff;
}

.btn-white::after {
	background: url("/wp-content/themes/template/res/img/arrow-white.png") no-repeat;
}

.btn-primary,
.btn-green {
	background: #D7F571;
	color: #222228;
}

.btn-outline {
	background: none;
}

.btn-outline-black {
	border: 1px solid #222228;
	color: #222228;
}

.btn-outline-white {
	border: 1px solid #fff;
	color: #fff;
}

.btn-outline-white::after {
	background: url("/wp-content/themes/template/res/img/arrow-white.png") no-repeat;
}

.btn-large {
	padding: 15px 54px 15px 37px;
}

.btn-large::after {
	right: 30px;
}

.label {
	background: #ECEAEB;
	border-radius: 50px;
	padding: 8px 20px;
	text-transform: uppercase;
	box-sizing: border-box;
	font-size: 11px;
	line-height: 1;
	font-weight: 400;
	width: auto;
	position: relative;
	display: inline-block;
	color: #272C34;
}

h1 i,
h1 em,
h2 i,
h2 em,
h3 i,
h3 em,
h4 i,
h4 em {
	position: relative;
	z-index: 2;
	font-weight: 600;
	font-style: normal;
}

h1 i::after,
h1 em::after,
h2 i::after,
h2 em::after,
h3 i::after,
h3 em::after,
h4 i::after,
h4 em::after {
	position: absolute;
	left: -10px;
	top: 8px;
	content: "";
	border-radius: 10px;
	background: #ECEAEB;
	width: calc(100% + 20px);
	height: 80%;
	transform: rotate(0.5deg);
	z-index: -1;
}

h1 .b,
h1 strong,
h2 .b,
h2 strong,
h3 .b,
h3 strong,
h4 .b,
h4 strong {
	position: relative;
	color: #272C34;
	font-weight: 600;
	z-index: 2;
}

h1 .b::after,
h1 strong::after,
h2 .b::after,
h2 strong::after,
h3 .b::after,
h3 strong::after,
h4 .b::after,
h4 strong::after {
	position: absolute;
	left: -10px;
	top: 10px;
	content: "";
	border-radius: 10px;
	background: #D7F571;
	width: calc(100% + 20px);
	height: 80%;
	transform: rotate(-0.5deg);
	z-index: -1;
}

h3 i,
h3 em {
	position: relative;
	z-index: 2;
	font-weight: 600;
	font-style: normal;
}

h3 i::after,
h3 em::after {
	position: absolute;
	left: -7px;
	top: 7px;
	content: "";
	border-radius: 8px;
	background: #ECEAEB;
	width: calc(100% + 15px);
	height: 80%;
	transform: rotate(0.5deg);
	z-index: -1;
}

h3 .b,
h3 strong {
	position: relative;
	color: #272C34;
	font-weight: 600;
	z-index: 2;
}

h3 .b::after,
h3 strong::after {
	position: absolute;
	left: -7px;
	top: 7px;
	content: "";
	border-radius: 8px;
	background: #D7F571;
	width: calc(100% + 15px);
	height: 80%;
	transform: rotate(-0.5deg);
	z-index: -1;
}

p a {
	text-decoration: underline;
	color: #29A3B2;
	font-weight: 600;
}

.bg-white {
	background: #fff;
	color: #272C34;
}

.bg-background {
	background: #F6F4F5;
	color: #272C34;
}

.bg-green {
	background: #D7F571;
	color: #272C34;
}

.bg-dark {
	background-color: #272C34 !important;
	background-image: url("/wp-content/themes/template/res/img/distortion.png") !important;
	background-repeat: repeat;
	color: #fff;
}

.text-green {
	color: #D7F571;
}

.text-black {
	color: #272C34;
}

.play-btn {
	position: absolute;
	border-radius: 100%;
	background-color: #fff;
	width: 100px;
	height: 100px;
	z-index: 10;
	transition: all 0.3s;
}

.play-btn:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 20px solid #222228;
	transition: all 0.3s;
}

.play-btn:hover {
	cursor: pointer;
}

.play-btn:hover:before {
	border-top-width: 20px;
	border-bottom-width: 20px;
	border-left-width: 25px;
}

.play-btn--pause {
	opacity: 0.5;
}

.play-btn--pause:before {
	border-style: double;
	border-width: 20px 0px 20px 20px;
}

.social-icons {
	display: inline-block;
	margin: 0 20px 0 0;
	font-size: 40px;
	color: #fff;
	line-height: 1;
}

.social-icons a {
	color: #fff;
}

.social-icons:last-of-type {
	margin-right: 0;
}

/*
* include/exclude needed modules
*/

.blog--section .teasers {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.blog-teaser {
	position: relative;
	display: block;
	width: calc(32% - 15px);
	margin: 15px;
	transition: all 0.3s;
}

.blog-teaser .teaser-image-wrap {
	position: relative;
	border-radius: 20px;
	height: 310px;
	width: 100%;
	display: block;
	overflow: hidden;
	transition: all 0.5s;
}

.blog-teaser .teaser-image-wrap .teaser-image {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.blog-teaser .teaser-image-wrap .teaser-image img {
	position: absolute;
	vertical-align: middle;
	text-align: center;
	min-height: 100%;
	min-width: 100%;
	max-width: none !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.blog-teaser .teaser-image-wrap .teaser-author {
	position: absolute;
	left: 20px;
	top: 20px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border: 1px solid white;
}

.blog-teaser .teaser-image-wrap .teaser-author img {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.blog-teaser .teaser-title {
	margin: 15px 10px 10px 20px;
	width: 100%;
}

.blog-teaser .teaser-title h4 {
	color: #D7F571;
}

.blog-teaser:after {
	z-index: -1;
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	content: "";
	border: 1px solid #D7F571;
	transition: all 0.3s;
	opacity: 0;
	transform: rotate(0deg) !important;
}

.blog-teaser:hover .teaser-image-wrap {
	transform: rotate(-2deg) translateY(-30px);
	mxargin-top: -40px;
}

.blog-teaser:hover .teaser-image {
	opacity: 1;
}

.blog-teaser:hover .teaser-title {
	bottom: -200px;
}

.blog-teaser:hover:after {
	opacity: 1;
}

.downloads__section .download-wrapper .download-item {
	position: relative;
	display: flex;
	padding: 30px 40px;
	margin: 10px 0;
	background: #272C34;
	color: #fff;
	align-items: center;
	border-radius: 20px;
}

.downloads__section .download-wrapper .download-item .download-icon {
	width: 35px;
	font-size: 45px;
	line-height: 1;
}

.downloads__section .download-wrapper .download-item .download-info {
	position: relative;
	margin-right: 30px;
	width: calc(100% - 60px);
}

.faq__section h2 {
	margin: 10px 0 30px 0;
}

.faq__section-info {
	position: relative;
	width: 80%;
}

.faq-item {
	position: relative;
	margin-bottom: 10px;
	border: 1px solid #ECEAEB;
	border-radius: 20px !important;
	background: #F6F4F5;
	overflow: hidden;
	display: flex;
	align-items: center;
	xtransition: all 0.3s;
	cursor: pointer !important;
	padding: 20px 20px;
}

.faq-item p {
	width: calc(100% - 80px);
}

.faq-item:hover {
	background: #222228;
	color: #fff;
}

.faq-icon {
	position: relative;
	xwidth: 25px;
	font-size: 35px;
	line-height: 1;
	margin-right: 20px;
	transition: all 0.5s;
}

.faq-icon img {
	line-height: 0;
}

.faq-content {
	position: relative;
	width: 100%;
	xtransition: all 0.5s;
}

.faq-question {
	position: relative;
	xborder-radius: 20px;
	xtransition: all 0.3s;
	font-weight: 600;
	font-size: 22px;
	line-height: 1;
	display: flex;
	justify-content: flex-start;
}

.faq-question .faq-question-title {
	transition: all 0.5s;
}

.faq-answer {
	display: none;
	padding: 20px 25px 20px 0;
	xborder-radius: 20px;
	font-size: 16px;
	width: 400px;
	color: #fff;
	font-weight: 300;
	xtransition: all 0.5s;
}

.faq-answer .btn {
	margin-top: 30px;
}

.faq-item::after {
	content: "+";
	position: absolute;
	top: 40px;
	right: 20px;
	font-weight: 200;
	width: 38px;
	height: 38px;
	transform: translateY(-50%);
	font-size: 32px;
	line-height: 0;
	line-height: 32px;
	border-radius: 50%;
	background: #ECEAEB;
	color: #707070;
	text-align: center;
	transition: all 0.3s;
}

.active {
	display: flex;
	background: #222228;
	color: #fff;
}

.active .faq-content {
	padding: 50px 0 30px 40px;
}

.active .faq-content .faq-question-title {
	font-size: 32px;
}

.active .faq-icon {
	margin: 0px 0 0 50px;
	font-size: 120px;
	line-height: 110px;
}

.active::after {
	content: "+" !important;
	transform: rotate(-135deg);
	background: #D7F571;
	right: 40px;
}

.hero__section {
	padding-bottom: 20px;
}

.hero__section-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	flex-flow: column;
	width: 100%;
	align-items: center;
	xmargin: 80px 0 0px 0;
}

.hero__section-container {
	position: relative;
	width: 55%;
	text-align: center;
	justify-content: center;
	align-content: center;
}

.hero__section-container h1 {
	margin: 30px 0;
}

.hero__section-info {
	position: relative;
	width: 30%;
	text-align: center;
	display: inline-block;
}

/* IMAGE SECTION */

.image--section .image-wrapper {
	display: block;
	ywidth: 100%;
}

.image--section .desktop {
	display: block;
}

.image--section .mobile {
	display: none;
}

.image--section img {
	width: 100%;
}

.image--section .content-wrapper img {
	border-radius: 20px;
	line-height: 0;
}

.text__section .text__container {
	padding: 80px 20px;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.text__section .text__container .title-column {
	width: 40%;
}

.text__section .text__container .text-column {
	width: 35%;
	margin-left: 10%;
}

.text__section .text__container .text-column-wide {
	margin-left: 0;
	width: 50%;
}

.text__section .text__container .btn {
	margin-top: 30px;
}

/* VIDEO SECTION */

.video--section .video-wrapper {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 ratio */
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.video--section .video-wrapper h2 {
	position: absolute;
	z-index: 11;
	left: 0;
	width: 43%;
	text-align: right;
	color: #fff;
	height: 100%;
	display: flex;
	align-items: center;
	pointer-events: none;
	justify-content: flex-end;
}

.video--section .video-wrapper h2 span {
	color: #D7F571;
}

.video--section .video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	overflow: hidden;
	z-index: 8;
}

.video--section .video-wrapper #volumeBtn {
	position: absolute;
	right: 30px;
	bottom: 30px;
	width: 30px;
	height: 30px;
	z-index: 10;
	background: url("/wp-content/themes/template/res/img/mute.png");
	background-size: 100% auto;
	border: none;
}

.video--section .video-wrapper .muted {
	background: url("/wp-content/themes/template/res/img/muted.png") !important;
}

.video--section .video-wrapper #playPauseBtn {
	z-index: 10;
}

.video--section .video-wrapper .paused {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("/wp-content/themes/template/res/img/play.png") no-repeat;
	background-size: 35% auto;
	background-position: center center;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: none;
	padding: 50px;
	cursor: pointer;
}

.video--section .video-wrapper .playing {
	position: absolute;
	left: 30px;
	bottom: 30px;
	width: 30px;
	height: 30px;
	z-index: 10;
	background: url("/wp-content/themes/template/res/img/pause.png");
	background-size: 100% auto;
	transform: translate(0, 0);
	border: none;
	cursor: pointer;
}

.video--section .video-wrapper .overlay {
	pointer-events: none;
	z-index: 9;
	transition: all 0.3s;
}

.hero__home__section {
	position: relative;
	height: 90vh;
	padding: 0;
	overflow: hidden;
	margin-top: 10px; /* Rail/Track (Ticker) */ /* Sets: 7 echte Slides werden geklont für nahtlosen Loop */ /* Cards */ /* Bewegungs-Reduktion respektieren */
}

.hero__home__section .content-wrapper {
	height: 100%;
}

.hero__home__section-wrapper {
	position: relative;
	display: flex;
	justify-content: flex-start;
	width: 100%;
	align-items: center;
	height: 100%;
}

.hero__home__section-container {
	position: relative;
	width: 40%;
	height: 100%;
	display: flex;
	flex-flow: column;
	text-align: left;
	justify-content: center;
	align-content: flex-start;
	z-index: 2;
	color: #fff;
}

.hero__home__section-container h1 {
	margin-bottom: 30px;
}

.hero__home__section-container h1 strong,
.hero__home__section-container h1 i,
.hero__home__section-container h1 em,
.hero__home__section-container h1 b {
	color: #D7F571;
}

.hero__home__section-container h1 strong::after,
.hero__home__section-container h1 i::after,
.hero__home__section-container h1 em::after,
.hero__home__section-container h1 b::after {
	display: none;
}

.hero__home__section-container .cta-container {
	margin-top: 40px;
}

.hero__home__section-container .cta-container .btn {
	margin-right: 20px;
}

.hero__home__section-slider {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	height: 100%;
	text-align: center;
	display: block;
	overflow: hidden;
	padding-right: 10%;
	z-index: 1;
	display: flex;
	gap: 30px;
	justify-content: flex-end;
}

.hero__home__section .rail {
	position: relative;
	overflow: hidden;
	transform: rotate(10deg);
	height: 120%;
	margin-top: -10%;
	width: 300px;
}

.hero__home__section .track {
	position: absolute;
	inset: 0 auto 0 0;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 300px;
	will-change: transform;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: running; /* pausiert beim Hover via :hover */
}

.hero__home__section .rail:hover .track {
	animation-play-state: paused;
}

.hero__home__section .set {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero__home__section .card {
	display: block;
	width: 300px;
	height: 600px;
	border-radius: 20px;
	overflow: hidden;
	transform: translateZ(0);
}

.hero__home__section .card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.logowall__section {
	position: relative;
	width: 100%;
	padding: 60px 0 30px 0;
	overflow: hidden;
	margin: 0;
	background: none !important; /* bleibt für Abwärtskompatibilität, wird hier nicht genutzt */
}

.logowall__section .logowall__wrapper {
	position: relative;
	width: 102%;
	margin-left: -1%;
	text-align: center;
	transform: rotate(-1deg);
}

.logowall__section .logowall__wrapper-subline {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #707070;
	margin-top: 10px;
}

.logowall__section .logowall__wrapper-subline strong {
	color: #222228;
	font-weight: 500 !important;
}

.logo-overlap {
	margin-top: -110px;
	z-index: 10;
}

.slider-container {
	overflow: hidden;
	background: #222228;
	box-shadow: 0 7px 2px rgba(0, 0, 0, 0.1);
	position: relative; /* Viewport */ /* Track mit doppeltem Inhalt */
}

.slider-container .slider {
	position: relative;
	height: 90px;
	margin: 0;
	padding: 0;
	list-style: none; /* Hover pausiert den Track */
}

.slider-container .slider:hover .slider__track {
	xanimation-play-state: paused;
}

.slider-container .slider__track {
	display: flex;
	align-items: center;
	width: max-content; /* Breite = Summe der Kinder */
	gap: var(--gap, 40px); /* Abstand zwischen Logos */
	will-change: transform;
	-webkit-transform: translate3d(0, 0, 0);
	animation: marquee var(--dur, 30s) linear infinite;
	padding: 0; /* keine Seiteneffekte am Seam */
	margin: 0;
}

.slider-container .slider__slide {
	flex: 0 0 auto; /* keine Flex-Streckung */
	display: flex;
	align-items: center;
	justify-content: center; /* WICHTIG: keine Außen-Margins, Seam bleibt dicht */ /* spacing nur über .slider__track gap! */
}

.slider-container .slider__slide img {
	display: block;
	height: 100%; /* passt zur .slider-Höhe */
	width: auto;
}

/* Der Track verschiebt sich um genau die Hälfte seiner eigenen Breite */

/* Farbhintergründe */

.next-section-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 55%;
	z-index: -1;
}

.ns-black {
	background: #222228;
}

.ns-black strong {
	color: #fff !important;
}

.ns-white {
	background: #fff;
}

.ns-green {
	background: #D7F571;
}

/* Optional: Reduced motion */

.usps__section { /* Versatz pro Spalte (jede 4er-Gruppe fängt bei 1 an) */
}

.usps__section .usp-grid {
	padding-bottom: 50px;
}

.usps__section .usp {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 60px 30px 10px 30px;
	display: flex;
	justify-content: center;
	flex-flow: column;
	text-align: center;
	align-items: center;
	xaspect-ratio: 1/1;
}

.usps__section .usp p {
	font-size: 14px;
}

.usps__section .usp h3 {
	margin: 20px 0;
}

.usps__section .usp-margin-top {
	margin-top: 100px;
}

.usps__section .usp:nth-child(4n+1) {
	transform: translateY(-100px);
}

.usps__section .usp:nth-child(4n+2) {
	transform: translateY(0);
}

.usps__section .usp:nth-child(4n+3) {
	transform: translateY(100px);
}

.usps__section .usp:nth-child(4n+4) {
	transform: translateY(-150px);
}

.usps__section .usp-icon {
	font-size: 100px;
	line-height: 1;
}

.usps__section .usp-stat {
	font-size: 72px;
	font-weight: 600;
	line-height: 1;
	color: #D7F571;
	display: flex;
	align-items: center;
}

.usps__section .usp-stat .prefix,
.usps__section .usp-stat .suffix {
	font-size: 40px;
	margin: 0 10px;
}

.usps__section .stat-number {
	display: inline-flex;
}

.usps__section .slot-digit {
	overflow: hidden;
	height: 1em;
	position: relative;
	display: inline-block;
	width: 0.65em;
}

.usps__section .slot-digit-inner {
	position: absolute;
	top: 0;
	left: 0;
	animation: slideDigit 2s ease-out forwards;
}

.usps__section .slot-digit-inner span {
	display: block;
	height: 1em;
	line-height: 1em;
	text-align: center;
}

.usps__section .prefix,
.usps__section .suffix {
	display: inline-block;
	opacity: 0;
	transform: translateY(20%) scale(1);
}

.usps__section .prefix.show,
.usps__section .suffix.show {
	animation: bounceInUp 0.6s ease-out forwards;
}

.testimonials__section .swiper-nav {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.testimonials__section .swiper-nav-desktop {
	display: flex;
}

.testimonials__section .swiper-nav-tablet {
	display: none;
}

.testimonials__section .swiper-nav .swiper-button-next,
.testimonials__section .swiper-nav .swiper-button-prev {
	position: relative;
	left: auto;
	right: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #272C34;
	margin: 5px;
}

.testimonials__section .swiper-nav .swiper-button-next::before,
.testimonials__section .swiper-nav .swiper-button-next::after,
.testimonials__section .swiper-nav .swiper-button-prev::before,
.testimonials__section .swiper-nav .swiper-button-prev::after {
	width: 9px;
	height: 9px;
	border: none;
	content: "";
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center center;
}

.testimonials__section .swiper-nav .swiper-button-next::before,
.testimonials__section .swiper-nav .swiper-button-prev::before {
	display: none;
}

.testimonials__section .swiper-nav .swiper-button-next::after {
	background-image: url("/wp-content/themes/template/res/img/arrow-next.png");
}

.testimonials__section .swiper-nav .swiper-button-next:hover::after {
	animation: arrow-ani-next 0.6s;
}

.testimonials__section .swiper-nav .swiper-button-prev::after {
	background-image: url("/wp-content/themes/template/res/img/arrow-prev.png");
}

.testimonials__section .swiper-nav .swiper-button-prev:hover::after {
	animation: arrow-ani-prev 0.6s;
}

.testimonials__section .swiper-wrapper {
	align-items: flex-start;
	justify-content: flex-start;
}

.testimonials__section .swiper {
	width: 100%;
	height: 100%;
}

.testimonials__section .swiper-slide {
	position: relative;
	border-radius: 15px;
	padding: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	height: auto;
	width: 100% !important;
}

.testimonials__section .swiper-slide .pic {
	position: relative;
	width: 100px;
	height: 100px;
	line-height: 0;
	border-radius: 50%;
	background: #707070;
	overflow: hidden;
}

.testimonials__section .swiper-slide .testi-info {
	position: relative;
	width: calc(100% - 130px);
	margin-left: 30px;
	font-size: 18px;
}

.testimonials__section .swiper-slide .testi-info .person {
	font-size: 16px;
	font-weight: 500;
	color: #D7F571;
	margin-bottom: 0;
}

.testimonials__section .swiper-slide .testi-info .position {
	margin-top: 0;
	font-size: 14px;
}

.industries__section .industries-grid {
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	width: 100%;
}

.industries__section .industries-grid .industry-tile {
	position: relative;
	margin: 20px;
	padding: 12px 20px;
	border-radius: 50px;
	background: #fff;
	font-size: 20px;
	font-weight: 400;
	display: flex;
	justify-content: flex-start;
	flex-flow: nowrap;
	align-items: center;
	color: #272C34;
	transition: all 0.3s;
}

.industries__section .industries-grid .industry-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 2px rgba(22, 22, 22, 0.05);
	background: #D7F571;
}

.industries__section .industries-grid .industry-tile .industry-icon {
	font-size: 30px;
	color: #272C34;
	margin-right: 15px;
}

.industries__section .industries-grid .industry-tile .industry-name {
	color: #272C34;
}

.banner__section {
	padding-top: 0px;
}

.banner-wrapper {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

.banner-wrapper .banner {
	position: relative;
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	width: 300px;
	height: 600px;
	box-sizing: content-box;
}

.banner-wrapper .banner iframe {
	position: relative;
	margin: 0;
	padding: 0;
	width: 300px;
	height: 600px;
	border: none;
	border-radius: 10px;
	overflow: hidden;
}

.banner-wrapper .banner .subtext {
	font-size: 11px;
	color: #272C34;
	margin-top: 20px;
	text-align: center;
}

.banner-wrapper .info-icon-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: flex;
	justify-content: center;
}

.banner-wrapper .info-icon {
	position: absolute;
	padding: 20px;
	color: #fff;
	font-size: 65px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	aspect-ratio: 1/1;
	background: #222228;
}

.banner-wrapper .icon01 {
	background: #D7F571;
	color: #272C34;
	margin: 80px 0 0 500px;
}

.banner-wrapper .icon02 {
	background: #222228;
	color: #fff;
	margin: 250px 0 0 -500px;
}

.banner-wrapper .icon03 {
	background: #fff;
	color: #272C34;
	margin: 400px 0 0 620px;
}

.text__banner__section .text__banner-elem {
	display: flex;
	margin: 10px;
}

.text__banner__section .text__banner-elem:nth-child(even) {
	flex-direction: row-reverse;
}

.text__banner__section .text__container {
	position: relative;
	width: 50%;
	padding: 80px;
	border-radius: 20px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}

.text__banner__section .text__container .btn {
	margin-top: 30px;
}

.text__banner__section .banner-wrapper {
	position: relative;
	width: 50%;
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.text__banner__section .banner-wrapper .banner {
	background: none;
}

.text__banner__section .banner-wrapper .subtext {
	font-size: 11px;
	color: #272C34;
	margin-top: 0px;
	text-align: center;
}

.crosslink__section .crosslink-wrapper {
	position: relative;
	display: flex;
	flex-flow: wrap;
}

.crosslink__section .crosslink-elem {
	display: flex;
	width: calc(50% - 20px);
	margin: 10px;
	border-radius: 20px;
}

.crosslink__section .text__container {
	position: relative;
	width: 100%;
	padding: 80px;
	border-radius: 20px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}

.crosslink__section .text__container .btn {
	margin-top: 30px;
}

.crosslink__section .case__container {
	position: relative;
	width: 100%;
	padding: 80px;
	border-radius: 20px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}

.crosslink__section .case__container .case-thumb {
	border-radius: 15px;
	line-height: 0;
	overflow: hidden;
	margin: 20px 0;
	transition: all 0.3s;
}

.crosslink__section .case__container:hover .case-thumb {
	transform: scale(1.025);
}

.crosslink__section .case__container h3 {
	color: #272C34;
}

.crosslink__section .blog__container {
	position: relative;
	width: 100%;
	padding: 80px;
	border-radius: 20px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
	cursor: pointer;
}

.crosslink__section .blog__container .btn {
	margin-top: 30px;
}

.crosslink__section .blog__container .blog-thumb {
	border-radius: 15px;
	line-height: 0;
	overflow: hidden;
	margin: 20px 0;
	transition: all 0.3s;
}

.crosslink__section .blog__container:hover .blog-thumb {
	transform: scale(1.025);
}

.crosslink__section .blog__container h3 {
	color: #272C34;
}

.crosslink__section .banner-wrapper {
	position: relative;
	width: 50%;
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.crosslink__section .banner-wrapper .banner {
	background: none;
}

.crosslink__section .banner-wrapper .subtext {
	font-size: 11px;
	color: #272C34;
	margin-top: 0px;
	text-align: center;
}

.case {
	position: relative;
	width: 100%;
	height: 440px;
	border-radius: 20px;
	overflow: hidden;
}

.case .case-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

.case .case-image img {
	width: 100%;
}

.case .case-headline {
	position: absolute;
	width: 100%;
	background: #272C34;
	background: linear-gradient(90deg, rgba(39, 44, 52, 0.9) 30%, rgba(39, 44, 52, 0) 100%);
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 80px;
}

.case .case-headline h1 {
	color: #fff;
}

.case .case-headline h1 i,
.case .case-headline h1 em {
	color: #272C34;
}

.case .case-headline .h2 {
	width: 50%;
}

.case-meta {
	position: relative;
	border-radius: 20px;
	background: #ECEAEB;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	margin-top: 20px;
}

.case-meta .meta-item .meta-item-info {
	color: #272C34;
	font-weight: 600;
	margin-bottom: 5px;
}

.case-meta .meta-item .meta-item-info a {
	color: #272C34;
	text-decoration: underline;
}

.case-meta .meta-item .meta-item-label {
	text-transform: uppercase;
	color: #707070;
	font-size: 11px;
}

.case-list {
	margin-bottom: 20px;
}

.case-list .case-headline {
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}

.case-list:nth-child(even) .case-headline {
	align-items: flex-end;
	text-align: right;
	padding-left: 0px;
	padding-right: 80px;
	background: linear-gradient(-90deg, rgba(39, 44, 52, 0.9) 30%, rgba(39, 44, 52, 0) 100%);
}

/*
* BELOW sass is OPTIONAL
*/

@media (prefers-reduced-motion: reduce) {

.hero__home__section .track {
	animation: none !important;
}

.slider-container .slider__track {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transform: translateX(0) !important;
}

}

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

.grid .row {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid .col-1 {
	grid-column: span 1;
}

.grid .col-2 {
	grid-column: span 2;
}

.grid .col-3 {
	grid-column: span 3;
}

.grid .col-4 {
	grid-column: span 4;
}

.grid .col-5 {
	grid-column: span 5;
}

.grid .col-6 {
	grid-column: span 6;
}

.grid .col-7 {
	grid-column: span 7;
}

.grid .col-8 {
	grid-column: span 8;
}

.grid .offset-1 {
	grid-column-start: 2;
}

.grid .offset-2 {
	grid-column-start: 3;
}

.grid .offset-3 {
	grid-column-start: 4;
}

.grid .offset-4 {
	grid-column-start: 5;
}

.grid .offset-5 {
	grid-column-start: 6;
}

.grid .offset-6 {
	grid-column-start: 7;
}

.grid .offset-7 {
	grid-column-start: 8;
}

}

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

.menu {
	display: none;
}

#burger {
	display: flex;
}

}

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

.logo {
	width: 200px;
	left: calc(50% - 100px);
}

#nav-mobile .mobile-logo {
	width: 200px;
	left: calc(50% - 100px);
}

}

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

body {
	font-size: 15px;
}

#page {
	margin-top: 0px;
}

h1,
.h1 {
	font-size: 65px;
}

h2,
.h2 {
	font-size: 42px;
}

h3,
.h3 {
	font-size: 26px;
}

section {
	margin: 10px;
	padding: 50px;
}

.overlap {
	margin-top: -80px;
	padding-top: 130px;
}

.grid .hidden-tl {
	display: none;
}

.grid .row {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid .col-tl-1 {
	grid-column: span 1;
}

.grid .col-tl-2 {
	grid-column: span 2;
}

.grid .col-tl-3 {
	grid-column: span 3;
}

.grid .col-tl-4 {
	grid-column: span 4;
}

.grid .col-tl-5 {
	grid-column: span 5;
}

.grid .col-tl-6 {
	grid-column: span 6;
}

.grid .offset-tl-1 {
	grid-column-start: 2;
}

.grid .offset-tl-2 {
	grid-column-start: 3;
}

.grid .offset-tl-3 {
	grid-column-start: 4;
}

.grid .offset-tl-4 {
	grid-column-start: 5;
}

.grid .offset-tl-5 {
	grid-column-start: 6;
}

.grid--6cols .grid .row {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid--6cols .grid .col-tl-1 {
	grid-column: span 1;
}

.grid--6cols .grid .col-tl-2 {
	grid-column: span 2;
}

.grid--6cols .grid .col-tl-3 {
	grid-column: span 3;
}

.grid--6cols .grid .col-tl-4 {
	grid-column: span 4;
}

.grid--6cols .grid .col-tl-5 {
	grid-column: span 5;
}

.grid--6cols .grid .col-tl-6 {
	grid-column: span 6;
}

.grid--6cols .grid .offset-tl-1 {
	grid-column-start: 2;
}

.grid--6cols .grid .offset-tl-2 {
	grid-column-start: 3;
}

.grid--6cols .grid .offset-tl-3 {
	grid-column-start: 4;
}

.grid--6cols .grid .offset-tl-4 {
	grid-column-start: 5;
}

.grid--6cols .grid .offset-tl-5 {
	grid-column-start: 6;
}

#header {
	xpadding: 0 10px;
}

.navigation {
	padding: 10px 10px 0px 10px;
	height: 70px;
}

#nav-mobile {
	xalign-items: flex-start;
	xpadding-top: 80px;
}

#burger {
	top: 17px;
}

#contact-nav {
	right: 20px;
}

#footer {
	margin: 10px;
	padding: 30px 20px;
}

.showroom__page {
	xmargin-bottom: 110px;
}

.blog-detail {
	margin: 20px;
	padding: 50px 0;
}

.blog-detail h2,
.blog-detail .h2 {
	font-size: 32px;
}

.blog-hero .blog-meta {
	width: 100%;
}

.btn-large {
	padding: 15px 45px 15px 30px;
}

h3 i::after,
h3 em::after {
	height: 90%;
	top: 3px;
	left: -5px;
	width: calc(100% + 10px);
}

h3 .b::after,
h3 strong::after {
	height: 90%;
	top: 3px;
	left: -5px;
	width: calc(100% + 10px);
}

.play-btn {
	width: 80px;
	height: 80px;
}

.faq-item {
	padding: 10px;
}

.faq-question {
	font-size: 20px;
}

.faq-item::after {
	top: 30px;
	right: 10px;
}

.active .faq-content {
	padding: 20px 0 10px 20px;
}

.active .faq-content .faq-question-title {
	font-size: 28px;
}

.active .faq-icon {
	margin: 0px 0 0 10px;
	font-size: 70px;
	line-height: 60px;
}

.active::after {
	right: 20px;
	top: 20px;
}

.hero__section-wrapper {
	margin: 0px 0 30px 0;
}

.hero__home__section-container {
	width: 40%;
	margin-left: 100px;
}

.hero__home__section-container .cta-container .btn {
	margin-right: 15px;
}

.hero__home__section-slider {
	padding-right: 0;
	gap: 25px;
}

.hero__home__section .rail {
	width: 250px;
}

.hero__home__section .card {
	width: 250px;
	height: 500px;
}

.logo-overlap {
	margin-top: -130px;
}

.slider-container .slider {
	height: 70px;
}

.slider-container .slider__track {
	gap: var(--gap, 30px);
}

.slider-container .slider__slide {
	height: 80px;
}

.usps__section .usp {
	aspect-ratio: auto;
}

.usps__section .usp:nth-child(3n+1) {
	transform: translateY(-50px);
}

.usps__section .usp:nth-child(3n+2) {
	transform: translateY(0);
}

.usps__section .usp:nth-child(3n+3) {
	transform: translateY(50px);
}

.industries__section .industries-grid .industry-tile {
	margin: 8px;
	font-size: 17px;
}

}

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

h1,
.h1 {
	font-size: 62px;
}

h4,
.h4 {
	font-size: 15px;
}

.intro-container {
	width: 70%;
	margin-left: 15%;
}

.grid .hidden-tp {
	display: none;
}

.grid .row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid .col-tp-1 {
	grid-column: span 1;
}

.grid .col-tp-2 {
	grid-column: span 2;
}

.grid .col-tp-3 {
	grid-column: span 3;
}

.grid .col-tp-4 {
	grid-column: span 4;
}

.grid .offset-tp-1 {
	grid-column-start: 2;
}

.grid .offset-tp-2 {
	grid-column-start: 3;
}

.grid .offset-tp-3 {
	grid-column-start: 4;
}

.logo {
	width: 216px;
	left: calc(50% - 108px);
}

#nav {
	xdisplay: none;
}

#nav-mobile .mobile-logo {
	width: 216px;
	left: calc(50% - 108px);
}

#nav-mobile .mobile-nav-wrapper {
	display: block;
	padding-bottom: 0px;
}

#nav-mobile .mobile-nav-wrapper .left-column,
#nav-mobile .mobile-nav-wrapper .right-column {
	width: 100%;
}

#nav-mobile .mobile-nav-wrapper .left-column {
	margin-bottom: 30px;
	padding-top: 0;
}

#contact-nav {
	right: 15px;
}

.foot-form-cont {
	padding-bottom: 30px;
}

.case-overlay__info {
	margin: 25px 0 25px 15px;
}

.case-overlay.mode-wide .case-overlay__info {
	display: block;
	padding: 0;
}

.case-overlay.mode-wide .case-overlay__info-head {
	width: 100%;
}

.blog-content {
	padding: 30px 50px;
}

.magazin-teasers .magazin-teaser {
	width: 100%;
	margin: 10px 0;
}

.magazin-teasers .magazin-teaser .teaser-image {
	border-radius: 12px;
}

.blog-teaser {
	width: calc(50% - 30px);
}

.blog-teaser .teaser-image-wrap {
	height: 250px;
}

.faq__section-info {
	width: 90%;
	margin-left: 5%;
	margin-bottom: 30px;
}

.hero__section-container {
	width: 80%;
}

.hero__section-info {
	width: 50%;
}

.text__section .text__container {
	padding: 40px 20px;
}

.text__section .text__container .title-column {
	width: 50%;
}

.text__section .text__container .text-column {
	width: calc(60% - 40px);
	margin-left: 40px;
}

.video--section .video-wrapper h2 {
	transform: scale(0.7);
}

.hero__home__section {
	height: 120vh;
}

.hero__home__section-wrapper {
	align-items: flex-start;
}

.hero__home__section-container {
	width: 80%;
	margin-left: 10%;
	justify-content: flex-start;
	margin-top: 7%;
}

.hero__home__section-container p {
	width: 70%;
}

.hero__home__section-slider {
	width: 120%;
	gap: 100px;
	height: 1700px;
}

.hero__home__section .rail {
	transform: rotate(50deg);
	width: 300px;
	margin-top: 0;
	margin-left: 30px;
	height: 110%;
}

.slider-container .slider__track {
	animation: marquee var(--dur, 20s) linear infinite;
}

.usps__section .usp-grid {
	padding-bottom: 20px;
}

.usps__section .usp {
	align-self: stretch;
	padding: 40px 20px 10px 20px;
}

.usps__section .usp-margin-top {
	margin-top: 0px;
}

.usps__section .usp:nth-child(2n+1) {
	transform: translateY(0px);
}

.usps__section .usp:nth-child(2n+2) {
	transform: translateY(50px);
}

.testimonials__section .swiper-nav-desktop {
	display: none;
}

.testimonials__section .swiper-nav-tablet {
	display: flex;
	justify-content: center;
}

.banner-wrapper .info-icon {
	font-size: 55px;
	border-radius: 16px;
	padding: 15px;
}

.banner-wrapper .icon01 {
	margin: 80px 0 0 460px;
}

.banner-wrapper .icon03 {
	margin: 350px 0 0 520px;
}

.text__banner__section .text__banner-elem {
	display: block;
}

.text__banner__section .text__container {
	width: 100%;
	padding: 30px;
}

.text__banner__section .banner-wrapper {
	width: 100%;
}

.crosslink__section .text__container {
	padding: 30px;
}

.crosslink__section .case__container {
	padding: 30px;
}

.crosslink__section .blog__container {
	padding: 30px;
}

.case {
	height: 370px;
}

.case .case-headline {
	padding-left: 50px;
}

.case .case-headline .h2 {
	width: 50%;
}

.case-list:nth-child(even) .case-headline {
	padding-right: 50px;
}

}

@media (max-width: 1023px) {

.showroom__section__category-head {
	margin-bottom: 8px;
}

.showroom__nav-btn {
	width: 40px;
	height: 40px;
	font-size: 20px;
}

}

@media (max-width: 900px) {

.case-overlay.mode-wide .case-overlay__info {
	grid-template-columns: 1fr !important;
}

.case-overlay.mode-wide .case-overlay__info > div,
.case-overlay.mode-wide .case-overlay__info > a.btn {
	grid-column: 1 !important;
}

}

@media (max-width: 880px) {

.hero__home__section .hero {
	grid-template-columns: 1fr;
}

.hero__home__section .columns {
	height: 68vh;
}

}

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

#wpadminbar {
	position: fixed;
}

.admin-bar .wrapper {
	min-height: calc(100vh - 46px);
}

}

@media (max-width: 768px) {

.case-overlay--single .case-overlay__media {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

.blog-body {
	flex-direction: column;
}

.blog-share {
	flex-direction: row;
	justify-content: flex-start;
	position: static;
}

}

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

body {
	font-size: 15px;
}

h1,
.h1 {
	font-size: 42px;
}

h2,
.h2 {
	font-size: 30px;
	line-height: 1.3;
}

h3,
.h3 {
	font-size: 22px;
}

h4,
.h4 {
	font-size: 15px;
}

h5,
.h5 {
	font-size: 12px;
}

h6,
.h6 {
	font-size: 18px;
}

table {
	display: block;
	width: 100%;
	overflow-x: scroll;
}

section {
	margin: 7px;
	padding: 15px 15px;
}

.intro-container {
	width: 100%;
	margin-left: 0;
}

.grid .row {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid .col-ph-1 {
	grid-column: span 1;
}

.grid .col-ph-2 {
	grid-column: span 2;
}

.grid .offset-ph-1 {
	grid-column-start: 2;
}

.navigation {
	padding: 10px 10px;
	height: 75px;
}

.logo {
	width: 190px;
	left: calc(50% - 95px);
}

#nav-mobile {
	align-items: flex-start;
	xpadding-left: 15px;
	xpadding-top: 80px;
}

#nav-mobile .mobile-logo {
	width: 190px;
	left: calc(50% - 95px);
}

#nav-mobile .mobile-nav-wrapper {
	padding-bottom: 70px;
}

#nav-mobile .mobile-nav-wrapper .left-column {
	margin-bottom: 40px;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-engage .menu__item::before {
	width: 25px;
	height: 25px;
	font-size: 18px;
}

#nav-mobile .mobile-nav-wrapper .menu--mobile-engage .menu__item .menu__link {
	font-size: 11px;
}

#nav-mobile .mobile-nav-wrapper .industry-nav .menu__item i {
	width: 25px;
	height: 25px;
	font-size: 18px;
}

#nav-mobile .mobile-nav-wrapper .industry-nav .menu__item .menu__link {
	font-size: 11px;
}

#burger {
	padding: 15px 12px 15px 12px;
	left: 15px;
	top: 15px;
}

#burger .burger-text {
	display: none;
}

#contact-nav {
	left: 0px;
	right: auto;
	width: 175px;
	left: calc(50% - 87px);
	align-self: center;
	top: auto;
	bottom: 10px;
	display: flex;
	gap: 15px;
	padding: 5px;
	justify-content: center;
}

#contact-nav .contact-nav-elem .contact-nav-label {
	display: none !important;
}

#footer {
	margin: 7px;
	padding: 15px 15px;
}

.menu--footer {
	display: block !important;
}

.acalc section {
	border-radius: 12px;
	padding: 15px;
}

.showroom__page {
	padding: 20px;
	xmargin-bottom: 50px;
}

.showroom__section {
	padding: 10px 0 0px 20px;
}

.showroom__section__category-head-column_right {
	margin-right: 15px;
}

.showroom__section__category h2,
.showroom__section__category .h2 {
	font-size: 24px;
}

.showroom__section__wrapper::before,
.showroom__section__wrapper::after {
	width: 50px;
}

.showroom__section__wrapper::before {
	display: none;
}

.case__teaser {
	border-radius: 10px;
}

.case__teaser {
	width: 250px;
	height: 208px;
}

.case__teaser-height {
	width: 250px;
	height: 500px;
}

.case__teaser-vertical {
	width: 281px;
	height: 500px;
}

.case__teaser-width {
	width: 600px;
	height: 500px;
}

.case__teaser--info {
	padding: 15px;
	transform: translateY(55px);
}

.case__teaser--info .btn {
	margin-top: 15px;
}

.case__teaser:hover .case__teaser--img {
	filter: blur(0px);
	transform: scale(1);
}

.case__teaser:hover .case__teaser--info {
	transform: translateY(70px);
}

.case__teaser:hover .btn {
	opacity: 0;
}

.case__teaser:hover .btn::after {
	opacity: 0;
	transform: translateX(-13px) translateY(10px);
}

.swiper-slide-active .case__teaser {
	cursor: pointer;
}

.swiper-slide-active .case__teaser .case__teaser--img {
	filter: blur(0px);
	transform: scale(1);
}

.swiper-slide-active .case__teaser .case__teaser--info {
	transform: translateY(0);
}

.swiper-slide-active .case__teaser .btn {
	opacity: 1;
}

.swiper-slide-active .case__teaser .btn::after {
	opacity: 1;
	transform: translate(0);
}

.case-overlay__card {
	grid-template-columns: 1fr; /* Media oben, Info darunter */
	max-height: 92vh;
	overflow: auto;
	width: 332px;
	padding-bottom: 0px;
}

.case-overlay__info {
	justify-content: flex-start;
}

.case-overlay__info h2,
.case-overlay__info .h2 {
	font-size: 24px;
}

.case-overlay__info h5,
.case-overlay__info .h5 {
	font-size: 11px;
	letter-spacing: 2px;
}

.case-overlay__info .meta-element {
	margin: 20px 0 0 0;
}

.case-overlay__close {
	position: fixed;
	top: auto;
	bottom: 14px;
}

/* Standard-Case: 300x250 */

.case-overlay:not(.mode-wide).mode-normal .case-overlay__media {
	aspect-ratio: auto !important;
	width: 300px !important;
	height: 250px !important;
}

/* Height-Case: 300x600 */

.case-overlay:not(.mode-wide).mode-height .case-overlay__media {
	aspect-ratio: auto;
	width: 300px !important;
	height: 600px !important;
}

.case-overlay--single .case-overlay__card {
	display: block;
}

.case-overlay.mode-height .case-overlay__media {
	width: 320px !important;
	height: 640px;
}

.case-overlay.mode-wide .case-overlay__media {
	width: 600px;
	height: 500px;
}

.case-overlay.mode-vertical .case-overlay__media {
	width: 300px !important;
	height: 533px !important;
}

.case-overlay.mode-normal .case-overlay__media {
	width: 250px;
	height: 208px;
}

.blog-detail {
	margin: 20px;
	padding: 15px 0;
}

.blog-detail h2,
.blog-detail .h2 {
	font-size: 28px;
	line-height: 1.3;
}

.blog-detail blockquote {
	padding: 20px 20px 20px 50px;
	font-size: 18px;
	border-radius: 12px;
}

.blog-detail blockquote::before {
	font-size: 80px;
	top: -25px;
}

.blog-hero {
	margin-bottom: 10px;
}

.blog-hero__image img {
	border-radius: 12px;
}

.blog-content {
	padding: 20px;
}

.blog-author {
	padding: 20px 0;
}

.mobile-share {
	display: block;
}

.magazin-teasers {
	display: block;
}

.btn {
	font-size: 12px;
}

.btn-large {
	padding: 13px 25px 13px 12px;
}

.btn-large::after {
	right: 12px;
}

.label {
	padding: 8px 15px;
}

h1 i::after,
h1 em::after,
h2 i::after,
h2 em::after,
h3 i::after,
h3 em::after,
h4 i::after,
h4 em::after {
	height: 85%;
	left: -7px;
	top: 4px;
	width: calc(100% + 10px);
	transform: rotate(0.3deg);
}

h1 .b::after,
h1 strong::after,
h2 .b::after,
h2 strong::after,
h3 .b::after,
h3 strong::after,
h4 .b::after,
h4 strong::after {
	height: 85%;
	left: -7px;
	top: 5px;
	width: calc(100% + 12px);
	transform: rotate(-0.3deg);
}

.play-btn {
	width: 50px;
	height: 50px;
	bottom: 0;
}

.play-btn:before {
	border-top-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 15px;
}

.play-btn:hover:before {
	border-top-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 15px;
}

.blog-teaser {
	width: 100%;
	margin: 15px 0;
}

.blog-teaser .teaser-image-wrap {
	height: 220px;
}

.downloads__section .download-wrapper .download-item {
	padding: 20px 25px;
}

.downloads__section .download-wrapper .download-item .download-icon {
	width: 25px;
	font-size: 25px;
}

.downloads__section .download-wrapper .download-item .download-info {
	line-height: 1.25;
}

.faq__section-info {
	width: 100%;
	margin-left: 0;
}

.faq-icon {
	position: absolute;
	top: 10px;
}

.faq-question {
	padding: 8px 20px 8px 50px;
}

.faq-answer {
	padding: 20px 25px 20px 12px;
	font-size: 13px;
}

.faq-item::after {
	top: 28px;
}

.active .faq-content {
	padding: 50px 0 10px 0;
}

.active .faq-content .faq-question {
	padding: 28px 20px 8px 10px;
}

.active .faq-icon {
	font-size: 60px;
	line-height: 1;
	margin: 0 0 0 0;
}

.active::after {
	right: 10px;
	top: 10px;
}

.hero__section-container {
	width: 100%;
}

.hero__section-info {
	width: 100%;
}

.image--section .desktop {
	display: none;
}

.image--section .mobile {
	display: block;
}

.text__section .text__container {
	padding: 20px;
	display: block;
}

.text__section .text__container .title-column {
	width: 100%;
}

.text__section .text__container .text-column {
	width: 100%;
	margin-left: 0;
}

.video--section .video-wrapper {
	border-radius: 20px;
	padding-bottom: 177.77%; /* 9:16 ratio */
}

.video--section .video-wrapper h2 {
	display: none;
}

.hero__home__section-container {
	width: 86%;
	margin-left: 30px;
	margin-top: 10%;
}

.hero__home__section-container h1 {
	margin-bottom: 15px;
}

.hero__home__section-container p {
	width: 100%;
}

.hero__home__section-container .cta-container {
	margin-top: 30px;
	display: flex;
}

.hero__home__section-container .cta-container .btn {
	margin-right: 10px;
}

.hero__home__section-slider {
	xwidth: 100%;
	gap: 60px;
	height: 1400px;
}

.hero__home__section .rail {
	margin-left: 20px;
}

.hero__home__section .track {
	gap: 10px;
}

.hero__home__section .card {
	width: 150px;
	height: 300px;
	border-radius: 15px;
}

.slider-container .slider__track {
	animation: marquee var(--dur, 18s) linear infinite;
}

.usps__section .usp-grid {
	padding-bottom: 10px;
}

.usps__section .usp {
	aspect-ratio: 1/1;
	align-self: stretch;
	padding: 40px 20px 10px 20px;
}

.usps__section .usp:nth-child(2n+1) {
	transform: translateY(0px);
}

.usps__section .usp:nth-child(2n+2) {
	transform: translateY(0px);
}

.testimonials__section {
	padding-bottom: 40px;
}

.testimonials__section .swiper-nav-desktop {
	display: none;
}

.testimonials__section .swiper-nav-tablet {
	display: flex;
	justify-content: center;
	margin-top: -30px;
	padding-bottom: 40px;
}

.testimonials__section .swiper-slide {
	flex-flow: column;
	padding: 30px;
	align-items: center;
}

.testimonials__section .swiper-slide .pic {
	xmargin-top: -30px;
}

.testimonials__section .swiper-slide .testi-info {
	margin-left: 0;
	font-size: 15px;
	width: 100%;
	margin-top: 30px;
}

.testimonials__section .swiper-slide .testi-info .person {
	margin-top: 20px;
}

.industries__section .industries-grid .industry-tile {
	margin: 5px;
	font-size: 14px;
	padding: 8px 15px;
}

.industries__section .industries-grid .industry-tile .industry-icon {
	font-size: 25px;
	margin-right: 10px;
}

.banner-wrapper .info-icon-wrapper {
	position: relative;
	height: 80px;
	margin-top: 40px;
}

.banner-wrapper .info-icon {
	position: relative;
	font-size: 45px;
	margin: 0 5px !important;
}

.crosslink__section .crosslink-wrapper {
	display: block;
	width: 100%;
}

.crosslink__section .crosslink-elem {
	width: 100%;
	margin: 10px 0;
}

.case {
	height: 300px;
}

.case .case-image {
	height: 100%;
}

.case .case-image img {
	width: auto;
	min-width: 100%;
	height: 100%;
	max-width: 300%;
}

.case .case-headline {
	padding-left: 20px;
}

.case .case-headline .h2 {
	width: 100%;
}

.case-meta {
	padding: 20px 20px;
	flex-flow: wrap;
}

.case-meta .meta-item {
	width: 50%;
}

.case-list:nth-child(even) .case-headline {
	padding-right: 20px;
}

}

@media (max-width: 420px) {

:root {
	--peek: 56px;
}

}

@keyframes fadeIn {

from {
	opacity: 0;
	transform: translateY(-3px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes fadeIn {

from {
	opacity: 0;
	transform: translateY(-3px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes btn-arrow-ani {

0% {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

50% {
	opacity: 0;
	transform: translateX(13px) translateY(-10px);
}

51% {
	opacity: 0;
	transform: translateX(-13px) translateY(10px);
}

100% {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

}

@keyframes marquee-up {

from {
	transform: translateY(0);
}

to {
	transform: translateY(calc(-1 * var(--distance)));
}

}

@keyframes marquee-down {

from {
	transform: translateY(calc(-1 * var(--distance)));
}

to {
	transform: translateY(0);
}

}

@keyframes scroll-logos {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}

@keyframes marquee {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}

@keyframes slideDigit {

0% {
	transform: translateY(0);
}

100% {
	transform: translateY(var(--offset));
}

}

@keyframes digitBounce {

0% {
	transform: translateY(var(--offset)) scale(1);
}

60% {
	transform: translateY(calc(var(--offset) - 0.05em)) scale(1.2);
}

100% {
	transform: translateY(var(--offset)) scale(1);
}

}

@keyframes bounceInUp {

0% {
	opacity: 0;
	transform: translateY(30%) scale(0.95);
}

60% {
	opacity: 1;
	transform: translateY(-5%) scale(1.05);
}

100% {
	transform: translateY(0) scale(1);
	opacity: 1;
}

}

@keyframes arrow-ani-next {

0% {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

50% {
	opacity: 0;
	transform: translateX(13px) translateY(-10px);
}

51% {
	opacity: 0;
	transform: translateX(-13px) translateY(10px);
}

100% {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

}

@keyframes arrow-ani-prev {

0% {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

50% {
	opacity: 0;
	transform: translateX(-13px) translateY(10px);
}

51% {
	opacity: 0;
	transform: translateX(13px) translateY(-10px);
}

100% {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

}

