/***** GLOBALS - Start ************************************************************************************************/
body {
    margin: 0;
    font: 300 24px/1.33333 var(--font-1);
    color: rgb(var(--color-font));
}

*, ::after, ::before {
    box-sizing: border-box;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
.ce-bodytext a {
    color: inherit;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
a[href^="tel:"],
.content a[href^="tel:"] {
    text-decoration: none;
}
a[href^="tel:"]:hover,
.content a[href^="tel:"]:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1 {
    margin: 0 0 20px;
    font: 400 35px/1.22222 var(--font-1);
    color: rgb(var(--color-primary));
}
h2 {
    margin: 0 0 20px;
    font: 400 30px/1.26471 var(--font-1);
    color: rgb(var(--color-primary));
}
#page3 header h2 {
    margin: 0 0 40px;
    font-size: 50px;
}
#page3 .col-md-4 h2 {
    margin: 0 0 16px;
    font-size: 30px;
}
h3, .mimic-h3 {
    margin: 0 0 16px;
    font: 400 28px/1.13333 var(--font-1);
    color: rgb(var(--color-primary));
}
h4 {
    font-weight: 500;
}
p {
    margin: 0 0 20px;
}
strong {
    font-weight: 600;
}

dl {
    margin: 0 0 22px;
}
dl::after {
    content: '';
    display: table;
    clear: both;
}
dl dt {
    float: left;
    clear: both;
    margin: 0 8px 0 0;
}
dl dd {
    float: left;
    margin: 0 0 4px;
}

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

hr.ce-div {
    margin: 0 0 76px;
    border: none;
    border-bottom: 3px solid rgb(var(--color-primary));
}
fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="email"] {
    height: 50px;
    width: 320px;
    max-width: 100%;
    padding: 0 15px;
    font: 400 24px/1.4 var(--font-1);
    color: rgb(var(--color-primary));
    border: 1px solid rgb(var(--color-primary));
}
textarea {
    padding: 10px 15px;
    font: 400 24px/1.4 var(--font-1);
    color: rgb(var(--color-font));
}
input[type="text"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="number"]:focus-visible,
input[type="password"]:focus-visible,
input[type="email"]:focus-visible,
textarea {
    outline: none;
}
select {
    height: 50px;
    margin: 0;
    padding: 0 12px;
    font: inherit/inherit var(--font-1);
    color: inherit;
    border: none;
    background-color: #fff;
}
select option {
    font-family: 'PT Sans';
}
input[type="submit"] {
    cursor: pointer;
}

label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    word-wrap: anywhere;

    transition: all var(--transition-t1);
}
label.select {
    /*margin: -2px 0 0;*/
    padding: 10px 0 0;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    /*margin: 0 0 20px;*/
}
.form-group.among {
    flex-direction: column;
}
.form-group.top {
    align-items: flex-start;
}
.form-group.end {
    justify-content: flex-end;
}
.form-group.justify-center {
    justify-content: center;
}
.form-group.vertical {
    flex-direction: column;
}
.form-group.space {
    justify-content: space-between;
}
.form-group.preview {
    padding: 10px;
    background-color: rgba(255,255,255,.53);
}
.form-group.preview .field-value {
    font-style: italic;
}
.form-group.textarea.preview,
.form-group.checkbox.preview {
    padding: 0;
    background-color: transparent;
}
.form-group.textarea.preview .field-value {
    min-height: 156px;
    padding: 10px;
    background-color: rgba(255,255,255,.53);
}
.form-group.checkbox.preview .field-value {
    padding: 10px;
    background-color: rgba(255,255,255,.53);
}
.form-group .input {
    display: flex;
    /*margin: 0 40px 22px 0;*/

    transition: all var(--transition-t1);
}
.form-group .input input[type="checkbox"],
.form-group .input input[type="radio"] {
    display: none;
}
.form-group .input .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
    background-color: #fff;
}
.form-group .input.radio .icon {
    border-radius: 50%;
}
.form-group .input.radio input + label .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgb(var(--color-primary));

    opacity: 0;
    transition: all var(--transition-t1);
}
.form-group .input.radio input:checked + label .icon::before {
    opacity: 1;
}
.form-group .input.checkbox input + label .icon::before {
    content: '';
    width: 21px;
    height: 15px;
    margin: 2px 0 0;
    background: url("../Images/bg-check-lightblue.svg") no-repeat;
    background-size: 21px auto;

    opacity: 0;
    transition: all var(--transition-t1);
}
.form-group .input.checkbox input:checked + label .icon::before {
    opacity: 1;
}
.form-group .input.textarea {
    flex: 1 1 auto;
}
.form-group.error label,
.form-row.form-group.error label {
    color: rgb(var(--color-error-1));
}
.form-group.error input[type="text"],
.form-group.error textarea,
.form-group.error div.select {
    background-color: rgb(var(--color-error-2));
    color: rgb(var(--color-error-1));
}
.form-group.error div.select .selected {
    color: rgb(var(--color-error-1));
}
.form-group.error .input .icon {
    background-color: rgb(var(--color-error-2));
}
.form-group.error .select .selected::before {
    border-top: 11px solid rgb(var(--color-error-1));
}

.form-group .form-btn {
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin: 15px 0 0;
    padding: 7px 15px 10px 52px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background-color: rgb(var(--color-primary));
}
.form-group .form-btn::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 15px;
    width: 28px;
    height: 14px;
    background: url("../Images/bg-arrow-right-white.svg") no-repeat;
    background-size: 28px auto;
}
.form-group .form-btn.back::before {
    transform: rotate(180deg);
}
.form-group .form-btn span {
    border-bottom: 2px solid #fff;

    transition: all var(--transition-t1);
}
.form-group .form-btn:hover span {
    border-bottom-color: transparent;
}

div.select {
    position: relative;
    width: 374px;
    max-width: 100%;
    /*margin: -2px 0 32px 40px;*/
    background-color: #fff;

    transition: all var(--transition-t1);
}
.select.salutation {
    width: 206px;
}
.select .selected {
    margin: 0 52px 0 0;
    padding: 10px 52px 12px 12px;
    color: rgb(var(--color-font));
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    /*pointer-events: none;*/
}
.select .selected::before {
    content: '';
    position: absolute;
    top: 23px;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 11px solid rgb(var(--color-primary));

    /*transition: all var(--transition-t1);*/
}
.select.active .selected::before {
    transform: rotate(180deg);
}
.select ul {
    position: absolute;
    left: 0;
    right: 0;
    color: rgb(var(--color-font));
    background-color: #fff;
    z-index: 1;

    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t1);
}
.select.active ul {
    opacity: 1;
    pointer-events: auto;
}
.content .select ul li {
    padding: 6px 12px;
    margin: 0;
    cursor: pointer;

    transition: all var(--transition-t1);
}
.select ul li::before {
    display: none;
}
.select ul li:hover {
    background-color: rgb(var(--color-table-bg-tr-primary));
}

.form-group.disabled label {
    opacity: .5;
}
.form-group.disabled .select,
.form-group.disabled .input {
    opacity: .5;
    pointer-events: none;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/***** Bootstrap-Korrekturen - Start *****/
.container .container,
.container .container-fluid {
    width: auto;
    padding: 0;
}
.col-xxl-10 .col-xxl-10 {
    width: auto;
}
.offset-xxl-1 .offset-xxl-1 {
    margin-left: 0;
}
/***** Bootstrap-Korrekturen - End *****/

/***** Loader - Start *****/
.loading {
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
}
.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(var(--color-primary));
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}
.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}
@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}
/***** Loader - End *****/

/***** GLOBALS - End ************************************************************************************************/


/***** HEADER - Start *************************************************************************************************/
header.main {
    position: fixed;
    width: 100%;
    background-color: rgba(255,255,255,.9);
    z-index: 30;
}
header.main::before {
    content: '';
    display: block;
    height: 7px;
    background: url("../Images/bg-colored-bar.svg") no-repeat;
    background-size: cover;
}
header.main .header-stage {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 154px;

    transition: all var(--transition-t2);
}
header.main.scrolled .header-stage {
    height: 80px;
}
header.main .logo-wrapper {
    width: 100%;
}
header.main .logo {
    display: block;
    width: 260px;
    height: 79px;
    text-indent: -9999em;
    background: url("../Images/bg-logo-swh.png") no-repeat 0 2px;
    background-size: contain;

    transition: all var(--transition-t2);
}
header.main.scrolled .logo {
    height: 50px;
}
header.main .slogan {
    position: absolute;
    bottom: -30px;
    left: calc(50% - 149px);
    padding: 10px 10px 6px;
    font: 400 28px/1.21429 var(--font-1);
    color: #fff;
    background-color: rgb(var(--color-primary));
}
header.main .header-actions {
    display: flex;
    margin: 14px 12px 0 0;
}
header.main .header-actions .btn-nav {
    width: 54px;
    height: 41px;
    background: url("../Images/bg-nav-open.svg") no-repeat;
    background-size: contain;
    cursor: pointer;
}
header.main .header-actions .search {
    margin: 0 44px 0 0;
}
header.main .header-actions .search .btn {
    position: relative;
    width: 56px;
    height: 53px;
    cursor: pointer;
}
header.main .header-actions .search .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 46px;
    opacity: 1;
    background: url("../Images/bg-icon-lens.svg") no-repeat;
    background-size: contain;
    cursor: pointer;

    transition: all var(--transition-t2);
}
header.main .header-actions .search.active .btn::before {
    opacity: 0;
}
header.main .header-actions .search .btn::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 31px;
    height: 31px;
    opacity: 0;
    background: url("../Images/bg-icon-close-x.svg") no-repeat;
    background-size: auto 31px;
    cursor: pointer;

    transition: all var(--transition-t2);
}
header.main .header-actions .search.active .btn::after {
    opacity: 1;
}
header.main .header-actions .customer {
    display: block;
    width: 35px;
    height: 46px;
    margin: -2px 46px 0 0;
    text-indent: -9999em;
    background: url("../Images/bg-icon-customer.svg") no-repeat;
    background-size: contain;
}

header.main .header-actions .search .search-field {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    padding: 32px 0 34px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t2);
    background-color: rgb(var(--color-secondary));
}
header.main .header-actions .search.active .search-field {
    opacity: 1;
    pointer-events: auto;
}
header.main.scrolled .header-actions .search .search-field {
    top: 87px;
}
header.main .header-actions .search .search-field form {
    max-width: 100%;
}
header.main .header-actions .search .search-field .inputs {
    display: flex;
    width: 782px;
    max-width: 100%;
    height: 50px;
}
header.main .header-actions .search .search-field .inputs input[type="text"] {
    flex: 0 0 calc(100% - 56px);
    width: auto;
    height: 50px;
    border: none;
    font-size: 24px;
}
header.main .header-actions .search .search-field .inputs input[type="submit"] {
    cursor: pointer;
    text-indent: -9999em;
    width: 56px;
    height: 50px;
    border: none;
    background: #fff url("../Images/bg-icon-lens.svg") no-repeat center;
    background-size: 34px auto;
}


/***** Navigation - Start *****/
nav.main {
    position: fixed;
    top: -100%;
    right: 0;
    max-height: 100%;
    padding: 64px 200px 40px 110px;
    background-color: #fff;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t2) ease-in-out;
    z-index: 1110;
}
nav.main.active {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

nav.main .btn-nav-close {
    position: absolute;
    top: 40px;
    right: 48px;
    width: 46px;
    height: 46px;
}
nav.main .btn-nav-close::before,
nav.main .btn-nav-close::after {
    content: '';
    position: absolute;
    left: 50%;
    height: 100%;
    border-left: 5px solid rgb(var(--color-primary));
    border-radius: 3px;
    transform: rotate(-45deg);
}
nav.main .btn-nav-close::after {
    transform: rotate(45deg);
}

nav.main > ul {
    width: 460px;
}
nav.main > ul > li a {
    display: block;
    color: rgb(var(--color-primary));
    transition: all var(--transition-t2);
}
nav.main > ul > li a:hover,
nav.main > ul li.active > a {
    color: rgb(var(--color-secondary));
}

nav.main > ul > li {
    position: relative;
    margin: 0 0 20px;
    font-size: 30px;
}
nav.main > ul > li:last-of-type {
    margin: 0;
}
nav.main > ul > li .toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    transition: all var(--transition-t2) ease-in-out;
    transform: rotate(90deg);
    cursor: pointer;
}
nav.main > ul > li > .toggle {
    top: 5px;
}
nav.main ul > li.opened > .toggle {
    transform: rotate(180deg);
}
nav.main > ul > li .toggle::before,
nav.main > ul > li .toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 10px);
    border-top: 2px solid rgb(var(--color-primary));
    width: 12px;
    transform: rotate(-45deg);
    border-radius: 2px;
}
nav.main > ul > li .toggle::after {
    left: auto;
    right: calc(50% - 10px);
    transform: rotate(45deg);
}

nav.main .subnav {
    display: none;
    padding: 20px 0 0 34px;
}

nav.main .subnav > ul > li {
    position: relative;
    padding: 0 34px 20px 0;
    font-size: 24px;
}
/***** Navigation - End *****/

/***** Header-Image - Start *****/
.header-image {
    position: relative;
    /*min-height: 381px;*/
}
.header-image img {
    display: block;
    width: 100%;
    height: auto;
}
#page3 .header-image {
    margin: 0 0 76px;
}
/***** Header-Image - End *****/

/***** HEADER - End ***************************************************************************************************/


/***** CONTENT - Start ************************************************************************************************/
/*.outer {
    border: 2px dashed red;
}*/
#top {
    /*border: 2px dashed blueviolet;*/
    position: absolute;
}
/** {
    background-color: rgba(255,0,0,.2);
}*/

.outer::before {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--color-primary), .45);
    content: '';
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t2) ease-in-out;
    z-index: 1100;
}
.outer.overlay::before {
    opacity: 1;
    pointer-events: auto;
}

div.main {
    /*margin: 0 0 60px;*/
}

.content ul {
    margin: 0 0 32px;
}
.content ul li {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0 0 0 32px;
}
.content ul li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(var(--color-primary));
}

.content ol {
    list-style: none;
    counter-reset: rm-counter;
    margin: 0 0 32px;
    padding: 0;
}
.content ol li {
    counter-increment: rm-counter;
    position: relative;
    margin: 0;
    padding: 0 0 0 32px;
}
.content ol li::before {
    content: counter(rm-counter) ".";
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(var(--color-font));
    font-weight: 600;
}

.content ol li[class*="icon-"] {
    min-height: 112px;
    margin: 0 0 76px;
    padding: 12px 0 0 266px;
}
.content ol li[class*="icon-"]::before {
    content: counter(rm-counter);
    top: 16px;
    left: 170px;
    display: flex;
    width: 69px;
    height: 69px;
    justify-content: center;
    align-items: center;
    color: rgb(var(--color-primary));
    font-weight: 300;
    background-color: rgba(var(--color-primary), .31);
}
.content ol li[class*="icon-"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 142px;
    height: 112px;
    background-position: center 0;
    background-repeat: no-repeat;
}
.content ol li.icon-lens::after {
    background-image: url("../Images/bg-icon-lens-house-blue.svg");
    background-size: 112px auto;
}
.content ol li.icon-document::after {
    background-image: url("../Images/bg-icon-document-blue.svg");
    background-size: 75px auto;
}
.content ol li.icon-photovoltaik::after {
    background-image: url("../Images/bg-icon-photovoltaik-blue.svg");
    background-size: 142px auto;
}
.page-layout-20 .content ol li[class*="icon-"]::before {
    background: rgba(var(--color-custom-1),.31);
    color: rgba(var(--color-custom-1));
}
.page-layout-20 .content ol li.icon-lens::after {
     background-image: url("../Images/bg-icon-lens-house-orange.svg");
 }
.page-layout-20 .content ol li.icon-document::after {
    background-image: url("../Images/bg-icon-document-orange.svg");
}
.page-layout-20 .content ol li.icon-photovoltaik::after {
    background-image: url("../Images/bg-icon-photovoltaik-orange.svg");
}

/***** Startseite - Start *****/
.extern-app {
    position: relative;
    margin: 0 0 156px;
    padding: 1px 0;
    z-index: 20;
}
.extern-app .inner {
    position: relative;
}
.extern-app .inner .box {
    position: absolute;
    bottom: -106px;
    right: 200px;
    width: 524px;
    height: 534px;
    padding: 30px;
    color: #fff;
    text-align: center;
    background-color: rgba(var(--color-custom-1), .9);
}
.extern-app .inner .box::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -83px;
    width: 356px;
    height: 120px;
    background: url("../Images/bg-hills.svg") no-repeat;
    background-size: contain;
}

#page3 .ce-above .ce-gallery {
    min-height: 90px;
}
#page3 .col-md-4:nth-of-type(1) .frame-type-textmedia .ce-gallery img {
    width: 86px;
    height: auto;
}
#page3 .col-md-4:nth-of-type(2) .frame-type-textmedia .ce-gallery img {
    width: 94px;
    height: auto;
    margin: 12px 0 0;
}
#page3 .col-md-4:nth-of-type(3) .frame-type-textmedia .ce-gallery img {
    width: 79px;
    height: auto;
}
/***** Startseite - End *****/

/***** Content-Footer - Start *****/
.footercontent {
    padding: 80px 40px 46px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    /*background-color: rgba(var(--color-custom-3), .04);*/
    overflow: hidden;
}
.footercontent .footer-col {
    position: relative;
    padding: 0 0 0 50px;
}
.footercontent h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: rgb(var(--color-custom-3));
}
.footercontent .interruption h3 {
    color: rgb(var(--color-custom-3));
}
.footercontent p {
    margin: 0;
}
.footercontent .customer-contact,
.footercontent .customer-address,
.footercontent .sw,
.footercontent .interruption,
.footercontent .opening-times table {
    margin: 0 0 36px;
}
.footercontent .opening-times table {
    border-collapse: collapse;
}
.footercontent .opening-times table td {
    padding: 0 0 10px;
    vertical-align: top;
}
.footercontent .opening-times table .tlabel {
    padding-right: 20px;
}
.footercontent .customer::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -10px;
    width: 50px;
    height: 33px;
    background: url("../Images/bg-icon-customer-2.svg") no-repeat;
    background-size: contain;
}
.footercontent .opening-times::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 36px;
    height: 36px;
    background: url("../Images/bg-icon-clock.svg") no-repeat;
    background-size: contain;
}
.footercontent .interruption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    background: url("../Images/bg-icon-tool.svg") no-repeat;
    background-size: contain;
}
.footercontent .sw::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 38px;
    height: 52px;
    background: url("../Images/bg-icon-sw.svg") no-repeat;
    background-size: contain;
}
.footercontent a.button {
    margin: 0;
}
/***** Content-Footer - End *****/
/*** Infochart Start ***/

.infochart {
    text-align: center;
    padding: 0 50px 100px;
    font: 300 24px var(--font-1);
    letter-spacing: 0;
    background: #fff;
    margin: 0 0 50px;
}
.infochart .chart-content {
    padding: 94px 50px 16px;
}
.infochart .chart-row {
    padding: 50px 40px 0;
}
.infochart .chart-row.white {
    background: white;
    padding: 100px 40px 0;
    border-bottom: rgb(var(--color-primary)) 5px solid;
}
.infochart p {
    margin-bottom: 0;
    color: #373738;
    opacity: 1;
    position: relative;
    z-index: 2;
    line-height: 36px;
}
.infochart a{
    font-weight: 300;
}
.infochart .blue {
    background: #C6DEEE;
}
.infochart .chart-row.blue::after {
    content: "";
    position: absolute;
    left: calc(50% - 20px);
    bottom: -10px;
    background: #C6DEEE;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    z-index: 1;
}
.infochart .dark-blue {
    background: #1F7BBB;
}
.infochart .dark-blue p {
    color: #fff;
    padding-bottom: 45px;
}
.infochart .infochart {
    padding: 0 50px 100px;
}
.infochart .chart-row {
    position: relative;
    min-height:200px;
}
.infochart .very-light-blue {
    background: #E8F1F8;
}
.infochart .chart-row.very-light-blue::after {
    content: "";
    position: absolute;
    left: calc(50% - 20px);
    bottom: -10px;
    background: #E8F1F8;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    z-index: 1;
}
.infochart .light-blue {
    background: #DCEBF5;
}
.infochart .chart-row.light-blue::after {
    content: "";
    position: absolute;
    left: calc(50% - 20px);
    bottom: -10px;
    background: #DCEBF5;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    z-index: 1;
}
.infochart .chart-content{
    position: relative;
}
.infochart .white .chart-content p {
    font: normal normal 600 28px/36px var(--font-1);
    color: #1F7BBB;
    padding: 0 45px;
}
.infochart .very-light-blue .chart-content::before{
    content:"";
    position: absolute;
    background: url("../Images/infochart/form.svg") no-repeat;
    left: calc(50% - 42px);
    top: 0;
    width:84px;
    height:84px;
}
.infochart .light-blue .chart-content::before{
    content:"";
    position: absolute;
    background: url("../Images/infochart/post.svg") no-repeat;
    left: calc(50% - 36px);
    top: 0;
    width: 88px;
    height:84px;
}
.infochart .blue .chart-content::before{
    content:"";
    position: absolute;
    background: url("../Images/infochart/app.svg") no-repeat;
    left: calc(50% - 24px);
    top: 0;
    width:48px;
    height:82px;
}
.infochart .dark-blue.chart-row::after{
    content:"";
    position: absolute;
    background: url("../Images/infochart/saeule.svg")no-repeat;
    left: calc(50% - 23px);
    bottom: -56px;
    width: 84px;
    height: 93px;
}
.infochart .white .chart-content::before{
    content:"";
    position: absolute;
    background: url("../Images/infochart/auto.svg") no-repeat;
    left: calc(50% - 57px);
    top: -20px;
    width: 114px;
    height: 98px;
}
.infochart .dark-blue .chart-content {
    padding: 0 50px;
}
.infochart .dark-blue.chart-row::before {
    content: "";
    position: absolute;
    background: #fff;
    left: calc(50% - 17px);
    bottom: -13px;
    width: 42px;
    height: 49px;
}
.infochart .chart-row.white .chart-content p {
    font: normal normal 600 28px/36px var(--font-1);
    letter-spacing: 0;
    color: #1F7BBB;
}
/*** Infochart End ***/
/*** Kursübersicht - Start ***/
#page33 .tb-offset .text-content{
    padding-top: 40px;
}
#page33 .tb-offset .icon.i-2 {
    display: none;
}
/*** Kursübersicht - End ***/
/***** CONTENT - End **************************************************************************************************/

/***** FOOTER - Start *************************************************************************************************/
.footer-image {

}

footer.main {
    position: relative;
    margin: 0 0 76px;
    padding: 28px 0 0;
    font-size: 22px;
    font-weight: 300;
    z-index: 2;
}
footer.main::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    height: 7px;
    background: url("../Images/bg-colored-bar.svg") no-repeat;
    background-size: cover;
}
footer.main .footer-meta {
    display: inline-flex;
}
footer.main .footer-meta li {
    margin: 0 20px 0 0;
}
footer.main a {
    color: rgb(var(--color-custom-3));
}

footer.main .right {
    display: flex;
    justify-content: flex-end;
}

footer.main .totop a {
    display: inline-block;
    position: relative;
    padding: 0 40px 0 0;
}
footer.main .totop a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 29px;
    height: 15px;
    background: url("../Images/bg-arrow-2-up.svg") no-repeat;
    background-size: contain;

    transition: all var(--transition-t1);
}
footer.main .totop a:hover::before {
    bottom: 12px;
}
/***** FOOTER - End ***************************************************************************************************/
/***** EDL Loging - Start ******/
button[name="oauth-provider"] {
    position: relative;
    padding: 9px 54px 11px 20px;
    font: 400 22px/1.32 var(--font-1);
    color: #fff;
    background: rgb(var(--color-custom-3)) url("../Images/bg-arrow-right-white.svg") no-repeat calc(100% - 19px) 15px;
    background-size: 11px auto;
    transition: all var(--transition-t1);
    border: none;
    cursor: pointer;
}
button[name="oauth-provider"]:hover {
    background-position-x: calc(100% - 15px);
}
/***** EDL Loging - End ******/
