/*------------------------------------------------------------------
aprotec GmbH
Version: 1.0;
Author: BRANDORT digitalschmiede GmbH
Author URI: https://www.brandort.de/

/*-----------------------------------------------------------------*/

/*------------------------------------------------------------------
[ Fonts ]
*/
/* karla-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/karla-v33-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* karla-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Karla';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/karla-v33-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*------------------------------------------------------------------
[ Variables ]
*/
:root {
  --primary-dark: #1E1E1E;
  --tuerkis: #00b6ad;
  --base-white: #fff;
  --black: #0B0F0E;
  --hellgrau: #ccc;
  --outline-light-color: #7594FF;
  --outline-dark-color: #171717;
  --main-font: 'Karla';
  --max-container-width: '128rem';
  --box-shadow-1: 10px 10px 20px 0 rgba(0, 0, 0, 0.25);
}

/*------------------------------------------------------------------
[ General]
*/
html {
	-webkit-font-smoothing: antialiased;
	font-size: 62.5%;
}
html, body {
	max-width: 100%;
    overflow-x: hidden;
}
body { 
	margin:0;
	padding:0;
	color: var(--primary-dark);
    font-family: var(--main-font);
    font-size: 1.7rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
    background: var(--base-white);
    overflow-x: hidden;
}      
body.sidebar-open {
    overflow: hidden !important;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}
.divider, hr {
	border: none;
	border-bottom: 0 solid #eaeaea;
	padding: 4rem 0;
	height: 0;
}
.screen-reader-text:focus {
    font-size: 1.4rem;
}
*:focus-visible {
    outline:var(--outline-light-color) solid 3px;
    outline-offset:3px;
    box-shadow: 0 0 0 3px var(--outline-light-color) !important;
}

/*------------------------------------------------------------------
[ Grid ]
*/
.container {
	width: 100%;
    max-width: var(--max-container-width);
	margin: 0 auto;
	position: relative;
}
.content .container {
    max-width: 100%;
}
.grid {
	display: block;
    clear: both;
    width: 100%;
    margin: 0 auto;
}
.grid .col,
[class*="content-grid"] .grid-item {
	float: left;
	width: 100%;
	padding: 0 2rem;
}
.grid .grid {
	width: auto;
}

/* Kill nested padding */
.col .col:not(.pull-right):first-child { padding-left: 0;}
.col .col:not(.pull-left):last-child { padding-right: 0;}
.col .col:only-child {
    padding-right: 2rem !important;
}
.col[class*='offset-']:only-child {
    padding-left: 2rem !important;
    padding-right: 0 !important;
}

/* No gutter */
.no-gutter .col,
.col.no-gutter {
	padding: 0 !important;
}

/* Column Widths */
.grid .span-1	{width: 8.33333%;}
.grid .span-2	{width: 16.66667%;}
.grid .span-3	{width: 25%;}
.grid .span-4	{width: 33.33333%;}
.grid .span-5	{width: 41.66667%;}
.grid .span-6	{width: 50%;}
.grid .span-7	{width: 58.33333%;}
.grid .span-8	{width: 66.66667%;}
.grid .span-9	{width: 75%;}
.grid .span-10	{width: 83.33333%;}
.grid .span-11	{width: 91.66667%;}
.grid .span-12	{width: 100%;}

/* Rearrange Columns */
.col.pull-left    { float: left;}
.col.pull-right   { float: right;}
.col .col.pull-left    { padding-left: 0;}
.col .col.pull-right   { padding-right: 0;}

/* Offset */
.grid .offset-1    {margin-left: 8.33333%;}
.grid .offset-2	   {margin-left: 16.66667%;}
.grid .offset-3	   {margin-left: 25%;}
.grid .offset-4	   {margin-left: 33.33333%;}
.grid .offset-5	   {margin-left: 41.66667%;}
.grid .offset-6	   {margin-left: 50%;}
.grid .offset-7	   {margin-left: 58.33333%;}
.grid .offset-8	   {margin-left: 66.66667%;}
.grid .offset-9    {margin-left: 75%;}
.grid .offset-10   {margin-left: 83.33333%;}
.grid .offset-11   {margin-left: 91.66667%;}

/* Clearfix*/
.grid {
 	*zoom: 1;
}
.grid:before, .grid:after {
	display: table;
	content: "";
	line-height: 0;
}
.grid:after {
	clear: both;
}
[class*="content-grid"] {
    margin-left: -2rem;
    margin-right: -2rem;
    overflow: hidden;
}
[class*="content-grid"] .grid-item {
	margin: 0 0 4rem;
	float: left;
}
[class*="content-grid"] .thumbnail {
	float: none;
    margin: 0;
}

/* Item Widths */
.content-grid-1 .grid-item {
	width: 100%;
}
.content-grid-2 .grid-item {
	width: 50%;
}
.content-grid-3 .grid-item {
	width: 33.33333%;
}
.content-grid-4 .grid-item {
	width: 25%;
}
.content-grid-5 .grid-item {
	width: 20%;
}
.content-grid-6 .grid-item {
	width: 16.66667%;
}
[class*="content-grid"].no-gutter,
[class*="content-grid"].no-gutter .grid-item {
    margin: 0;
    padding: 0;
}

/*------------------------------------------------------------------
[ Typography ]
*/
/*
h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading,
.elementor-widget-text-editor h1, .elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-text-editor h2, .elementor-widget-heading h2.elementor-heading-title,
.elementor-widget-text-editor h3, .elementor-widget-heading h3.elementor-heading-title,
.elementor-widget-text-editor h4, .elementor-widget-heading h4.elementor-heading-title,
.elementor-widget-text-editor h5, .elementor-widget-heading h5.elementor-heading-title,
.elementor-widget-text-editor h6, .elementor-widget-heading h6.elementor-heading-title {
    font-family: var(--main-font);
	color: var(--tuerkis);
    font-weight: 900;
    line-height: 1.5;
	margin: 0;
    hyphens: auto;
}
h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading {
    margin-bottom: 2rem;
}
h1.wp-block-heading,
.elementor-widget-text-editor h1,
.elementor-widget-heading h1.elementor-heading-title {
	font-size: 12rem;
    line-height: 1.2;
}
h2.wp-block-heading,
.elementor-widget-text-editor h2,
.elementor-widget-heading h2.elementor-heading-title, .h2-font-style p {
    font-size: 6rem;
    line-height: 1.2;
}
h3.wp-block-heading,
.elementor-widget-text-editor h3,
.elementor-widget-heading h3.elementor-heading-title {
	font-size: 4rem;
    line-height: 1.5;
}
h4.wp-block-heading,
.elementor-widget-text-editor h4,
.elementor-widget-heading h4.elementor-heading-title {
	font-size: 3rem;
}
h5.wp-block-heading,
.elementor-widget-text-editor h5,
.elementor-widget-heading h5.elementor-heading-title {
	font-size: 2rem;
}
h6.wp-block-heading,
.elementor-widget-text-editor h6,
.elementor-widget-heading h6.elementor-heading-title {
	font-size: 1.6rem;
}
*/
.elementor-heading-title span {
    color: var(--tuerkis);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
    text-decoration: none;
    color: inherit;
}
h1 a:hover, 
h2 a:hover, 
h3 a:hover, 
h4 a:hover, 
h5 a:hover, 
h6 a:hover {
    color: inherit;
    /*text-decoration: underline;*/
}
/*
p,
.elementor-widget-text-editor p,
.elementor-widget-heading p.elementor-heading-title, .elementor-widget-heading .small-heading.elementor-heading-title, cite.elementor-blockquote__author {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
	margin: 0 0 2rem 0;
}
*/
.elementor-widget-text-editor p:last-child,
.elementor-widget-heading p.elementor-heading-title:last-child,
.elementor-widget-heading .small-heading.elementor-heading-title:last-child {
    margin-bottom: 0;
}
.elementor-widget-heading p.elementor-heading-title.elementor-size-small {
    font-size: 1.2rem;
}
a,
p a,
.elementor-widget-text-editor p a,
a:active, .elementor-widget-text-editor p a:active,
a:visited, .elementor-widget-text-editor p a:visited {
	color: var(--tuerkis);
	outline: none;
    transition: all 0.25s ease-out;
}
.elementor-widget-heading p a,
.elementor-widget-text-editor p a {

}
.wrapper a:hover, 
.wrapper p a:hover, 
a:hover, 
.wrapper .elementor-widget-icon-list a:hover span, 
.wrapper a:hover, 
a:focus {
	text-decoration: underline;
    color: var(--tuerkis);
}
a:focus {
   outline: none;
}
strong, b {
    font-weight: 800;           
}
.multi-column {
    margin: 0 auto;
    column-count: 2;
    column-gap: 3rem;
    max-width: 100rem;
}
.elementor-heading-title,
.elementor-slide-description,
.elementor-gallery-item__description,
.elementor-carousel-image-overlay,
.elementor-image-box-description,
.elementor-icon-box-description,
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
    white-space: pre-line;
}
.elementor-widget-text-editor p:last-child,
.elementor-slide-description p:last-child {
    margin: 0;
}

/* Text Highlight */
::selection {
	background: #333;
	color: #fff;
}
::-moz-selection {
	background: #333;
	color: #fff;
}
.elementor-widget.max-width {
    max-width: 90rem;
    margin: 0 auto;
}

/*------------------------------------------------------------------
[ Lists ]
.elementor-element-edit-mode
*/
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ul, 
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ol {
	margin: 0 0 3rem 0;
	padding: 0;
}
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ul {
	list-style: disc outside;
    padding: 0;
}
ol {
    margin: 0 0 3rem 0;
	list-style: decimal inside;
    overflow: hidden;
}
ol > li {
    position: relative;
    list-style: none;
    counter-increment: listStyle;
}
ul ul, ul ol,
ol ol, ol ul {
	margin: 0.3rem 0 0.3rem 2rem;
	list-style: inherit;
}
ol ul {
	list-style: disc inside;
}
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ul {
    margin: 0 0 2rem;
    padding: 0;
}
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ul li,
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ol li {
    position: relative;
    margin-bottom: .5rem;
    padding-left: 2.5rem;
    list-style: none;
    font-weight: 300;
    line-height: 1.4;
}
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ul li::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: .5rem;
    width: .5rem;
    height: .5rem;
    border-radius: 2.5rem;
    background-color: currentColor;
    background-size: .9rem;
}
.wp-theme-aprotec .elementor-element.dunkel .elementor-widget-text-editor:not(.elementor-element-edit-mode) ul li::before  {
    background: var(--base-white);
}
.wp-theme-aprotec .elementor-widget-text-editor:not(.elementor-element-edit-mode) ol > li::before {
    content: counter(listStyle, decimal)'.';
    position: absolute;
    top: 0;
    left: 1rem;
    color: var(--base-white);
    font-family: var(--main-font);
    font-size: 2.4rem;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    display: inline-block; 
    width: 2rem;
    text-align: right;
}
.elementor-widget:not(.elementor-element-edit-mode) ul {
    margin: 0;
}
.wp-theme-aprotec .elementor-widget-text-editor.list:not(.elementor-element-edit-mode) ul li {
    padding-left: 3rem;
}
.wp-theme-aprotec .elementor-widget-text-editor.list:not(.elementor-element-edit-mode) ul li::before {
    top: .5rem;
    left: 0;
    width: 2rem;
    height: 1.8rem;
    border-radius: 0;
    background: url(../images/icon-check.png) no-repeat center center;
    background-size: contain;
}

/*------------------------------------------------------------------
[ Top Bar ]
*/
/* regular styling (for scrolling up) */
.top {
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 1010;
    visibility: visible;
    opacity: 1;
    transition: all 0.25s ease-out;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 1rem 2.1rem rgba(0,0,0,0.0)
}
body.elementor-editor-active .top {
    /*pointer-events: none;*/
}
.logo {
    position: absolute;
    top: 4.5rem;
    left: 2rem;
	padding: 0;
    opacity: 1;
    transition: opacity 0.25s ease-out;
}
.logo img {
    width: 20rem;
    transition: all 0.25s ease-out;
}
.logo a {
	display: block;
}
/* styling for scrolling past header section */
.top.down {
    padding: 0;
    background: var(--tuerkis);
    box-shadow: 0 1rem 4rem rgba(0,0,0,0.1);
}
/* styling for scrolling down */
.top.shrink {
    opacity: 0;
    visibility: hidden;
}
/* styling for opened overlay */
.top.force {
    opacity: 1 !important;
    visibility: visible !important;
}

/*------------------------------------------------------------------
[ Navigation ]
*/
.main-navigation,
.main-navigation ul {
	margin: 0;
	padding: 0;
}
.main-navigation {
    position: absolute;
	top: 3rem;
	right: 2rem;
	width: auto;
    transition: top 0.25s ease-out;
}
.main-navigation a:focus {
   outline: none;
}
.main-navigation li {
	display: inline-block;
	position: relative;
	z-index: 100;
}
.main-navigation > li > a {
    height: 4.8rem;
}
.main-navigation li a {
    position: relative;
	font-size: 1.8rem;
	font-weight: normal;
	text-decoration: none;
	padding: 1rem 2rem;
	display: block;
    color: var(--tuerkis);
}
.main-navigation > li.current-menu-item > a,
.main-navigation > li.current-menu-parent > a,
.main-navigation > li.current_page_item > a,
.main-navigation > li.current-page-parent > a,
.main-navigation > li.current_page_ancestor > a,
.main-navigation > li.current-page-ancestor > a,
.main-navigation > li.current-menu-ancestor > a,
.main-navigation li.current > a {
	color: var(--base-white);
    text-decoration: none;
}
.main-navigation li > a:hover,
.main-navigation li:hover > a {
    text-decoration: underline;
}
.main-navigation li.has-child > a {
    padding-right: 3rem;
}
.main-navigation li.has-child > a::before,
.main-navigation li.menu-item-has-children > a::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 1rem;
    border-bottom: 2px solid var(--tuerkis);
    border-right: 2px solid var(--tuerkis);
    height: 7px;
    width: 7px;
    transform: rotate(45deg);
}
.main-navigation ul { 
	display: none;
	position: absolute;
	top: 4.8rem;
	left: 0;
    padding: 1rem 0 1rem 0;
	width: 26rem;
    background: rgba(255,255,255,.99);
    box-shadow: 0 .8rem 1.5rem rgba(0, 0, 0, 0.1);
}
.main-navigation li:hover > ul,
.main-navigation li > a[aria-expanded="true"] + ul { 
	display: block;
    opacity: 1;
    animation: fadeIn .5s both;
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
.main-navigation ul li { 
	display: block;
	float: none;
}
.main-navigation ul li a {
	display: block;
    padding: .6rem 2rem;
    font-size: 1.42rem;
	color: var(--tuerkis);
    text-decoration: none;
}
.main-navigation ul li a:hover,
.main-navigation ul li:hover > a {
	color: var(--tuerkis);
    text-decoration: underline;   
}
.main-navigation ul li.has-child > a::before,
.main-navigation ul li.menu-item-has-children > a::before {
    top: 1.2rem;
    border-color: var(--tuerkis);
    transform: rotate(-45deg);
}
.main-navigation ul > li.current-menu-item > a,
.main-navigation ul > li.current-menu-parent > a,
.main-navigation ul > li.current_page_item > a,
.main-navigation ul > li.current-page-parent > a,
.main-navigation ul > li.current_page_ancestor > a,
.main-navigation ul > li.current-page-ancestor > a,
.main-navigation ul > li.current-menu-ancestor > a,
.main-navigation ul li.current > a,
.main-navigation ul li > a:hover,
.main-navigation ul li:hover > a {
	color: var(--tuerkis);
}
.main-navigation ul ul {
	top: 0;
	left: 26rem;
}
.main-navigation li.button {
    position: relative;
	display: inline-block;
    margin: 0;
	padding: 1.5rem;
	color: var(--base-white);
	text-align: center;
	font-family: var(--main-font);
	font-size: 1.9rem;
    font-weight: 700;
	line-height: 1.3;
    text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid var(--tuerkis);
	cursor: pointer;
	transition: all 0.25s ease-out;
    background: var(--tuerkis);
    border-radius: .8rem;
    z-index: 1;
}
.main-navigation li.button a {
    padding: 0;
    height: auto;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--base-white);
}

/*------------------------------------------------------------------
[ Navigation Toggle ]
*/
.navigation-toggle {
    z-index: 1002;
	cursor: pointer;
    display: inline-block;
    transition: all 0.25s ease-out;
}
#nav-icon {
	width: 5rem;
	height: 3rem;
	position: relative;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	cursor: pointer;
	float: right;
}
#nav-icon span {
	display: block;
	position: absolute;
	height: .3rem;
	width: 100%;
	background: var(--base-white);
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	border-radius: 1rem;
}
#nav-icon.open span {
    background: var(--base-white);
}
#nav-icon span:nth-child(1) {
	top: 0;
	transform-origin: left center;
}
#nav-icon span:nth-child(2) {
	top: 1.3rem;
	transform-origin: left center;
}
#nav-icon span:nth-child(3) {
	top: 2.6rem;
	transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
	transform: rotate(45deg);
    top: -1rem;
    left: .8rem;
}
#nav-icon.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}
#nav-icon.open span:nth-child(3) {
	transform: rotate(-45deg);
    top: 2.4rem;
    left: .8rem;
}
#nav-icon:not(.open):hover span:nth-child(2) {
    width: 100%;
    margin-left: 0;
}
#nav-icon:not(.open):hover span:nth-child(1),
#nav-icon:not(.open):hover span:nth-child(3) {
    width: 80%;
    margin-left: 20%;
}

/*------------------------------------------------------------------
[ Sidebar Navigation ]
*/
.main-navigation-side {
    position: relative;
	display: block;
	margin: 0;
	padding: 0;
}
ul.main-navigation-side {
    margin-top: 0;
    margin-bottom: 5.4rem;
    padding-left: 0;
}
.main-navigation-side li {
    position: relative;
	display: block;
	margin:0;
	padding:0;
}
.main-navigation-side li a {
    font-size: 3rem;
    font-weight: 400;
    text-decoration: none;
	padding: 1.8rem .5rem;
	display: block;
    color: var(--base-white);
    text-align: left;
    text-transform: uppercase;
    line-height: 1;
	transition: all 0.25s ease-out;	
}
.main-navigation-side li.current-menu-item > a,
.main-navigation-side li.current_page_item > a,
.main-navigation-side li.current-page-parent > a,
.main-navigation-side li.current_page_ancestor > a,
.main-navigation-side li.current-page-ancestor > a,
.main-navigation-side li.current-menu-ancestor > a,
.main-navigation-side li.active > a {
	color: var(--tuerkis);
    text-decoration: underline;
}
.main-navigation-side li a:hover,
.main-navigation-side li:hover > a {
    color: var(--base-white);
	text-decoration: underline;
}
.main-navigation-side ul {
    /*display: none;*/
	margin: 0;
	padding: 0;
}
.main-navigation-side li > a[aria-expanded="false"]::after,
.main-navigation-side li > a[aria-expanded="true"]::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
}
.main-navigation-side li > a[aria-expanded="true"]::after {
    top: 3rem;
    transform: rotate(-135deg);
}
.main-navigation-side li > a + ul {
    max-height: 0;
    opacity: 0;
    /*overflow: hidden;*/
    pointer-events: none;
}
.main-navigation-side li > a[aria-expanded="true"] + ul {
    animation: fadeIn 0.5s forwards;
    pointer-events: auto;
}

.main-navigation-side li > a[aria-expanded="false"] + ul.animating {
    animation: fadeOut 0.5s forwards;
}
@keyframes fadeIn {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 50rem;
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        max-height: 50rem;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}
.main-navigation-side ul li { 
	display: block;
	margin: 0;
    width: 100%;
}
.main-navigation-side ul li a {
	display: block;
    font-size: 1.42rem;
	color: var(--base-white);
    padding: 1rem .5rem;
	transition: all 0.2s linear;
}
.main-navigation-side ul li > a[aria-expanded="false"]::after {
    top: 1rem;
}
.main-navigation-side ul li > a[aria-expanded="true"]::after {
    top: 1.5rem;
}
.main-navigation-side ul ul li a {
    font-size: 1.4rem;
    font-weight: 400;
}
.main-navigation-side ul li.current-menu-item > a,
.main-navigation-side ul li.current_page_item > a,
.main-navigation-side ul li.current-page-parent > a,
.main-navigation-side ul li.current_page_ancestor > a,
.main-navigation-side ul li.current-page-ancestor > a,
.main-navigation-side ul li.current-menu-ancestor > a,
.main-navigation-side ul li.current_page_ancestor > a,
.main-navigation-side ul li a:hover,
.main-navigation-side ul li.active > a,
.main-navigation-side ul li:hover > a {
	color: var(--base-white);
}

/*------------------------------------------------------------------
[ Sidebar / Overlay / Navigation ]
*/
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1001;
    overflow: auto;
    width: 100%;
    max-width: 50rem;
    height: 100%;
    background: rgba(0,0,0,.9);
    opacity: 0;
    transition: right .5s, opacity 0.5s ease;
}
.sidebar.active {
    right: 0;
    opacity: 1;
    overscroll-behavior: contain;
    transition: right .3s, opacity .5s cubic-bezier(.14,.62,0,1);
}
.sidebar .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 9rem;
}
.sidebar .sidebar-navigation {
    opacity: 0;
}
.sidebar.active .sidebar-navigation {
    opacity: 1;
    transition: padding 1s cubic-bezier(.14,.62,0,1), opacity .4s linear;
    transition-delay: .3s;
}
.sidebar nav {
    width: 100%;
    padding: 2rem;
}

/*------------------------------------------------------------------
[ Elementor Navigation ]
*/
.elementor-nav-menu a.elementor-item::after {
    content: '';
    position: absolute;
    bottom: .2rem;
    left: 0;
    width: 55%;
    height: 2px;
    background: var(--tuerkis);
    opacity: 1 !important;
    transition: all .25s ease-in-out;
}
.elementor-nav-menu a.elementor-item:hover::after,
.elementor-nav-menu a.elementor-item.highlighted::after {
    width: 100%;
}
.elementor-nav-menu .wpml-ls-item a.elementor-item::after {
    display: none;
}

/*------------------------------------------------------------------
[ Buttons ]
*/
.wp-theme-aprotec a.elementor-button,
.elementor-popup-modal .elementor-button,
.wp-theme-aprotec .elementor-field-type-submit .elementor-button,
.footer .elementor-field-type-submit .elementor-button,
header a.elementor-button,
.wp-theme-aprotec .elementor-slides .swiper-slide-inner .elementor-slide-button,
.elementor-popup-modal .elementor-button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    position: relative;
	display: inline-block;
    margin: 0;
	padding: .6rem 1.5rem;
	color: var(--primary-dark);
    fill: inherit;
	text-align: center;
	font-family: var(--main-font);
    font-size: 1.6rem;
    font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
    text-transform: none;
	white-space: nowrap;
	border: 2px solid var(--tuerkis);
    border-width: 1px 2px;
	cursor: pointer;
	transition: all 0.25s ease-out;
    background: var(--tuerkis);
    background-size: 100%;  
    border-radius: 0;
    z-index: 1;
    transform: skew(-40deg);
}
.wp-theme-aprotec a.elementor-button {
    /*width: 100%;*/
    max-width: fit-content;
}
.wp-theme-aprotec a.elementor-button:focus,
.wp-theme-aprotec a.elementor-button:visited,
.elementor-popup-modal .elementor-button:focus,
.elementor-popup-modal .elementor-button:visited {
    color: var(--primary-dark);
    background: var(--tuerkis);
}
.wp-theme-aprotec a.elementor-button:hover,
.elementor-popup-modal .elementor-button:hover,
.wp-theme-aprotec .elementor-field-type-submit .elementor-button:hover,
.footer .elementor-field-type-submit .elementor-button:hover,
.wp-theme-aprotec .elementor-slides .swiper-slide-inner .elementor-slide-button:hover,
.elementor-popup-modal .elementor-button:hover,
.elementor-popup-modal input[type="submit"]:hover,
.wp-theme-aprotec input[type="submit"]:hover,
.swp-theme-aprotec input[type="reset"]:hover,
.wp-theme-aprotec input[type="button"]:hover,
.wp-theme-aprotec a.elementor-button:focus,
.elementor-popup-modal .elementor-button:focus,
.wp-theme-aprotec .elementor-field-type-submit .elementor-button:focus,
.swp-theme-aprotec .elementor-slides .swiper-slide-inner .elementor-slide-button:focus,
.elementor-popup-modal .elementor-button:focus,
.elementor-popup-modal input[type="submit"]:focus,
.wp-theme-aprotec input[type="submit"]:focus,
.wp-theme-aprotec input[type="reset"]:focus,
.wp-theme-aprotec input[type="button"]:focus,
.wp-theme-aprotec .elementor-button-info a.elementor-button:focus,
.swp-theme-aprotec .elementor-button-info a.elementor-button:visited,
.elementor-popup-modal .elementor-button-info a.elementor-button:focus,
.elementor-popup-modal .elementor-button-info a.elementor-button:visited {
	color: var(--primary-dark);
    background: var(--base-white);
    border-color: var(--base-white);
}
.wp-theme-aprotec .elementor-button-info a.elementor-button,
.elementor-popup-modal .elementor-button-info a.elementor-button,
.wp-theme-aprotec .elementor-button-info a.elementor-button:visited,
.elementor-popup-modal .elementor-button-info a.elementor-button:visited {
    color: var(--primary-dark);
    fill: var(--primary-dark);
    border: 2px solid var(--base-white);
    border-width: 1px 2px;
    background: var(--base-white);
}
.wp-theme-aprotec .elementor-button-info a.elementor-button:hover,
swp-theme-kuesters .elementor-button-info a.elementor-button:focus,
.elementor-popup-modal .elementor-button-info a.elementor-button:hover,
.elementor-popup-modal .elementor-button-info a.elementor-button:focus {
    color: var(--base-white);
    fill: var(--base-white);
    border: 2px solid var(--primary-dark);
    border-width: 1px 2px;
    background: var(--primary-dark);
}
.wp-theme-aprotec .elementor-button-success a.elementor-button,
.elementor-popup-modal .elementor-button-success a.elementor-button,
.wp-theme-aprotec .elementor-button-success a.elementor-button:visited,
.elementor-popup-modal .elementor-button-success a.elementor-button:visited {
    color: var(--base-white);
    fill: var(--base-white);
    border: 2px solid var(--base-white);
    border-width: 1px 2px;
    background: none;
}
.wp-theme-aprotec .elementor-button-success a.elementor-button:hover,
.wp-theme-aprotec .elementor-button-success a.elementor-button:focus,
.elementor-popup-modal .elementor-button-success a.elementor-button:hover,
.elementor-popup-modal .elementor-button-success a.elementor-button:focus {
    color: var(--primary-dark);
    fill: var(--primary-dark);
    border: 2px solid var(--base-white);
    border-width: 1px 2px;
    background: var(--base-white);
}
.wp-theme-aprotec .elementor-button-warning a.elementor-button,
.elementor-popup-modal .elementor-button-warning a.elementor-button,
.wp-theme-aprotec .elementor-button-warning a.elementor-button:visited,
.elementor-popup-modal .elementor-button-warning a.elementor-button:visited {
    color: var(--primary-dark);
    fill: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-width: 1px 2px;
    background: none;
}
.wp-theme-aprotec .elementor-button-warning a.elementor-button:hover,
.wp-theme-aprotec .elementor-button-warning a.elementor-button:focus,
.elementor-popup-modal .elementor-button-warning a.elementor-button:hover,
.elementor-popup-modal .elementor-button-warning a.elementor-button:focus {
    color: var(--base-white);
    fill: var(--base-white);
    border: 2px solid var(--primary-dark);
    border-width: 1px 2px;
    background: var(--primary-dark);
}

.wp-theme-aprotec .elementor-button-content-wrapper {
    transform: skew(40deg);
}
.e-con .elementor-widget-button {
    margin-left: 2rem;
	margin-right: 2rem;
}

/*------------------------------------------------------------------
[ Forms ]
*/
.elementor-kit-7 input:not([type="button"]):not([type="submit"]), 
.elementor-kit-7 textarea, .elementor-kit-7 .elementor-field-textual {
    font-family: var(--main-font);
}
input {
	transition: all 0.25s ease-out;
}
.wrapper .elementor-field-group.elementor-field-type-select,
.wrapper .elementor-field-group.elementor-field-type-email,
.wrapper .elementor-field-group.elementor-field-type-tel,
.wrapper .elementor-field-group.elementor-field-type-text,
.wrapper .elementor-field-group.elementor-field-type-textarea {
   
}
.wrapper .elementor-field-group.elementor-field-type-textarea,
.elementor-popup-modal .elementor-field-group.elementor-field-type-textarea {
    border: none;
}
.wrapper .elementor-field-group .elementor-field-textual,
.elementor-popup-modal .elementor-field-group .elementor-field-textual {
    font-family: var(--main-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    padding: 1.4rem;
    color: var(--tuerkis);
    border: 1px solid (--tuerkis);
    border-radius: .8rem;
    background: rgba(255,255,255,.15) !important;
    outline: none;
    width: auto;
    transition: all .25s ease-out;
}
.wrapper .elementor-field-group .elementor-field-textual:focus,
.elementor-popup-modal .elementor-field-group .elementor-field-textual:focus {
    border-color: var(--tuerkis) !important;
    box-shadow: none !important;
}
.wrapper .elementor-field-group .elementor-field-textual:focus + .elementor-field-label {
    color: var(--tuerkis) !important;
}
.wrapper .elementor-field-group .elementor-select-wrapper,
.elementor-popup-modal .elementor-field-group .elementor-select-wrapper {
    min-height: 5rem;   
}
.wrapper .elementor-field-group .elementor-select-wrapper::before,
.elementor-popup-modal .elementor-field-group .elementor-select-wrapper::before {
    content: '';
    position: absolute;
    top: 3rem;
    right: 2rem;
    width: 3.2rem;
    height: 3.2rem;
    background: url(../images/icon-down-blue.png) center center no-repeat;
    background-size: contain;
    transition: all .25s ease-in-out;
    z-index: 1;
}
.wrapper .elementor-field-group textarea.elementor-field-textual,
.elementor-popup-modal .elementor-field-group textarea.elementor-field-textual {
	min-width: 10rem;
	min-height: 16rem;
    background: none;
    padding: 1.4rem;
    border: 1px solid (--tuerkis);
    border-radius: 1rem;
    resize: none;
}
.no-resize {
	resize: none;
}
.elementor-field-label {
    display: block;
    margin: 1rem 1rem;
    padding-top: .4rem;
    width: 100%;
    font-family: var(--main-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
}
.wrapper .elementor-mark-required .elementor-field-label::after,
.elementor-popup-modal .elementor-mark-required .elementor-field-label::after {
    font-family: var(--main-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    padding-left: 0;
}
.wrapper .elementor-field-option label,
.elementor-popup-modal .elementor-field-option label {
    font-family: var(--main-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: #000;
}
/* Making checkbox and radio button invisible */
.elementor-field-option input[type="checkbox"],
.elementor-field-option input[type="radio"]{
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.elementor-field-type-checkbox > div label:before,
.elementor-field-type-acceptance > div label:before,
.elementor-field-type-radio > div label:before {
	content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    margin: .8rem 1rem .8rem 0;
    vertical-align: -1.4rem;
    border: 2px solid var(--tuerkis);
    padding: 0;
    border-radius: .3rem;
    background-color: transparent;
    background-clip: content-box;
    transition: all 0.2s ease;
}
.dunkel .elementor-field-type-checkbox > div label:before,
.dunkel .elementor-field-type-acceptance > div label:before,
.dunkel .elementor-field-type-radio > div label:before {
    border: 2px solid var(--base-white);
}
.elementor-field-type-radio > div label:before {
    border-radius: 100%;
}
.elementor-field-type-checkbox > div label,
.elementor-field-type-acceptance > div label,
.elementor-field-type-radio > div label {
	margin-right: 1em;
}
.elementor-field-type-checkbox > div input:hover + label:before,
.elementor-field-type-acceptance > div input:hover + label:before,
.elementor-field-type-radio > div input:hover + label:before {
	border-color: var(--tuerkis);
}
.dunkel .elementor-field-type-checkbox > div input:hover + label:before,
.dunkel .elementor-field-type-acceptance > div input:hover + label:before,
.dunkel .elementor-field-type-radio > div input:hover + label:before {
	border-color: var(--base-white);
}
.elementor-field-type-checkbox > div input:checked + label:before,
.elementor-field-type-acceptance > div input:checked + label:before,
.elementor-field-type-radio > div input:checked + label:before {
	background-color: var(--base-white);
    background: url(../images/icon-check.png) no-repeat center center;
    background-size: contain;
    border-color: var(--base-white);
    filter: brightness(0) invert(1);
    padding: .2rem;
     transition: all 0.2s ease;
}
.dunkel .elementor-field-type-checkbox > div input:checked + label:before,
.dunkel .elementor-field-type-acceptance > div input:checked + label:before,
.dunkel .elementor-field-type-radio > div input:checked + label:before {
	background-color: var(--base-white);
    border-color: var(--base-white);
    padding: .2rem;
}
*::-webkit-input-placeholder {
    color: var(--hellgrau) !important;
    font-size: inherit !important;
    font-weight: 300 !important;
}
*:-moz-placeholder {
    color: var(--hellgrau) !important;
    opacity: 1 !important;
    font-size: inherit !important;
    font-weight: 300 !important;
}
*::-moz-placeholder {
    color: var(--hellgrau) !important;
    opacity: 1 !important;
    font-size: inherit !important;
    font-weight: 300 !important;
}
*:-ms-input-placeholder {
    color: var(--hellgrau) !important;
    font-size: inherit !important;
    font-weight: 300 !important;
}
*::-ms-input-placeholder {
    color: var(--hellgrau) !important;
    font-size: inherit !important;
    font-weight: 300 !important;
}
*::placeholder {
    color: var(--hellgrau) !important;
    font-size: inherit !important;
    font-weight: 300 !important;
}
.wrapper .elementor-field-group.elementor-field-type-checkbox,
.wrapper .elementor-field-group.elementor-field-type-acceptance,
.elementor-popup-modal .elementor-field-group.elementor-field-type-acceptance,
.elementor-popup-modal .elementor-field-group.elementor-field-type-acceptance {
    margin-top: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: inherit;
}
.elementor-field-type-html {
    margin-top: 3rem;
}
.elementor-field-type-html .form-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    color: #000;
    padding: 1.6rem 0;
    border-bottom: 1px solid #000;
}
.wrapper .elementor-field-type-select .elementor-select-wrapper,
.elementor-popup-modal .elementor-field-type-select .elementor-select-wrapper {
    /*width: calc(100% - 10rem);*/
}
.wrapper .elementor-field-type-select .elementor-select-wrapper option,
.elementor-popup-modal .elementor-field-type-select .elementor-select-wrapper option {
    font-family: var(--main-font);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    background: #fff;
    color: #000;
}

/*------------------------------------------------------------------
[ Images ]
*/
img {
    display: inline-block;
	max-width: 100%;
	height: auto;
    vertical-align: middle;
    border: none;
}
img.float-left,
.thumbnail.float-left {
    margin: 0 2rem 1rem 0;
}
img.float-right,
.thumbnail.float-right {
    margin: 0 0 1.5rem 2rem;
}
.thumbnail {
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
figure.wp-caption {
    position: relative;
}
.widget-image-caption.wp-caption-text {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 1rem;
    font-size: 1.6rem;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*------------------------------------------------------------------
[ Helper Utilities ]
*/

/* Text Alignments */
.align-center { text-align: center; }
.align-left   { text-align: left; }
.align-right  { text-align: right; }

/* Element Floats */
.float-left { float: left !important; }
.float-right { float: right !important; }

/* Clearfix */
.clearfix:before,
.clearfix:after {
	height: 0;
	content: ".";
	display: block;
	overflow: hidden;
}
.clearfix:after {
	clear: both;
}
.clear {
	width: 0;
	height: 0;
	display: block;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.elementor-widget-image img,
.wp-caption img[class*="wp-image-"] {
    display: inline-block;
}

/* Kill Margin */
.no-margins { margin: 0 !important; }
.no-margin-top { margin-top: 0 !important; }
.no-margin-right { margin-right: 0 !important; }
.no-margin-bottom { margin-bottom: 0 !important; }
.no-margin-left{ margin-left: 0 !important; }

/* Kill Padding */
.no-padding { padding: 0 !important; }
.no-padding-top { padding-top: 0 !important; }
.no-padding-right { padding-right: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.no-padding-left { padding-left: 0 !important; }

/*------------------------------------------------------------------
[ Tables ]
*/
table {
	border: none;
	border-collapse: collapse;
	width: 100%;
    margin: 0;
}
table caption { 
    font-size: 2rem; 
    color: var(--base-white);
    margin: 1rem;
}
/*
table thead th {
    color: #fff;
    text-align: left;
    background: #444;
    border: none;
}
td, th {
    vertical-align: top;
    padding: .6rem 0;
	border: none;
    color: var(--base-white);
}
*/
/*
tbody tr:nth-of-type(2n) {
	background-color: rgba(18, 68, 140, 0.05);
}
*/

/*------------------------------------------------------------------
[ Theme Stuff ]
*/
.wrapper {
    padding-top: 0;
}
.site > .content {
    margin-top: 0;
}
body.admin-bar .top {
    top: 3.2rem;
}
.edit-link {
    display: none;
}
.site-content {
    padding: 0;
}
.logo,
.navigation-toggle {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; 
}
.elementor-nav-menu li {
    margin-bottom: 0;
    padding-left: inherit;
}
.site-main ul.elementor-nav-menu:not(.elementor-element-edit-mode) li::before {
    display: none;
}
.elementor-nav-menu li.button {
    margin-left: 2rem;
}
.elementor-nav-menu li.button a.elementor-item {
    color: var(--base-white) !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    font-size: 1.4rem !important;
    text-transform: none !important;
}
.e-con.gradient-1 {
    background: #303030;
    background: linear-gradient(130deg,rgba(48, 48, 48, 1) 0%, rgba(30, 30, 30, 1) 100%);
}
/*
.e-con.gradient-1 .e-con-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #303030;
  background: linear-gradient(130deg,rgba(48, 48, 48, 1) 0%, rgba(30, 30, 30, 1) 100%);
  pointer-events: none;
  z-index: -5;
}
*/
.e-con.gradient-2 {
    background: #00B6AD;
    background: linear-gradient(300deg,rgba(0, 182, 173, 1) 0%, rgba(0, 104, 99, 1) 100%);
}
.e-con.gradient-radial-1 {
    background: url(../images/bg-radial-gradient.svg) no-repeat center center;
    background-size: contain;
}
/*
.e-con.overlay-1 {
    z-index: -1;
}
*/
.e-con.overlay-1 .e-con-inner {
    z-index: 1;
}
.e-con.overlay-1 .e-con-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: RGBA(30, 30, 30, 1);
    background: linear-gradient(90deg,rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0.8) 60%, rgba(30, 30, 30, 0) 100%);
    background: linear-gradient(90deg,rgba(0, 26, 22, 0.99) 0%, rgba(30, 30, 30, 0.8) 60%, rgba(30, 30, 30, 0) 100%);
    background: linear-gradient(90deg,rgb(0, 17, 15, .98) 0%, rgba(30, 30, 30, 0.95) 60%, rgba(30, 30, 30, 0) 100%);
    background: linear-gradient(90deg,rgb(0, 17, 15, .96) 0%, rgba(30, 30, 30, 0.80) 58%, rgba(30, 30, 30, 0) 115%);
    z-index: -1;
}
.e-con.overlay-2 {
    z-index: -1;
    background-size: 0 !important;
}
body.elementor-editor-active .e-con.overlay-2 {
    z-index: 1;
}
.e-con.overlay-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(0, 26, 22, 1) 0%, rgba(30, 30, 30, 1) 40%, rgba(30, 30, 30, 0) 100%);
    background: linear-gradient(130deg,rgba(48, 48, 48, 1) 0%, rgba(30, 30, 30, 1) 100%);
    opacity: 1;
    z-index: -2;
}
.e-con.overlay-2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-image: inherit;
    background-position: center center;
    background-repeat: inherit;
    background-size: inherit;
    background-size: cover;
    filter: saturate(0) contrast(1.1) brightness(1);
    z-index: -2;
}
.e-con.shadow-1 {
    box-shadow: var(--box-shadow-1);
}
.e-con.hover-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    filter: grayscale(1) brightness(.5);
    pointer-events: none;
}
.e-con.hover-1 {
    overflow: hidden;
}
.e-con.hover-1::before {
    inset: 0;
    transition: transition .45s ease-in-out;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .45s ease-in-out;
}
.e-con.hover-1:hover::before {
    transform: scale(1.1);
}

.e-con .custom .elementor-image-box-wrapper {
	display: flex;
    flex-direction: row;
    align-items: center;
}

.elementor-widget-image-box .elementor-image-box-title {
    margin: 0 0 1rem 0 !important;
    hyphens: auto;
}
.elementor-widget-image-box .elementor-image-box-description a {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2300b6ad' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h306.7L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 2rem;
    background-size: 1.5rem;
}
.elementor-widget-image-box .elementor-image-box-description a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 2px;
    background: var(--tuerkis);
    opacity: 1 !important;
    transition: all .25s ease-in-out;
}
.elementor-widget-image-box .elementor-image-box-description a:hover::after {
    width: 100%;
}
.elementor-widget-image-box .elementor-image-box-img {
    flex-shrink: 0;
}
.elementor-widget-image-box.custom .elementor-image-box-title,
.elementor-widget-image-box.custom2 .elementor-image-box-title {
    margin: 0 !important;
}
.elementor-widget-image-box.custom2 .elementor-image-box-title,
.elementor-widget-image-box.custom2 .elementor-image-box-description {
    line-height: 1;
}
.elementor-widget-image-box.custom .elementor-image-box-img,
.elementor-widget-image-box.custom2 .elementor-image-box-img {
    width: 10rem;
    height: 10rem;
    flex: 0 0 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10rem;
    border: 1px solid var(--tuerkis);
    background: var(--primary-dark);
}
.elementor-widget-image-box.custom2 .elementor-image-box-img {
    width: 4rem;
    height: 4rem;
    flex: 0 0 4rem;
}
.elementor-widget-image-box.custom .elementor-image-box-img img {
    max-width: 5.5rem;
}
.elementor-widget-image-box.custom2 .elementor-image-box-img img {
    max-width: 2rem;
}
.elementor-widget-image-box.custom2 {
    margin: 2rem 0;
    z-index: 1;
}
.elementor-widget-image-box.custom2::after {
    content: '';
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 100%;
    height: 6rem;
    background: #009991;
    background: linear-gradient(90deg,rgba(0, 153, 145, 1) 0%, rgba(33, 102, 99, 1) 47%, rgba(53, 54, 55, 1) 100%);
    border-radius: 5rem 0 0 5rem;   
    z-index: -1;
}
.elementor-widget-heading.arrow-right a {
    display: inline;
}
.elementor-widget-heading.arrow-right a::after {
    content: '';
    margin-top: 1rem;
    position: relative;
    display: inline;
    font-weight: 700;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2300b6ad' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h306.7L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 3rem;
    background-size: 2.2rem;
    height: 3.6rem;
    filter: brightness(0) invert(1);
}
.elementor-widget-heading.arrow-right a:hover::after {
    /*filter: none;*/
    animation: bounce .3s both;
}
@keyframes bounce {
    0%,  
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}
body:not(.elementor-editor-active) .elementor-element.link,
body:not(.elementor-editor-active) .elementor-element.link .elementor-heading-title,
body:not(.elementor-editor-active) .elementor-element.link .elementor-heading-title a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body:not(.elementor-editor-active) .elementor-element.link .elementor-heading-title a {
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.wp-theme-aprotec .elementor-element.elementor-arrows-position-outside .swiper, .elementor-lightbox.elementor-arrows-position-outside .swiper {
    width: calc(100% - 120px);
}

/* Flip Box */
.elementor-widget-flip-box.custom .elementor-flip-box__front {
    filter: grayscale(.1);
}
.elementor-widget-flip-box.custom .elementor-flip-box__front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, .5);
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: -1;
}
.elementor-widget-flip-box.custom .elementor-flip-box__front .elementor-flip-box__layer__overlay {
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left !important;
    padding: 2rem;
}
.elementor-widget-flip-box.custom .elementor-flip-box__back .elementor-flip-box__layer__overlay {
    padding: 2rem;
}
.elementor-widget-flip-box.custom .elementor-flip-box__front .elementor-flip-box__layer__overlay h4,
.elementor-widget-flip-box.custom .elementor-flip-box__back .elementor-flip-box__layer__overlay h4 {
    margin: 0;
    font-weight: 700;
}
.elementor-widget-flip-box.custom .elementor-flip-box__front .elementor-flip-box__layer__overlay h4 {
    color: var(--base-white);
}
.elementor-widget-flip-box.custom .elementor-flip-box__back .elementor-flip-box__layer__overlay h4 {
    margin-bottom: 1rem;
    color: var(--tuerkis);
}
.elementor-widget-flip-box.custom .elementor-flip-box__back {
    background-color: var(--primary-dark);
}
.elementor-widget-flip-box.custom .elementor-flip-box__back .elementor-flip-box__layer__overlay {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left !important;
}

/*
.elementor-swiper-button-next,
 .elementor-swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    border-radius: 10rem;
    background: var(--tuerkis);
}
.elementor-swiper-button-next svg,
.elementor-swiper-button-prev svg {
    display: none;
}
.elementor-swiper-button-next::after,
.elementor-swiper-button-prev::after {
    content: '';
    display: inline-block;
    width: 3.2rem;
    height: 3rem;
    background: url(https://b37m7inx.myrdbx.io/wp-content/themes/kuesters/images/icon-arrow-next.svg) no-repeat center center;
    background-size: contain;
}
.elementor-swiper-button-prev::after {
    transform: rotate(180deg);
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullet {
    border: 3px solid var(--base-white);
    background: transparent;
    opacity: 1;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-white);
}
.wp-theme-aprotec .elementor-element.elementor-arrows-position-outside .swiper, 
.wp-theme-aprotec .elementor-lightbox.elementor-arrows-position-outside .swiper {
    width: calc(100% - 40px);
}
*/

/* global padding */
/*
.entry-content > .elementor > .e-con.e-parent > .e-con-inner {
    padding-left: 2rem;
    padding-right: 2rem;
}
*/
.e-con.box {
    padding: 2rem;
    background: #353637;
    border: 1px solid rgba(0, 182, 173, .2);
}
body:not(.elementor-editor-active) .e-con.mask-1 {
    margin-top: -6rem;
    z-index: 5;
    clip-path: polygon(
        0 59px,
        100% 0,
        100% 100%,
        0 100%
    );
}

/*------------------------------------------------------------------
[ Timeline ]
*/
.time-left,
.time-right {
    padding: 4rem !important;
}
.time-left::after,
.time-right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 1.5rem);
    width: 15%;
    border-bottom: 2px solid var(--tuerkis);
    
}
.time-right::after {
    left: auto;
    right: calc(100% + 1.5rem);;
}
.time::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 50%;
    height: 80%;
    border-left: 2px solid var(--tuerkis);
}
.time-last .time::after {
    display: none;
}

/*------------------------------------------------------------------
[ Custom Tabs ]
*/
.custom-tabs {
    position: absolute !important;
    bottom: 0 !important;
}
.custom-tabs .custom-tab {
    padding: 2rem 2rem 4rem 2rem;
    border-radius: 2rem 2rem 0 0;
    background: linear-gradient(180deg,rgba(0, 153, 145, 1) 0%, rgba(33, 102, 99, 1) 30%, rgba(53, 54, 55, 0.24) 84%);
}
.custom-tabs .custom-tab .elementor-image-box-title {
    font-size: 2.4rem;
    margin: 0 !important;
}
.custom-tabs .custom-tab .elementor-image-box-description {
    line-height: 1.2;
}

/*------------------------------------------------------------------
[ Tabs Widget ]
*/
.elementor-widget-n-tabs.custom {
    background: #353637;
    border: 1px solid var(--tuerkis);
}
.elementor-widget-n-tabs.custom .e-n-tab-title {
    padding: 2rem 4rem;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    color: var(--base-white) !important;
    background: #353637 !important;
}
.elementor-widget-n-tabs.custom .e-n-tab-title .e-n-tab-title-text {
    font-family: var(--main-font);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.elementor-widget-n-tabs.custom .e-n-tab-title[aria-selected="true"] {
    color: var(--tuerkis) !important;
    border-right-color: var(--tuerkis);
    border-bottom: 1px solid #353637;
    margin-bottom: -1px;
}
.elementor-widget-n-tabs.custom .e-n-tab-title:not(:first-child) {
    border-right: 1px solid #353637;
    border-left: 1px solid #353637;
}
.elementor-widget-n-tabs.custom .e-n-tab-title:last-child {
    border-right-color: transparent !important;
}
.elementor-widget-n-tabs.custom .e-n-tab-title[aria-selected="true"]:not(:first-child) {
    border-right-color: var(--tuerkis);
    border-left-color: var(--tuerkis);
}
.elementor-widget-n-tabs.custom .e-n-tab-title .e-n-tab-title-text::before {
    content: '';
    display: inline;
    width: 2rem;
    height: 2rem;
    background: url(../images/icon-check.png) no-repeat center center;
    background-size: contain;
}
.elementor-widget-n-tabs.custom .e-n-tabs-heading {
    border-bottom: 1px solid var(--tuerkis);
    gap: normal !important;
}
.elementor-widget-n-tabs.custom .e-n-tabs-content {
    padding: 2rem;
}

/*------------------------------------------------------------------
[ Backgrounds ]
*/
.e-con[class^="bg-"]::before, 
.e-con[class*=" bg-"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
}
.e-con.bg-0::before {
    opacity: .05;
    background-position: center bottom;
    background-image: url(../images/bg-0.png);
}
.e-con.bg-1::before {
    background-image: url(../images/bg-1.png);
    background-position: left bottom;
    background-size: contain;
}
.e-con.bg-2::before {
    background-image: url(../images/bg-2.png);
    background-position: right bottom;
    background-size: auto calc(100% - 20rem);
}
.e-con.bg-3::before {
    background-image: url(../images/bg-3.png);
}
.e-con.bg-4::before {
    background-image: url(../images/bg-4.png);
    background-position: right 5% bottom;
    background-size: auto calc(100% - 5rem);
}
.e-con.bg-5::before {
    opacity: .07;
    background-image: url(../images/bg-0.png);
    background-position: right 10% top 100%;
    background-size: auto 80%;
}

/*------------------------------------------------------------------
[ Borders ]
*/
.e-con.border-1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: var(--tuerkis);
}

/*------------------------------------------------------------------
[ Image Filters ]
*/
.elementor-widget-image.filter-1 img {
    filter: saturate(0) brightness(.7);
}
.elementor-widget-image.filter-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00B6AD;
    background: linear-gradient(150deg,rgba(0, 182, 173, 1) 0%, rgba(0, 104, 99, 1) 100%);
    mix-blend-mode: multiply;
    opacity: .3;
    pointer-events: none;
}
.elementor-widget-image.filter-2 img {
    filter: saturate(0) contrast(1);
}
.elementor-widget-image.filter-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00B6AD;
    background: linear-gradient(150deg,rgba(0, 182, 173, 1) 0%, rgba(0, 104, 99, 1) 100%);
    mix-blend-mode: multiply;
    opacity: .15;
    pointer-events: none;
}


/*------------------------------------------------------------------
[ Accordions ]
*/
.wp-theme-aprotec .elementor-widget-n-accordion {
    border: none;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item {
    background: #353637;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 182, 173, .2);
    pointer-events: none;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span > svg,
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item[open] > .e-n-accordion-item-title .e-n-accordion-item-title-icon span > svg,
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover > .e-n-accordion-item-title .e-n-accordion-item-title-icon span > svg {
    fill: var(--base-white);
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item:not(:first-child) {
    margin-top: 1rem;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item-title,
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item .e-con {
    border: none;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item .e-con {
    padding: 0 2rem 2rem;
    color: var(--base-white);
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title + .e-con p {
    max-width: 120rem;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item-title {
    position: relative;
    padding: 2rem;
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item-title .e-n-accordion-item-title-text {
    font-family: var(--main-font);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--base-white);
}
.wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title .e-n-accordion-item-title-text {
    color: var(--tuerkis);
}

/*------------------------------------------------------------------
[ Footer ]
*/
.site-footer {
    position: relative;
    background: var(--tuerkis);
    z-index: 20;
}
.site-footer .elementor-widget-text-editor.list ul li {
    list-style: none;
    position: relative;
    padding-left: 3rem
}
footer .elementor-widget-text-editor a:hover {
    text-decoration: underline;
}

/*------------------------------------------------------------------
[ Media Queries ]
*/
@media only screen and (max-width: 1480px) {
    /* Item Widths */
    .content-grid-5 .grid-item,
    .content-grid-6 .grid-item {
        width: 25%;
    }
}
@media only screen and (max-width: 1024px) {
    body { 
        font-size: 2rem;
    }
    .top.shrink {
        opacity: 1;
        visibility: visible;
    }
    /* Grid */
	.grid .col .grid .col { 
		width: 100%;
		padding-right: 0;
		padding-left: 0;
        margin-left: 0;
	}
    .col .col:only-child,
    .col[class*='offset-']:only-child {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* Item Widths */
    .content-grid-4 .grid-item,
    .content-grid-5 .grid-item,
    .content-grid-6 .grid-item {
        width: 33.33333%;
    }
    h1.wp-block-heading,
    h2.wp-block-heading,
    h3.wp-block-heading,
    h4.wp-block-heading,
    h5.wp-block-heading,
    h6.wp-block-heading,
    .elementor-widget-text-editor h1, .elementor-widget-heading h1.elementor-heading-title,
    .elementor-widget-text-editor h2, .elementor-widget-heading h2.elementor-heading-title,
    .elementor-widget-text-editor h3, .elementor-widget-heading h3.elementor-heading-title,
    .elementor-widget-text-editor h4, .elementor-widget-heading h4.elementor-heading-title,
    .elementor-widget-text-editor h5, .elementor-widget-heading h5.elementor-heading-title,
    .elementor-widget-text-editor h6, .elementor-widget-heading h6.elementor-heading-title {
        line-height: 1.3;
    }
    h1.wp-block-heading,
    .elementor-widget-text-editor h1,
    .elementor-widget-heading h1.elementor-heading-title {
        font-size: 4rem;
    }
    h2.wp-block-heading,
    .elementor-widget-text-editor h2,
    .elementor-widget-heading h2.elementor-heading-title {
        font-size: 2.8rem;
    }
    p,
    .elementor-widget-text-editor p,
    .elementor-widget-heading p.elementor-heading-title, .elementor-widget-heading .small-heading.elementor-heading-title {
        hyphens: auto;
        hyphenate-limit-chars: auto 3 4;
    }
    .elementor-field-label {
        font-size: 1.6rem;
    }
    .site-main a.elementor-button,
    .elementor-popup-modal .elementor-button,
    .site-main .elementor-field-type-submit .elementor-button,
    .footer .elementor-field-type-submit .elementor-button,
    .site-main .elementor-slides .swiper-slide-inner .elementor-slide-button,
    .elementor-popup-modal .elementor-button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        font-size: 1.6rem;
        white-space: normal;
    }
    .site-main .elementor-button-success a.elementor-button::before,
    .site-main .elementor-button-success a.elementor-button::before,
    .elementor-popup-modal .elementor-button-success a.elementor-button::before,
    .elementor-popup-modal .elementor-button-success a.elementor-button::before {
        top: .5rem;
        width: 2rem;
        height: 3rem;
    }
    .e-con.gradient-radial-1 {
        background-position: center left -20rem;
        background-size: 80rem;
    }
    /*
    .elementor-widget-n-menu .e-n-menu-wrapper {
        height: calc(100vh - 17rem);
    }
    */
}
@media only screen and (max-width: 900px) {
    .main-navigation {
        display: none;
    }
    .navigation-toggle {
		display: block;
	}
}
@media screen and (max-width: 782px) {
    body.admin-bar .top {
        top: 4.6rem;
    }
}
@media only screen and (max-width: 767px) {
    body { 
        font-size: 1.6rem;
        line-height: 1.4;     
    }
    .logo {
        top: 1.2rem;
    }
    .logo img {
        width: 3.5rem;
    }
    .navigation-toggle {
        top: 1.2rem;
        right: 2rem;
        height: 4rem;
        padding: 1rem;
    }
    #nav-icon {
        width: 4rem;
    }
     #nav-icon span:nth-child(2) {
        top: 1rem;
    }
    #nav-icon span:nth-child(3) {
        top: 2rem;
    }
    #nav-icon.open span:nth-child(1) {
        top: -.6rem;
        left: .4rem;
    }
    #nav-icon.open span:nth-child(3) {
        top: 2.2rem;
        left: .4rem;
    }
    .site-content {
        padding: 0;
    }
	.container {
		max-width: 100%;
	}
    .divider, hr {
        padding: 2rem 0;
    }
    .main-navigation-side li a {
        font-size: 3rem;
    }
	/* Grid */
	.grid .col,
	.grid.no-gutter .col,
	.grid.no-gutter .col.col {
		width: 100%;
	}
    /* Item Widths */
    .content-grid-3 .grid-item,
    .content-grid-4 .grid-item,
    .content-grid-5 .grid-item,
    .content-grid-6 .grid-item {
        width: 50%;
    }
    .elementor-widget-text-editor h1, 
    .elementor-widget-heading h1.elementor-heading-title {
        font-size: 2.6rem;
    }
    .elementor-widget-text-editor h3,
    .elementor-widget-heading h3.elementor-heading-title {
        font-size: 2rem;
    }
    .elementor-widget-text-editor h4,
    .elementor-widget-heading h4.elementor-heading-title {
        font-size: 2rem;
    }
    p, .elementor-widget-text-editor p, 
    .elementor-widget-heading p.elementor-heading-title, 
    .elementor-widget-heading .small-heading.elementor-heading-title {
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1.6;
    }
    span.elementor-heading-title {
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1.4;
    }
    .elementor-widget-heading h1.elementor-heading-title,
    .elementor-widget-heading h2.elementor-heading-title,
    .elementor-widget-heading h3.elementor-heading-title,
    .elementor-widget-heading h4.elementor-heading-title,
    .elementor-widget-heading h5.elementor-heading-title,
    .elementor-widget-heading h6.elementor-heading-title {
        hyphens: auto;
        hyphenate-limit-chars: auto 3 4;
    }
    .site-main .elementor-widget-text-editor .elementor-widget-container ul li,
    .site-main .elementor-widget-text-editor .elementor-widget-container ol li,
    .site-main .elementor-widget-heading .elementor-widget-container ul li,
    .site-main .elementor-widget-heading .elementor-widget-container ol li {
        font-size: 1.6rem;
    }
    .site-main .elementor-widget-text-editor .elementor-widget-container ul li::before,
    .site-main .elementor-widget-heading .elementor-widget-container ul li::before {
        top: 1.2rem;
    }
    .site-main .elementor-widget-text-editor .elementor-widget-container ol > li::before {
        font-size: 1.6rem;
    }
    .site-content .elementor-widget-container ol li,
    .footer.elementor-widget-container ol li {
        padding-left: 2.4rem;
        margin-bottom: .6rem;
        font-size: 1.6rem;
    }
    .site-content .elementor-widget .elementor-widget-container ol > li::before {
        font-size: 1.6rem;
        text-align: left;
    }
    .footer .elementor-widget-container ul li {
        display: block;   
        margin: 0;
        padding: 0;
        font-size: 1.4rem;
    }
    .footer ul {
        text-align: left;
    } 
    .site-main a.elementor-button,
    .elementor-popup-modal .elementor-button,
    .content .elementor-field-type-submit .elementor-button,
    .footer .elementor-field-type-submit .elementor-button,
    .content .elementor-slides .swiper-slide-inner .elementor-slide-button,
    .elementor-popup-modal .elementor-button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    .site-main .elementor-button-info a.elementor-button,
    .elementor-popup-modal .elementor-button-info a.elementor-button {
        padding: .8rem 1.2rem .8rem 1rem;
        font-size: 1.4rem;
        max-width: 100%;
        /*transition: none !important;*/
    }
    .elementor-button .elementor-button-icon svg {
        width: 1.45rem;
    }
    input[type="text"], 
    input[type="email"], 
    input[type="url"] {
        padding: .8rem 0;
        margin: 0;
        font-size: 1.4rem;
        letter-spacing: normal;
    }
    .wrapper .elementor-field-group .elementor-field-textual,
    .elementor-popup-modal .elementor-field-group .elementor-field-textual {
        font-size: 1.6rem;
    }
    .wrapper .elementor-field-group .elementor-select-wrapper::before,
    .elementor-popup-modal .elementor-field-group .elementor-select-wrapper::before {
        width: 2rem;
        height: 2rem;
    }
    label {
        font-size: 1.6rem;
    }
    *::-webkit-input-placeholder {
        font-size: 1.6rem !important;
    }
    *:-moz-placeholder {
        font-size: 1.6rem !important;
    }
    *::-moz-placeholder {
        font-size: 1.6rem !important;
    }
    *:-ms-input-placeholder {
        font-size: 1.6rem !important;
    }
    *::-ms-input-placeholder {
        font-size: 1.6rem !important;
    }
    *::placeholder {
        font-size: 1.6rem !important;
    }
    /* Tables */
    /*
    table {
		width: 100%;	
	}
    tbody tr:nth-of-type(2n) {
        background: rgba(18, 68, 140, 0.05);
    }
    table thead { 
        display: none; 
    }
	td, th {
		display: block;
		float: left;
		width: 100% !important;
        height: auto !important;
        padding: 0.6rem 0;
	}
    */
    .alignleft {
        float: none;
        width: 100%;
    }
    .main-navigation-side li a {
        transition: none !important;
    }
    .main-navigation-side ul li:first-child a {
        margin-top: 0;
    }
     .elementor-widget-image-box.custom .elementor-image-box-wrapper, 
    .elementor-widget-image-box.stay-left .elementor-image-box-wrapper {
        display: flex;
        flex-direction: row;
        gap: 1.2rem;
    }
    .elementor-widget-image-box.keep-items-centered .elementor-image-box-wrapper {
        align-items: center;    
    }
    .e-con.arrow-left::before,
    .e-con.arrow-right::after {
        width: 7rem;
        height: 3rem;
    }
    body:not(.elementor-editor-active) .e-con.mask-1 {
        margin-top: -3rem;
        clip-path: polygon( 0 29px, 100% 0, 100% 100%, 0 100% );
    }
    .custom-tabs {
        position: relative !important;
        bottom: auto !important;
    }
	.e-con.gradient-radial-1 {
        background-position: center right -40%;
        background-size: 80rem;
    }
    .time::after,
    .time-left::after, 
    .time-right::after {
        display: none;
    }
    .e-con.border-1::after {
        top: auto;
        bottom: -1.5rem;
        right: 25%;
        height: 2px;
        width: 50%;
        background: var(--tuerkis);
    }
    .elementor-widget-image-box.custom2 .elementor-image-box-wrapper {
        flex-direction: row;
        display: flex;
    }
    .elementor-widget-image-box.custom2 .elementor-image-box-wrapper .elementor-image-box-img {
        margin-right: 1.5rem !important;
    }
    .custom-tabs .custom-tab {
        padding: 2rem 2rem 4rem 2rem;
        border-radius: 0 2rem 2rem 0;
        background: linear-gradient(270deg,rgba(0, 153, 145, 1) 0%, rgba(33, 102, 99, 1) 30%, rgba(53, 54, 55, 0.24) 84%);
    }
    .wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item .e-con {
        flex-wrap: nowrap;
    }
    .elementor-widget-n-tabs.custom .e-n-tab-title {
        border: none !important;
        border-bottom: 1px solid var(--tuerkis) !important;
        cursor: pointer;
    }
    elementor-widget-n-tabs.custom .e-n-tab-title:last-child) {
        border: none !important;
    }
    .elementor-widget-n-tabs.custom .e-n-tabs-content {
        height: auto;
        max-height: 0;
    }
    .elementor-widget-n-tabs.custom .e-n-tabs-content > .e-con:not(.e-active) {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        transition: max-height .35s ease-in-out, opacity .25s ease-in-out;
    }
    .elementor-widget-n-tabs.custom .e-n-tabs-content > .e-con.e-active {
        display: block !important;
        visibility: visible;
        opacity: 1;
        max-height: 160rem;
        transition: max-height .5s ease-in-out, opacity .25s ease-in-out;
    }
    .wp-theme-aprotec .elementor-element.elementor-arrows-position-outside .swiper {
        width: calc(100% - 2rem);
    }
    .wp-theme-aprotec .elementor-element.elementor-arrows-position-outside .elementor-swiper-button-prev {
        left: -1rem !important;
    }
    .wp-theme-aprotec .elementor-element.elementor-arrows-position-outside .elementor-swiper-button-next {
        right: -1rem !important;
    }
    .e-con.overlay-1 .e-con-inner::after {
        background: linear-gradient(90deg,rgb(0, 17, 15, .96) 0%, rgba(30, 30, 30, .9) 58%, rgba(30, 30, 30, .9) 100%)
    }
    .e-con.overlay-2 {
        background-size: 0 !important;
        padding-bottom: 30rem !important;
    }
    .e-con.overlay-2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,rgba(0, 26, 22, 1) 0%, rgba(30, 30, 30, 1) 40%, rgba(30, 30, 30, 0) 100%);
        background: linear-gradient(130deg,rgba(48, 48, 48, 1) 0%, rgba(30, 30, 30, 1) 100%);
        opacity: 1;
        z-index: -2;
    }
    .e-con.overlay-2::after {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 34rem;
        background-image: inherit;
        background-position: center center;
        background-repeat: inherit;
        background-size: inherit;
        background-size: cover;
    }
}
@media only screen and (max-width: 568px) {
    .widget-image-caption.wp-caption-text {
        font-size: 1.2rem;    
    }
    .wp-theme-aprotec .elementor-widget-n-accordion .e-n-accordion-item-title .e-n-accordion-item-title-text {
        hyphens: auto;
    }
      .custom-tabs .custom-tab {
        padding: 1rem 1rem 2rem 1rem;
        border-radius: 0 1rem 1rem 0;
    }
    .custom-tabs .custom-tab .elementor-image-box-title {
        font-size: 2rem;
    }
    .custom-tabs .custom-tab .elementor-image-box-description {
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 480px) {
    .content-grid-2 .grid-item,
    .content-grid-3 .grid-item,
    .content-grid-4 .grid-item,
    .content-grid-5 .grid-item,
    .content-grid-6 .grid-item {
        width: 100%;
    }
    .main-navigation {
        right: 7rem;
        top: 3.5rem;
    }
}