
/* default styles for extension "tx_frontend" */
    .ce-align-left { text-align: left; }
    .ce-align-center { text-align: center; }
    .ce-align-right { text-align: right; }

    .ce-table td, .ce-table th { vertical-align: top; }

    .ce-textpic, .ce-image, .ce-nowrap .ce-bodytext, .ce-gallery, .ce-row, .ce-uploads li, .ce-uploads div { overflow: hidden; }

    .ce-left .ce-gallery, .ce-column { float: left; }
    .ce-center .ce-outer { position: relative; float: right; right: 50%; }
    .ce-center .ce-inner { position: relative; float: right; right: -50%; }
    .ce-right .ce-gallery { float: right; }

    .ce-gallery figure { display: table; margin: 0; }
    .ce-gallery figcaption { display: table-caption; caption-side: bottom; }
    .ce-gallery img { display: block; }
    .ce-gallery iframe { border-width: 0; }
    .ce-border img,
    .ce-border iframe {
        border: 2px solid #000000;
        padding: 0px;
    }

    .ce-intext.ce-right .ce-gallery, .ce-intext.ce-left .ce-gallery, .ce-above .ce-gallery {
        margin-bottom: 10px;
    }
    .ce-image .ce-gallery { margin-bottom: 0; }
    .ce-intext.ce-right .ce-gallery { margin-left: 10px; }
    .ce-intext.ce-left .ce-gallery { margin-right: 10px; }
    .ce-below .ce-gallery { margin-top: 10px; }

    .ce-column { margin-right: 10px; }
    .ce-column:last-child { margin-right: 0; }

    .ce-row { margin-bottom: 10px; }
    .ce-row:last-child { margin-bottom: 0; }

    .ce-above .ce-bodytext { clear: both; }

    .ce-intext.ce-left ol, .ce-intext.ce-left ul { padding-left: 40px; overflow: auto; }

    /* Headline */
    .ce-headline-left { text-align: left; }
    .ce-headline-center { text-align: center; }
    .ce-headline-right { text-align: right; }

    /* Uploads */
    .ce-uploads { margin: 0; padding: 0; }
    .ce-uploads li { list-style: none outside none; margin: 1em 0; }
    .ce-uploads img { float: left; padding-right: 1em; vertical-align: top; }
    .ce-uploads span { display: block; }

    /* Table */
    .ce-table { width: 100%; max-width: 100%; }
    .ce-table th, .ce-table td { padding: 0.5em 0.75em; vertical-align: top; }
    .ce-table thead th { border-bottom: 2px solid #dadada; }
    .ce-table th, .ce-table td { border-top: 1px solid #dadada; }
    .ce-table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0,0,0,.05); }
    .ce-table-bordered th, .ce-table-bordered td { border: 1px solid #dadada; }

    /* Space */
    .frame-space-before-extra-small { margin-top: 1em; }
    .frame-space-before-small { margin-top: 2em; }
    .frame-space-before-medium { margin-top: 3em; }
    .frame-space-before-large { margin-top: 4em; }
    .frame-space-before-extra-large { margin-top: 5em; }
    .frame-space-after-extra-small { margin-bottom: 1em; }
    .frame-space-after-small { margin-bottom: 2em; }
    .frame-space-after-medium { margin-bottom: 3em; }
    .frame-space-after-large { margin-bottom: 4em; }
    .frame-space-after-extra-large { margin-bottom: 5em; }

    /* Frame */
    .frame-ruler-before:before { content: ''; display: block; border-top: 1px solid rgba(0,0,0,0.25); margin-bottom: 2em; }
    .frame-ruler-after:after { content: ''; display: block; border-bottom: 1px solid rgba(0,0,0,0.25); margin-top: 2em; }
    .frame-indent { margin-left: 15%; margin-right: 15%; }
    .frame-indent-left { margin-left: 33%; }
    .frame-indent-right { margin-right: 33%; }

/*animations*/


/**********
* Fade In *
**********/ 
@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
}
.fadeIn{
    opacity:0;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeIn.go {
	opacity: 1; 	
    -webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

/*************
* FadeInUp *
*************/ 
.fadeInUp{ 
    opacity: 0; 
    -webkit-transform: translateY(50px); 
    transform: translateY(50px);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeInUp.go { 
    opacity: 1; 
    -webkit-transform: translateY(0); 
    transform: translateY(0);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}


/*********************
* fadeInUpShort
*********************/
.fadeInUpShort {
    opacity: 0; 
	
	-webkit-transform: translateY(50px); 
    transform: translateY(50px);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeInUpShort.go {
	opacity: 1; 
    -webkit-transform: translateY(0); 
    transform: translateY(0);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.fadeInUpShort.go .frame-layout-1, .fadeInUpShort.go .txt-wrp{
	opacity: 1; 
    -webkit-transform: translateY(0); 
    transform: translateY(0);
	
	-webkit-transition: all 1s ease 0.15s;
	transition: all 1s ease 0.15s;
}



/*************
* ZoomOut *
*************/

.zoomOut .ce-gallery, .zoomout-wrp, .animated-zoom .ce-gallery .ce-column {
	overflow: hidden;
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.zoomOut, .animated-zoom .ce-gallery .ce-column figure.image, .animated-zoom .ce-gallery .ce-column .bgImg { 
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	
}
.zoomOut.go, .animated-zoom.go .ce-gallery .ce-column figure.image, .animated-zoom.go .ce-gallery .ce-column .bgImg {
    -webkit-transform: scale(1);
    transform: scale(1);
	
	-webkit-transition: all 1.5s ease 0s;
	transition: all 1.5s ease 0s;
}
@media (max-width: 959px){
	.zoomout-wrp-respo {
		overflow: hidden;
		
		-webkit-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
	.zoomOut-respo { 
		-webkit-transform: scale(1.25);
		transform: scale(1.25);
		
		-webkit-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
		
	}
	.zoomOut-respo.go {
		-webkit-transform: scale(1);
		transform: scale(1);
		
		-webkit-transition: all 1.5s ease 0s;
		transition: all 1.5s ease 0s;
	}
}
/*********************
* fadeInLeft
*********************/
.fadeInLeft {
    opacity: 0; 
	
	-webkit-transform: translateX(-75px); 
    transform: translateX(-75px);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeInLeft.go {
	opacity: 1; 
    -webkit-transform: translateX(0); 
    transform: translateX(0);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

/*********************
* fadeInRight
*********************/
.fadeInRight {
    opacity: 0; 
	
	-webkit-transform: translateX(75px); 
    transform: translateX(75px);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeInRight.go {
	opacity: 1; 
    -webkit-transform: translateX(0); 
    transform: translateX(0);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url('../../../fileadmin/templates/21unity/css/owl.video.play.png') no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/* fonts */
@font-face {
	font-family: 'AlbertSans-Black';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Black.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-ExtraBold';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-ExtraBold.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-ExtraBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-Light';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Light.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-BlackItalic';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-BlackItalic.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-BlackItalic.woff') format('woff');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-Bold';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Bold.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-Thin';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Thin.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-SemiBold';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-SemiBold.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-Medium';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Medium.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Medium.woff2') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'AlbertSans-Regular';
	src: url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Regular.woff2') format('woff2'), url('../../../fileadmin/templates/21unity/fonts/AlbertSans-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/** Base CSS Start **/
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, blockquote, th, td {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6, address, caption, cite, code, dfn, em, strong, th, var, html, body {
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}
h1 {
	font-size: 80px;
	font-family: 'AlbertSans-ExtraBold';
	margin-bottom: 30px;
}
h2 {
	font-size: 40px;
	font-family: 'AlbertSans-ExtraBold';
	margin-bottom: 10px;
	line-height: 1.2;
}
h3 {
	margin-bottom: 15px;
}
html, body {
	color: #292929;
	font-family: 'AlbertSans-Medium';
	font-size: 18px;
	line-height: 1.6;
	height: 100%;
	letter-spacing: 0.4px;
	-webkit-overflow-scrolling: touch;
	font-weight: normal;
	font-style: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 25px;
}
fieldset, img {
	border: 0;
}
caption, th {
	text-align: left;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
input, textarea {
	-webkit-border-radius: 0;
}
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
input[type="text"], textarea, select {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
textarea {
	resize: none;
	overflow-y: auto;
}
select::-ms-expand {
	display: none;
}
*:focus {
	outline: none;
}
figure {
	margin: 0;
}
ol, ul {
	padding-left: 2rem;
}
ol, ul, dl {
	margin-top: 0;
	margin-bottom: 1rem;
}
ol ol, ul ul, ol ul, ul ol {
	margin-bottom: 0;
}
abbr, acronym {
	border-bottom: 1px dotted #000000;
	cursor: help;
	font-variant: normal;
}
em {
	font-style: italic;
}
th, td {
	border: 0px;
	padding: 0.5em;
}
caption {
	margin-bottom: 0.5em;
	text-align: center;
}
p, pre {
	margin-bottom: 15px;
	margin-top: 0;
}
*:focus {
	outline: none;
}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
*, *::before, *::after {
	box-sizing: border-box;
}
audio, canvas, embed, iframe, img, object, svg, video {
	display: block;
	vertical-align: middle;
}
[type="button"], [type="reset"], [type="submit"], button {
	-webkit-appearance: none;
}
img {
	height: auto;
}
a {
	color: #3B066E;
}

/** Base CSS End **/


/* header starts */
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #ffffff;
	box-shadow: 0 1px 10px rgba(8, 29, 65, 0.5);
	z-index: 90;
}
.header-wrap {
	padding-top: 25px;
	padding-bottom: 25px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.container{
	max-width: 1320px;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.banner .container {
	position: relative;
	flex-direction: column;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-around;
	min-height: calc(100vh - 122px);
}
.banner video {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	object-fit: cover;
}
.header-wrap .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header .logo {
	width: 112px;
	height: auto;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
#header .logo a{
    height: 100%;
    display: block;
}
#header .logo img {
	width: 100%;
    height: 100%;
}
.imglogo {
	max-width: 100%;
	height: auto;
}
.navbar {
	font-family: 'AlbertSans-bold';
}
.nav ul {
	font-size: 16px;
	margin-bottom: 0;
	display: flex;
}
.nav ul li {
	padding: 0 20px;
	list-style: none;
}
.nav ul li:last-child {
	padding-right: 0;
}
.nav ul li a {
	text-transform: uppercase;
	text-decoration: none;
	color: #3B066E;
	position: relative;
	transition: 0.5s;
	display: inline-block;
}
.nav ul li.active a {
	color: #3B066E;
	text-decoration: none;
}
.nav ul>li a::after, .footer-menu-wrap ul a:after {
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #3B066E;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s;
}
.nav ul>li a:hover::after, .footer-menu-wrap ul a:hover:after {
	transform: scaleX(1);
	transform-origin: left;
}
.nav ul>li.active a::after {
	transform: scaleX(1);
	transform-origin: left;
}
.lang_menu {
	font-size: 17px;
	font-family: 'AlbertSans-Bold';
	padding: 0 20px;
	display: none;
}
.tx-srlanguagemenu div:first-child::after {
	content: "|";
	padding-right: 5px;
}
.lang_menu a {
	color: #3B066E;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	transition: 0.5s;
	display: inline-block;
}
.tx-srlanguagemenu {
	display: flex;
}
.lang_menu a::after {
	position: absolute;
	content: "";
	top: 82%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #3B066E;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s;
}
.lang_menu a.selected::after, .lang_menu a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
/* header ends */

.main-content {
	padding-top: 102px;
	overflow: hidden;
}

/* banner-content starts */
.banner {
	min-height: calc(100vh - 122px);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 58px;
	position: relative;
	background-color: #000000;
}
.title {
	line-height: 0.9;
	font-family: 'AlbertSans-ExtraBold';
}
.title, .sub-text {
	color: #ffffff;
}
.sub-text {
	margin-top: 25px;
	max-width: 600px;
	margin: auto;
}
.btn {
	width: 188px;
	font-size: 15px;
	font-family: 'AlbertSans-Bold';
	color: #ffffff;
	background-color: #5C4AF5;
	border-radius: 50px;
	padding: 18px 22px;
	text-align: center;
	justify-content: center;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	margin-top: 50px;
}
.btn-center {
	margin: auto;
	text-transform: uppercase;
	margin-top: 50px;
}
.banner-content {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin-top: auto;
	margin-bottom: auto;
}
.icon img {
	height: 100%;
    width: auto;
}
.icon-wrap {
	display: flex;
	flex-wrap: wrap;
	color: #ffffff;
	justify-content: space-between;
	padding: 20px 0;
}
.icon {
	height: 30px;
	margin: auto;
	display: flex;
	justify-content: center;
}
.icon-txt {
	font-family: 'AlbertSans-ExtraBold';
	font-size: 18px;
	padding-top: 15px;
	text-align: center;
}
.icon-wrap-content {
	width: 100%;
	margin-bottom: 30px;
}
.icon-wrap a {
	text-decoration: none;
	color: #ffffff;
}
/* banner-content ends */


/* two-col starts */
.row {
	display: flex;
	width: 100%;
	column-gap: 30px;
	font-family: 'AlbertSans-Light';
}
.row img {
	max-height: 100%;
	height: auto;
}
.col-md-6 ,.col-50{
	width: 50%;
	position: relative;
}
.frame-text-block {
	max-width: calc(100% + 40px);
	height: auto;
	padding: 50px 55px;
	position: relative;
	top: 50%;
	margin-left: -90px;
	background-color: #ffffff;
	box-shadow: 1px 1px 12px #c0c0c0;
	transform: translateY(-50%);
}
.frame-text-block h2 {
	color: #3B066E;
	font-size: 60px;
	font-family: 'AlbertSans-ExtraBold';
}
.row-reverse {
	flex-direction: row-reverse;
}
.row-reverse .frame-text-block {
	justify-content: center;
	position: absolute;
	right: 0;
	margin-right: -90px;
	padding: 55px;
	background-color: #ffffff;
	box-shadow: 1px 1px 12px #c0c0c0;
}
.spl-col .col-md-6:nth-child(2) {
	max-width: 660px;
}
.spl-col .ce-outer, .spl-col .ce-inner, .spl-col .ce-row, .spl-col .ce-column, .spl-col .image, .spl-col img {
	width: 100%;
}
/* two-col ends */


/* frame-space */
.frame-space-after-small {
	padding-bottom: 50px;
	margin-bottom: 0px;
}
.frame-space-before-small {
	padding-top: 50px;
	margin-top: 0px;
}
.frame-space-before-extra-small {
	padding-top: 30px;
	margin-top: 0px;
}
.frame-space-after-extra-small {
	padding-bottom: 30px;
	margin-bottom: 0;
}
.frame-space-after-large {
	padding-bottom: 150px;
	margin-bottom: 0;
}
.frame-space-before-extra-large {
	padding-top: 70px;
}
.frame-space-before-medium {
	padding-top: 100px;
	margin-top: 0;
}
.frame-space-after-medium {
	padding-bottom: 100px;
	margin-bottom: 0;
}

/* frame-space ends*/
.frame-center-header {
	max-width: 60%;
	font-size: 40px;
	text-align: center;
	display: block;
	margin: auto;
	font-family: 'AlbertSans-ExtraBold';
	line-height: 1;
}
.frame-center-header h2 {
	margin-bottom: 17px;
	font-size: 26px;
	color: #5C4AF5;
}
.frame-center-header header h2 {
	color: #5C4AF5;
}
.more {
	width: 188px;
	font-size: 14px;
	font-family: 'AlbertSans-Bold';
	color: #ffffff;
	background-color: #5C4AF5;
	border-radius: 50px;
	padding: 18px 22px;
	text-align: center;
	justify-content: center;
	text-decoration: none;
	display: block;
	margin: auto;
	position: absolute;
	bottom: -28px;
	left: 50%;
	text-transform: uppercase;
	transform: translateX(-50%);
}

/* news starts */
.news {
	width: 100%;
}
.news .article {
	position: relative;
}
.news img {
	max-width: 100%;
	height: auto;
}
.news-list-view {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.news-list-view .article {
	width: 31.7%;
	background-color: #ffffff;
	margin: 15px;
	margin-bottom: 40px;
}
.news-list-view .article {
	box-shadow: 0px 3px 26px #0000001A;
}
.news-list-view .article:nth-child(3n-2) {
	margin-left: 0;
}
.news-list-view .article:nth-child(3n+0) {
	margin-right: 0;
}
.news-list-view .teaser-text {
	font-size: 18px;
	font-family: 'AlbertSans-Light';
}
.news-list-view .header a {
	text-decoration: none;
}
.news-list-view .news-content-wrap .headline {
	text-decoration: none;
	font-size: 26px;
	font-family: 'AlbertSans-ExtraBold';
	color: #3B066E;
}
.news-list-view .news-no-img .headline {
	font-size: 36px;
	line-height: 1.1;
}
.news-list-view .news-content-wrap {
	padding: 0 20px 0 20px;
}
.news-list-view .header-teaser-wrap {
	padding-top: 30px;
	padding-bottom: 56px;
}
.news-list-view .date-category-wrap {
	text-transform: uppercase;
	font-size: 12px;
	color: #3b066e;
	border-bottom: 1px solid #f0f0f0;
	padding-top: 30px;
	padding-bottom: 25px;
}
.news-list-view .date-category-wrap::after {
	content: "";
	clear: both;
	display: block;
}
.news-list-view .news-list-category {
	float: left;
	font-family: 'AlbertSans-ExtraBold';
}
.news-list-view .news-list-date {
	float: right;
}
.news-no-img .news-header-img-wrap {
	background-color: #ffffff;
	max-width: 1040px;
	position: relative;
	top: 55px;
	padding: 20px;
}
.news-heading-wrap {
	max-width: 840px;
	margin: auto;
}
#c95 {
	text-align: center;
	font-size: 26px;
	font-family: 'AlbertSans-ExtraBold';
	color: #3B066E;
}
.entry-content .alignnone {
	display: none 
}
.news-list-view .news-img-wrap img {
	height: 200px;
	width: auto;
	margin: auto;
	object-fit: cover;
	object-position: 0%;
}
/* news ends */


/* footer starts */
#footer .col-md-2 ul li {
	padding-bottom: 0;
}
#footer {
	background-image: linear-gradient(to right, #3B066E, #5C4AF5);
	color: #ffffff;
	margin-top: 100px;
	line-height: 1.8;
}
#footer h2 {
	font-size: 16px;
	color: #ffffff;
}
#c21 .image {
	width: 180px;
}
#c21 .image img {
	max-width: 150px;
    margin: auto;
}
.col-md-2 {
	width: 20%;
	padding-left: 2%;
	padding-right: 2%;
}
.row .col-md-2, .row .col-md-2 h2 {
	font-size: 16px;
	color: #ffffff;
}
.col-md-2 ul li {
	padding-bottom: 5px;
	list-style: none;
	word-break: break-word;
}
.col-md-2 ul {
	padding-left: 0;
}
#footer a {
	text-decoration: none;
	color: #ffffff;
}
.col-md-2:first-child {
	padding: 0;
}
.col-md-2:last-child {
	padding: 0;
}
.footer-border {
	padding: 0 20px;
	max-width: 1280px;
	margin: auto;
	width: 100%;
	height: 1px;
	background: #f0f0f0;
}
.footer-bottom {
	padding: 25px 0;
}
#c25 .ce-column {
	padding: 11px;
	margin-right: 5px;
    width: 50px;
}
#footer .row {
	font-family: 'AlbertSans-Medium';
}
.footer-top-content {
	padding-top: 40px;
	padding-bottom: 0;
}
.footer-bottom-content {
	font-size: 12px;
}
/* footer ends */


/* news-single starts */
.news-header {
	font-size: 60px;
	font-family: 'AlbertSans-ExtraBold';
	color: #5C4AF5;
}
.news-single .date-category-wrap {
	font-size: 18px;
	font-family: 'AlbertSans-ExtraBold';
	text-transform: uppercase;
	color: #3b066e;
	padding-top: 30px;
	padding-bottom: 20px;
}
.news-single .news-list-category {
	float: left;
}
.news-single .news-list-date :before {
	content: "|";
	margin-left: 5px;
}
.news-single h1 {
	color: #3B066E;
	font-family: 'AlbertSans-ExtraBold';
	line-height: 1;
	margin-bottom: 50px;
}
.news-img h1 {
	font-size: 60px;
	margin-bottom: 34px;
}
.news-no-img h1 {
	font-size: 60px;
}
.news.news-single::after {
	border-bottom: 1px solid #f0f0f0;
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	max-width: 1280px;
	margin: auto;
	margin-bottom: auto;
	margin-bottom: 50px;
}
.news-single .news-img-wrap img {
	width: 100%;
	height: auto;
}
.news-single .news-text-wrap-outer {
	background-color: #ffffff;
	margin: auto;
	max-width: 1040px;
	z-index: -1;
	margin-top: -50px;
	padding: 20px;
}
.news-single .news-text-wrap {
	max-width: 840px;
	text-align: justify;
	display: block;
	margin: auto;
	font-family: 'AlbertSans-Light';
	line-height: 1.4;
}
.news-img .news-text-wrap {
	padding-top: 160px;
	padding-bottom: 100px;
}
.news-no-img .news-text-wrap {
	padding-top: 80px;
}
.news-single .news-img-wrap {
	position: relative 
}
.news-single .news-img-wrap .outer {
	width: 840px;
	margin: auto;
}
.bg-blue {
	background-image: linear-gradient(to right, #3B066E, #5C4AF5);
	width: 100%;
	color: #ffffff;
}
.bg-with-img {
	position: absolute;
	top: 25%;
	z-index: -1;
	height: 900px;
}
.news-single .bg-blue-banner {
	position: absolute;
	top: 8%;
	z-index: -1;
	height: 900px;
}
.news-header-img-wrap {
	max-width: 840px;
	margin: auto;
}

/* social icons starts */
.social-links-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 39px;
	padding-bottom: 67px;
	border-top: 1px solid #f0f0f0;
	margin-top: 77px;
}
.social-cions {
	display: flex;
	justify-content: flex-end;
}
.social-cions .mail {
	margin-left: 0;
}
.social-cions .twitter {
	margin-right: 0;
}
.print {
	font-family: 'AlbertSans-Medium';
	font-size: 18px;
	color: #3B066E;
	height: 100%;
	text-decoration: none;
	cursor: pointer;
}
.print img {
	display: inline-block;
}
.mail, .linked-in, .twitter, .xing {
	width: 21px;
	height: 21px;
	margin-left: 15px;
	margin-right: 15px;
}
.social-links-wrap img {
	width: 21px;
	height: 21px;
}
@media print {
	.navbar, .social-links-wrap, .news-list-view, #footer, .frame-center-header, .news-header {
		display: none !important;
   }
	#header {
		box-shadow: none;
		border-bottom: 1px solid #000000;
		position: absolute;
   }
}
/* news-single ends */


/* #page 21unity power service starts */
.page #c31 {
	padding-top: 0;
}
.page .row-reverse .frame-text-block {
	position: absolute;
	right: 0;
	margin-right: -60px;
	padding: 20px;
	background-color: #3B066E;
	box-shadow: none;
	color: #ffffff;
}
.page .frame-text-block h2 {
	color: #ffffff;
}
.page .accordion-heading-inner h2 {
	font-size: 40px;
	font-family: 'AlbertSans-ExtraBold';
	color: #292929;
	text-align: center;
	padding-right: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
}
.page .accordion-heading-inner {
	position: relative;
	cursor: pointer;
}
.page .accordion-heading-inner::after {
	content: "";
	background-image: url('../../../fileadmin/templates/21unity/images/uparrow.svg');
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(180deg);
	margin-top: 18px;
}
.page .accordion-heading.show .accordion-heading-inner::after {
	transform: none;
}
.page .accodion-content-item-wrap {
	color: #292929;
	font-size: 14px;
	font-family: 'AlbertSans-Light';
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
	padding: 20px;
}
.page .card-head {
	color: #ffffff;
	background-color: #3B066E;
	font-size: 22px;
	padding: 25px;
	border-top-right-radius: 15px;
	text-align: left;
  
}
.page .accodion-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.page .accodion-content .card {
	width: 30%;
	margin: 20px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 1px 1px 12px #c0c0c0;
	margin-top: 25px;
	margin-bottom: 65px;
    display: flex;
    flex-direction: column;
}
.accodion-content .contact-btn {
    margin-top: auto;
}
.page .accodion-content .card-body {
	text-align: left;
    padding: 10px 20px;
}
.page .accordion-content-wrap {
	display: none;
}
#page .accodion-content .accodion-content-item:first-child {
	margin-left: 0;
}
.page .accodion-content .accodion-content-item:last-child {
	margin-right: 0;
}
.page .accodion-content .accodion-content-item ul {
	padding-right: 35px;
	font-size: 16px;
	font-family: 'AlbertSans-Light';
}
.page .accodion-content .card ul li strong {
	font-size: 16px;
	font-family: 'AlbertSans-Medium';
}
.page .accodion-content .card-body ul{
    padding-right: 20px;
}

.page .accodion-content .card-body>ul>li {
	border-bottom: 1px solid #f0f0f0;
}
.page .accodion-content .card-body ul:nth-child(2) {
	border-top: 1px solid #f0f0f0;
}
.page .accodion-content ul li {
	list-style: disc;
	padding-top: 15px;
	padding-bottom: 5px;
}
.accordion-wrap {
	/*border-bottom: 1px solid #f0f0f0;*/
}
.contact-btn.accodion-contact-btn .btn {
	margin-bottom: 20px;
}
.frame-blue-text-block {
	max-width: calc(100% + 40px);
	justify-content: center;
	position: absolute;
	right: auto;
	top: 50%;
	margin-left: -90px;
	padding: 0 55px;
	padding-top: 66px;
	padding-bottom: 66px;
	background-color: #3b066e;
	transform: translateY(-50%);
	color: #ffffff;
	font-family: 'AlbertSans-Medium';
}

.frame-blue-text-block h2 {
	font-size: 60px;
	color: #ffffff;
}
/* #page 21unity power service ends */


/* 21 unity cloud starts */
.col-md-4 .frame-type-text h2 {
	font-size: 26px;
	color: #ffffff;
	margin-bottom: 10px;
	font-family: "AlbertSans-SemiBold";
}
.page .col-md-4 {
	width: 33%;
	margin: 15px;
}
.page .col-md-4:nth-child(3n-2) {
	margin-left: 0;
}
.page .col-md-4:nth-child(3n+0) {
	margin-right: 0;
}
.page .col-md-4 ul li {
	padding-left: 0;
}
.page .col-md-4 ul {
	padding-left: 15px;
	list-style-position: outside;
}
.col-md-4 a {
	color: #ffffff;
}
.frame-type-text strong {
	font-family: 'AlbertSans-ExtraBold';
}
#page #c111 ul {
	padding-left: 15px;
}
.icon-group-outer {
	display: flex;
	flex-wrap: wrap;
	background-image: linear-gradient(to bottom, #3B066E, #5C4AF5);
	padding-top: 20px;
	padding-bottom: 60px;
}
.icon-group-inner {
	width: 50%;
}
.page .icon-group img {
	margin: auto;
}
.page .icon-group {
	padding-top: 60px;
	padding-bottom: 20px;
}
.icon-group-text {
	color: #ffffff;
	text-align: center;
}
.container-full-width {
	max-width: 100%;
}
.business-info-wrap {
	max-width: 1320px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	padding-top: 25px;
	justify-content: center;
}
.contact-btn {
	padding-bottom: 25px;
}
.contact-btn .btn {
	margin-top: 0;
    margin-bottom: 0;
}
.half-center{
    margin-bottom: -50px !important;
}
.business-info-wrap-inner {
	width: 225px;
	height: auto;
	background-color: #ffffff;
	border-radius: 15px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 45px;
    padding: 40px 20px;
}
.business-type {
	font-size: 24px;
	font-family: 'AlbertSans-ExtraBold';
	color: #3B066E;
	text-align: center;
	line-height: 1;
	word-break: break-word;
	padding: 0 10px;
}
.business-storage, .business-users {
	font-size: 18px;
	font-family: 'AlbertSans-Light';
	text-align: center;
	color: #292929;
	word-break: break-word;
}
.business-storage {
	border-bottom: 1px solid #f0f0f0;
	padding-top: 20px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.business-users {
	padding-top: 20px;
	padding-bottom: 20px;
}
/* .business-info-wrap-inner:nth-child(6n-5) {
	margin-left: 0;
}
.business-info-wrap-inner:nth-child(6n+0) {
	margin-right: 0;
} */

#c118 h2 {
	font-size: 40px;
	text-align: center;
	font-family: 'AlbertSans-ExtraBold';
	color: #292929 !important;
	margin: auto;
}
/* 21unity cloud ends */


/* #page 21pro ERP starts */
.page .frame-center-header h2 {
	font-size: 40px;
	color: #3b066e;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 45px;
}
.page .frame-center-header {
	font-size: 18px;
	font-family: 'AlbertSans-Light';
	line-height: 1.3;
	max-width: 65%;
}
.page .frame-simple-col .col-md-6 h2 {
	color: #292929;
	font-family: 'AlbertSans-ExtraBold';
}
.page .frame-simple-col h2 {
	font-size: 26px;
	margin-bottom: 15px;
}
.page .col-md-6 ul {
	padding-left: 15px;
	list-style-position: outside;
}
.page .frame-simple-col {
	align-items: center;
	font-family: 'AlbertSans-Light';
	column-gap: 40px;
	position: relative;
}
.page .frame-simple-col .image .image-embed-item {
	width: 100%;
	height: auto;
}
.owl-dots {
	text-align: center;
}
.owl-dot.active span {
	background-color: #5C4AF5;
	border-radius: 50%;
	display: block;
	height: 15px;
	margin: 5px 7px;
	width: 15px;
	opacity: 1;
}
.owl-dot span {
	background-color: #29292933;
	border-radius: 50%;
	display: block;
	height: 15px;
	margin: 5px 7px;
	width: 15px;
	opacity: 0.4;
}
.slider-bg {
	background: #F5F2F8;
	height: 200px;
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: calc(100vw - 108%);
	right: 0;
}
.row-reverse .slider-bg {
	right: auto;
}
/* #page 21pro ERP ends */


/* impression starts*/

.blue-banner .main-content {
	max-width: 1124px;
	margin: auto;
}
.blue-banner h2 {
	font-size: 60px;
	font-family: 'AlbertSans-ExtraBold';
	color: #3B066E;
}
.bg-with-img {
	position: absolute;
	top: 25%;
	z-index: -1;
	height: 900px;
}
.bg-blue-banner {
	position: absolute;
	top: 0;
	z-index: -1;
	height: 900px;
}
.blue-bg-content {
	background-color: #ffffff;
	margin: auto;
	max-width: 1020px;
	z-index: -1;
	padding: 0 139px;
	padding-bottom: 89px;
	margin-top: 92px;
	margin-bottom: 90px;
	text-align: justify;
}
.blue-banner .blue-bg-content h2 {
	padding-top: 33px;
	margin-bottom: 45px;
}
.blue-bg-content a:nth-child(6) {
	text-decoration: none;
}
.blue-bg-content a:last-child {
	text-decoration: none;
}
.blue-banner #footer h2 {
	font-size: 18px;
	color: #ffffff;
}
.blue-banner .blue-bg-content ol {
	padding-left: 0;
}
.blue-banner .blue-bg-content ul {
	padding-left: 15px;
	list-style-position: outside;
}
/* impression ends */


/* Datenschutz starts */
.blue-banner .blue-bg-content h3 {
	font-size: 26px;
	font-family: 'AlbertSans-ExtraBold';
	color: #3B066E;
	display: inline;
}
.blue-banner .blue-bg-content ol {
	counter-reset: item;
}
.blue-banner .blue-bg-content .frame>ol>li::before {
	color: #3B066E;
	font-size: 26px;
}
.blue-banner .blue-bg-content ol>li {
	display: block;
}
.blue-banner .blue-bg-content ol>li::before {
	content: counters(item, ".")".";
	counter-increment: item;
}
.blue-banner .blue-bg-content ul>li {
	list-style-type: disc;
}
/* Datenschutz ends */


/* animation starts */
.dealy-1 {
	transition-delay: 0.5s !important;
}
.dealy-2 {
	transition-delay: 1s !important;
}
.dealy-3 {
	transition-delay: 1.5s !important;
}
.dealy-5 {
	transition-delay: 2.5s !important;
}
.dealy-4 {
	transition-delay: 2s !important;
}
.dealy-6 {
	transition-delay: 3s !important;
}
.dealy-7 {
	transition-delay: 3.5s !important;
}
.dealy-8 {
	transition-delay: 4s !important;
}
.dealy-9 {
	transition-delay: 4.5s !important;
}
.dealy-10 {
	transition-delay: 5s !important;
}
.dealy-11 {
	transition-delay: 5.5s !important;
}
.dealy-12 {
	transition-delay: 6s !important;
}
/* animation ends */


/* kontact form starts */
.tx-powermail, .frame-type-form_formframework {
	max-width: 1120px;
	margin: auto;
	background-color: #ffffff;
	color: #292929;
	font-size: 18px;
	padding: 0 139px;
	position: relative;
	margin-top: 60px;
	padding-bottom: 70px;
	padding-top: 70px;
}
.powermail_field, .frame-type-form_formframework .input {
	margin-top: 10px;
	margin-bottom: 20px;
}
.powermail_fieldwrap, .frame-type-form_formframework .form-group, #anfrageKontakt-150 .form-wrap-statictext-1 {
	margin-top: 10px;
	margin-bottom: 20px;
}
.frame-type-form_formframework fieldset.form-group {
	margin-bottom: 0;
}
#anfrageKontakt-150 .form-wrap-statictext-1 p {
	margin-bottom: 0;
}
#anfrageKontakt-150 .form-wrap-statictext-1 {
	padding-bottom: 20px;
}
#anfrageKontakt-150 .form-wrap-text-2 .form-label {
	opacity: 0;
	visibility: hidden;
}
.powermail_fieldset_1 {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.powermail_form h2, .frame-type-form_formframework h2 {
	font-size: 60px;
	color: #3B066E;
	font-family: 'AlbertSans-ExtraBold';
}
.powermail_label, .powermail_legend, .frame-type-form_formframework .form-label, .frame-type-form_formframework .static-text h2 {
	color: #292929;
	font-family: 'AlbertSans-Bold';
}
.frame-type-form_formframework .static-text h2 {
	font-size: inherit;
	display: none;
}
.powermail_input, .form-control {
	width: 100%;
	height: 45px;
	padding: 0 12px;
}
.powermail_fieldset_1 .powermail_fieldwrap {
	width: 48%;
}
.powermail_input::placeholder, .form-control::placeholder {
	color: #707070;
	font-family: 'AlbertSans-Medium';
	font-size: 18px;
}
.powermail_field .powermail_select, select.form-control {
	width: 100%;
	height: 45px;
	background: none;
	-moz-appearance: none;
	background-image: url('../../../fileadmin/templates/21unity/images/select-arrow.svg');
	background-repeat: no-repeat;
	background-position: 98%;
	background-size: 16px;
}
.powermail_field select, select.form-control {
	color: #707070;
	font-family: 'AlbertSans-Medium';
	padding: 0 12px;
}
.powermail_field .powermail_textarea, textarea.form-control {
	width: 100%;
	height: 80px;
	padding: 5px 12px;
	overflow-y: hidden;
}
.powermail_fieldset_4 {
	padding-bottom: 20px;
}
.powermail_field_error, .parsley-error {
	border-color: #FF0000;
}
.powermail-errors-list, .parsley-errors-list {
	color: #FF0000;
	font-family: 'AlbertSans-Medium';
}
.powermail-errors-list li, .parsley-errors-list li {
	list-style: none;
	font-size: 12px;
}
ul.powermail-errors-list, .parsley-errors-list {
	padding-left: 0;
}
.powermail_field_error::placeholder, .parsley-error::placeholder {
	color: #FF0000;
}
.form_formframework .static-text h2 {
	display: none;
}
/* checkbox starts*/
.checkbox {
	font-size: 13px;
}
label .powermail_checkbox, .form-check input {
	height: 24px;
	width: 24px;
	border: 1px solid #707070;
	-webkit-appearance: none;
	background: transparent;
	cursor: pointer;
}
label .powermail_checkbox {
	border-color: #707070;
}
.checkbox label .powermail_checkbox:checked, .form-check input:checked {
	background-image: url('../../../fileadmin/templates/21unity/images/checkbox-checked-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 80%;
}
.powermail_fieldset input, .powermail_select, .powermail_textarea, .form-control {
	border: 1px solid #707070;
}
.checkbox label {
	display: flex;
	cursor: pointer;
}
.checkbox label input {
	width: 25px;
	height: 25px;
	margin-right: 15px;
	transform: translateY(5px);
	flex-shrink: 0;
}
/*checkbox ends */

.powermail_submit, .form-navigation .btn {
	width: 188px;
	font-size: 14px;
	font-family: 'AlbertSans-Bold';
	color: #fff;
	background-color: #5C4AF5;
	border-radius: 50px;
	padding: 12px 22px;
	text-transform: uppercase;
	cursor: pointer;
	margin: 0;
	border: 1px solid #707070;
}
.full-bg .container {
	position: relative;
}
#c152 {
	position: absolute;
	top: 0;
	right: 70px;
}
#c152 a {
	text-decoration: none;
	color: #ffffff;
	font-size: 28px;
	line-height: 1px;
}
.full-bg.bg-blue {
	background-image: linear-gradient(#3B066E, #4823A2);
	width: 100%;
	color: #ffffff;
}
/* kontact form ends */


/*  loader  */
#loader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1999;
	background-color: white;
}
.loader_logo {
	background-image: url('../../../fileadmin/templates/21unity/images/21unitylogo-new.png');
	width: 180px;
	height: 116px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* loader ends */
.frame-type-div .ce-div {
	border: 1px solid #D1D1D1;
	margin-bottom: 50px;
	background-color: #D1D1D1;
}
ul li>ul li {
	list-style: disc;
}
.back-btn {
	color: #5C4AF5;
	cursor: pointer;
	display: table;
	text-transform: uppercase;
	padding: 30px 0;
	position: relative;
	padding-left: 26px;
}
.back-btn::before {
	content: "<<";
	display: inline-block;
	position: absolute;
	left: 0;
	transition: all 0.5s ease 0s;
}
.back-btn:hover:before {
	left: -5px;
}
.powermail_create {
	text-align: center;
}
.wrapper.blue-banner {
	font-size: 16px;
}
#c30 img{
    max-width:80%;
    margin: auto;
}
.btn-half{
    position: relative;
    top: 25px;
}
.card-img img{
    width: 100%;
  margin-bottom: 30px;
}
.row .ce-center .ce-outer{
    float: none;
  right: auto;
}
.row  .ce-right .ce-gallery{
    float: none;
}
.row .ce-center .ce-inner {
    float: none;
    right: auto;
  }
  .row  .ce-left .ce-gallery .ce-column{
    float: none;
  }
  .row   .ce-gallery figure{
    display: block;
  }
  .row  .ce-gallery img{
    width: 100%;
  }
  #c117 .ce-gallery .ce-column{
    float: left;
  }

@media(min-width:1200px) {
    #header .logo{
        width:180px;
        height: auto;
    }
    .main-content {
        padding-top: 130px;
      }
}

@media(max-width:1400px) {
	.frame-text-block {
		padding: 30px 30px;
	}

	.row-reverse .frame-text-block {
		padding: 30px;
	}

	.frame-blue-text-block {
		padding: 30px 30px;
	}

	.nav ul,
	.lang_menu {
		font-size: 15px;
	}

	.nav ul li {
		padding: 0 10px;
	}
}

@media(max-width:1320px) {
	.lang_menu {
		padding: 0px;
	}

	.frame-text-block {
		padding: 30px 30px;
	}

	.row-reverse .frame-text-block {
		padding: 30px;
	}

	.frame-blue-text-block {
		padding: 30px 30px;
	}

	#c152 {
		right: 45px;
	}
}

@media(max-width:1230px) {
	.frame-text-block h2 {
		font-size: 40px;
	}

	.frame-blue-text-block h2 {
		font-size: 40px;
	}

	.frame-blue-text-block {
		padding: 20px 20px;
	}
}

@media (min-width: 991px) {
	.nav-icon-wrap {
		display: none;
	}

	.mobile-menu-view {
		display: none;
	}

	.lang_menu {
		position: absolute;
		top: 15px;
		right: 20px;
	}

	.header-bg .lang_menu {
		top: 2px;
	}

	.header-bg .header-wrap {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	#header.header-bg .logo {
		width: 80px;
		
	}
    .row-reverse .frame-blue-text-block {
        right: 0;
        margin-left: auto;
        margin-right: -90px;
    }
}

@media(max-width: 991px) {
	.footer-menu-wrap {
		padding-top: 40px;
		padding-bottom: 40px;
		text-align: center;
		font-family: 'AlbertSans-bold';
		text-transform: uppercase;
	}

	.footer-menu-wrap ul {
		padding-left: 0;
		list-style: none;
	}

	.footer-menu-wrap ul li {
		padding: 10px;
		font-size: 23px;
	}

	.footer-menu-wrap ul a {
		text-decoration: none;
		position: relative;
	}

	.lang_menu-desktop {
		display: none;
	}

	#header .logo {
		width: 100px;
	}

	.nav-icon-wrap,
	.menu-btn-close {
		position: absolute;
		right: 20px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		color: #3b066e;
		display: flex;
		align-items: center;
		z-index: 9;
	}

	.navbar-toggler,
	.navbar-toggler-close {
		width: 50px;
		height: 18px;
		cursor: pointer;
		border-color: transparent;
		background-color: transparent;
		position: relative;
		padding: 0;
	}

	.navbar-toggler-icon-after,
	.navbar-toggler-icon-center,
	.navbar-toggler-icon-before {
		position: absolute;
		display: block;
		width: 45px;
		height: 2px;
		background-color: #3b066e;
		border-radius: 1px;
		transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
	}

	.navbar-toggler-icon-before {
		top: 0;
	}

	.navbar-toggler-icon-center {
		top: 6px;
	}

	.navbar-toggler-icon-after {
		top: 12px;
	}

	.nav ul {
		flex-direction: column;
		font-size: 30px;
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.nav ul li {
		padding: 10px;
		margin-bottom: 10px;
	}

	.nav ul li:last-child {
		padding-right: 10px;
	}

	.banner video {
		top: auto;
	}

	.banner .container {
		flex-direction: row;
	}

	.banner-text {
		padding-top: 20px;
	}
/* 
	.banner {
		height: calc(100vh - 72px);
	} */

	.header-wrap .container {
		flex-direction: column;
		align-items: flex-start;
		position: relative;
	}

	.header-wrap {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.main-content {
		padding-top: 58px;
	}

	.nav-open .menu-wrapper .logo {
		display: none
	}

	.lang_menu {
		font-size: 23px;
		padding-top: 20px;
	}

	#c152 {
		right: 20px;
		top: -40px;
	}

	.menu-wrapper {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		background-color: white;
		transition: 0.5s ease;
		padding-top: 122px;
	}

	.nav-icon-wrap.is-active .navbar-toggler-icon-before {
		top: 10px;
		transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .16s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s;
		transform: rotate(-130deg);
	}

	.nav-icon-wrap.is-active .navbar-toggler-icon-center {
		opacity: 0;
	}

	.nav-icon-wrap.is-active .navbar-toggler-icon-after {
		top: 10px;
		transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .16s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s;
		transform: rotate(130deg);
	}

	.nav-open .menu-wrapper {
		opacity: 1;
		visibility: visible;
	}

	.nav ul {
		align-items: center;
	}

	.menu-wrapper .tx-srlanguagemenu {
		justify-content: center;
	}

	.row {
		flex-direction: column;
	}

	.col-md-6,.col-md-6, .col-50,
	.col-md-2 {
		width: 100%;
        margin-bottom: 20px;
	}

   
    	.spl-col .col-md-6:nth-child(2) {
		max-width: 100%;
	}

	.frame-text-block {
		max-width: none;
		top: 0;
		margin-left: 0;
		transform: none;
	}

	.row-reverse .frame-text-block {
		justify-content: center;
		position: relative;
		right: 0;
		margin-right: 0;
	}

	.ce-image.ce-right.ce-above {
		display: flex;
		justify-content: center;
	}

	.btn {
		margin: 20px auto;
		padding: 13px 18px;
	}

	.news-list-view .article {
		width: 45%;
	}

	#footer #c21 .ce-image {
		width: 175px;
		margin: auto;
		padding-bottom: 20px;
	}

	.footer-bottom-content {
		text-align: center;
	}

	.footer-wrap {
		text-align: center;
	}

	.icon-text-wrap {
		width: 48%;
        margin: auto;
		margin-bottom: 60px;
	}

	.icon-txt {
		padding-top: 5px;
	}

	.icon-wrap-content {
		padding: 0px;
		padding-top: 10px;
	}

	.icon-group-inner {
		width: 48%;
	}

	.frame-blue-text-block {
		width: 100%;
		position: unset;
		transform: translateY(0%);
		padding-right: 20px;
		padding-left: 30px;
        margin-left: 0;
	}

	.frame-space-before-medium {
		padding-top: 30px;
	}

	.frame-space-after-medium {
		padding-bottom: 50px;
	}

	.frame-space-after-small {
		padding-bottom: 30px;
	}

	.frame-space-before-small {
		padding-top: 30px;
	}

	.frame-space-after-large {
		padding-bottom: 50px;
	}

	.page .accodion-content {
		flex-direction: column;
	}

	.page .accodion-content .card {
		width: 100%;
		margin: 0px;
		margin-bottom: 50px;
	}

	.page .accordion-heading h2 {
		font-size: 30px;
		padding-right: 30px;
	}

	.page .accordion-heading::after {
		margin-top: 13px;
	}

	.page .col-md-4 {
		margin: 0px;
		width: 100%;
	}

	.page .row .col-md-6 ul {
		padding-left: 30px;
	}

	.page .accordion-heading-inner::after {
		margin-top: 15px;
		width: 20px;
		height: 20px;
	}

	.container-full-width {
		padding: 0px;
	}

	.page .frame-simple-col .col-md-6 h2 {
		padding-top: 30px;
	}

	.page .frame-center-header {
		max-width: 90%;
	}

	.frame-center-header {
		max-width: 100%;
		font-size: 40px;
	}
    #c30 img{
        max-width: 100%;
    }
	.news-single .news-img-wrap .outer {
		width: 70%;
	}

	.news-img h1 {
		font-size: 50px;
	}

	.news-no-img .news-text-wrap {
		padding-top: 0px;
	}

	.news-no-img h1 {
		font-size: 60px;
	}

	.news-header {
		font-size: 60px;
	}

	.news-list-view .news-no-img .headline {
		font-size: 26px;
	}

	.news-single h1 {
		margin-bottom: 70px;
	}

	.news-no-img .news-header-img-wrap {
		top: 0px;
		padding: 0px;
	}

	.tx-powermail, .frame-type-form_formframework {
		padding-left: 20px;
		padding-right: 20px;
		font-size: 18px;
	}

	.powermail_fieldset {
		min-width: 100%;
	}

	.powermail_fieldset_1 {
		width: 100%;
		flex-wrap: wrap;
	}

	.powermail_input {
		width: auto;
	}

	.powermail_field .powermail_textarea, textarea.form-control {
		width: 100%;
		height: 50px;
	}

	.powermail_input {
		width: 100%;
		height: 50px;
	}

	.powermail_fieldwrap, .frame-type-form_formframework .form-group {
		margin: 0px;
	}

	.powermail_field .powermail_select {
		/* height: 50px; */
	}

	.powermail_field .powermail_textarea::placeholder {
		line-height: 3;
	}
	.frame-type-form_formframework .col-md-6 {
		margin-bottom: 0;
	}
	#anfrageKontakt-150 .form-wrap-text-2 .form-label {
		display: none;
	}

	.checkbox label input {
		width: 20px;
		height: 20px;
	}

	.blue-banner .main-content {
		max-width: 80%;
	}

	.blue-bg-content {
		text-align: unset;
		padding: 0 30px;
	}

	.blue-banner .blue-bg-content h2 {
		word-break: break-all;
	}

	.blue-banner h2 {
		font-size: 53px;
	}

	.more {
		padding: 13px 18px;
		bottom: -25px;
	}

	.powermail_form h2, .frame-type-form_formframework h2 {
		font-size: 40px;
	}
    .icon-group-outer{
        margin-bottom: 20px;
    }
}

@media(max-width: 768px) {
	h2 {
		font-size: 30px;
	}

	.frame-center-header {
		font-size: 27px;
	}

	#c30 .ce-row {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.news-img .news-text-wrap {
		padding-bottom: 50px;
	}

	.news-no-img h1 {
		font-size: 55px;
	}

	.news-header {
		font-size: 55px;
		padding-top: 20px;
	}

	.news-list-view .news-no-img .headline {
		font-size: 26px;
	}

	.frame-text-block h2,
	h1 {
		line-height: 1;
	}

	.page .card-head {
		font-size: 20px;
	}

	.frame-blue-text-block {
		padding: 40px 20px;
	}

	.frame-blue-text-block h2 {
		padding-bottom: 20px;
		font-size: 40px;
	}

	.powermail_fieldset_1 .powermail_fieldwrap {
		width: 100%;
	}

	h2 {
		line-height: 1.2;
	}

	.page .col-md-4 {
		padding-bottom: 20px;
	}

	.page .frame-center-header h2 {
		font-size: 30px;
		margin-top: 0px;
		margin-bottom: 20px;
	}

	.page .accordion-heading-inner::after {
		margin-top: 4px;
	}

	.frame-space-before-extra-large {
		padding-top: 40px;
	}

	.news-list-view {
		padding-top: 0px;
	}

	.blue-banner h2 {
		font-size: 48px;
	}

	.news-text-wrap-outer th,
	td {
		display: block;
		height: auto !important;
		width: auto !important;
	}

	.news-text-wrap-outer table {
		margin-top: 30px;
	}
}

@media(max-width: 700px) {
	.news-list-view .article {
		width: 100%;
		margin-left: 0px;
	}

	.frame-text-block h2,
	h1 {
		font-size: 45px;
	}

	.page .accordion-heading h2 {
		font-size: 25px;
		margin: 40px 0;
	}

	#c117 .ce-row:last-child {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.news-img h1 {
		font-size: 40px;
	}

	.news-header {
		font-size: 40px;
	}

	.news-img .news-text-wrap {
		padding-top: 50px;
	}

	.news-no-img h1 {
		font-size: 45px;
	}

	.frame-text-block {
		padding: 30px 20px;
	}

	.row-reverse .frame-text-block {
		padding: 30px 20px;
	}

	.blue-banner .main-content {
		max-width: 90%;
	}

	.blue-bg-content {
		padding: 0 20px;
		margin-bottom: 50px;
		margin-top: 80px;
	}

	.blue-banner h2 {
		font-size: 40px;
	}

	.blue-banner .blue-bg-content h3 {
		font-size: 20px;
		line-height: 1;
	}

	.blue-banner .blue-bg-content h2 {
		padding-bottom: 20px;
	}

	.blue-banner .blue-bg-content .frame>ol>li::before {
		font-size: 20px;
	}
}

@media(max-width: 580px) {
	.business-type {
		font-size: 1em;
	}

	html,
	body {
		font-size: 18px;
	}

	.icon-text-wrap,
	.icon-group-inner {
		width: 36%;
		margin: auto;
		margin-bottom: 30px;
		hyphens: auto;
		word-break: break-all;
	}

	.page .accordion-heading h2 {
		font-size: 20px;
	}

	.page .accordion-heading-inner::after {
		margin-top: 3px;
	}

	.frame-blue-text-block h2 {
		font-size: 30px;
	}

	.news-img .news-text-wrap {
		padding-bottom: 40px;
	}

	.news-img h1 {
		font-size: 30px;
	}

	.news-no-img h1 {
		font-size: 35px;
	}

	.news-img .news-text-wrap {
		padding-bottom: 0px;
	}

	#c118 h2 {
		font-size: 25px;
	}

	.blue-banner h2 {
		font-size: 30px;
	}
}

@media(max-width: 480px) {
	.container .frame-center-header h2 {
		font-size: 25px;
	}

	.nav ul,
	.lang_menu {
		font-size: 23px;
	}

	.news-no-img h1 {
		font-size: 28px;
	}

	.news-header {
		font-size: 28px;
	}

	.news-img h1 {
		font-size: 23px;
	}

	.frame-text-block h2,
	h1 {
		font-size: 30px;
	}

	.news-list-view .news-no-img .headline {
		font-size: 28px;
	}

	.frame-center-header {
		font-size: 28px;
	}

	.blue-bg-content {
		padding: 0 20px;
	}

	.page .accordion-heading-inner::after {
		margin-top: 3px;
	}

	.news-list-view .news-content-wrap .headline {
		font-size: 18px;
		line-height: 1;
	}

	.mail,
	.linked-in,
	.twitter,
	.xing {
		margin-right: 8px;
		margin-left: 8px;
	}

	.banner {
		height: auto;
	}

	.icon-group-text {
		word-break: break-all;
	}

	#footer #c21 .ce-image {
		width: 80px;
	
		margin: auto;
	}

	#c21 .image {
		width: 100%;
	}
}

@media(max-width: 340px) {

	.nav ul,
	.lang_menu {
		font-size: 20px;
	}

	.frame-center-header {
		font-size: 24px;
	}

	.frame-text-block h2,
	h1 {
		font-size: 28px;
	}

	.page .accordion-heading h2 {
		font-size: 20px;
	}

	.frame-blue-text-block h2 {
		font-size: 27px;
	}

	.news-img h1 {
		font-size: 21px;
	}

	.print {
		padding-right: 10px;
		text-align: center;
	}
}