*, *::before, *::after {
    box-sizing: border-box;
}

h2 
{
    font-size: 3.5rem;
    margin: 0;
}

body {    
    background-color: #EFFAFD;
    font-family: lexend;
    color: #03242A;
    padding-top: 5rem;
}

#header_desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #d7ebef;
    z-index: 1000;
}

#header_desktop .inside {    
    max-width: 1512px;    
    height: 5rem;
    margin: auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

#logo {
    height: 3rem;
    display: flex;
    align-items: center;
}

#header_desktop nav.mod_navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

#header_desktop nav.mod_navigation ul.level_1 {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header_desktop nav.mod_navigation ul.level_1 li a {
    text-decoration: none;
    color: black;
    font-weight: 400;
}

#wrapper .mod_article
{
    max-width: 1512px;
    margin: auto auto 3rem;
    padding: 0 4rem;
}

#wrapper .mod_article.article-width-full {
    margin: 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
}


#wrapper .article-outer:has(.article-splash-gradient)
{
    background-color: #FFFFFF;
}

#wrapper .article-outer:has(.white_background_gradient) .article-splash-gradient 
{
    background: linear-gradient(to bottom, white 0%, white 50%, transparent 100%);   
}

#wrapper .article-outer:has(.default_background_gradient) .article-splash-gradient
{
    background: linear-gradient(to top, #EFFAFD 0%, transparent 50%, transparent 100%);
}

#wrapper .article-outer .article-splash-gradient
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 5;
}

#wrapper .article-outer:has(.article-splash-gradient) .mod_article .content-text
{
    z-index: 6;    
}

.mod_article.top_article_splash {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    height: 45.5rem;
}

.mod_article.top_article_splash .content-text {
    flex: 1 1 42%;
}


/* Video --- */

.mod_article.top_article_splash .content-player {
    flex: 1 1 58%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}


.mod_article.top_article_splash .content-player video {
    /*object-fit: contain;*/
    position: absolute;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    mix-blend-mode: hard-light;
}


.mod_article.top_article_splash .content-player::after {
    object-fit: contain;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #097C92;
    mix-blend-mode: color;
    pointer-events: none; 
    border-radius: 8px;   
    z-index: 2;
}

.mod_article.top_article_splash .content-player::before {
    object-fit: contain;
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/files/general/videos/fija_video_noise.png");
    background-size: cover;
    background-repeat: repeat;
    mix-blend-mode: overlay;
    opacity: 1.0;
    pointer-events: none;
    z-index: 3;
}

.mod_article.top_article_splash .content-player video::before {
    object-fit: contain;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #097C92;
    mix-blend-mode: color;
    opacity: 1;
    pointer-events: none;
}

#wrapper .mod_article.two_column_layout {
    margin-top: 8rem;
}

.mod_article.two_column_layout {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.mod_article.two_column_layout .card {
    background-color: white;
    border-radius: 1rem;
    flex: 1 1 50%;
    padding: 2.5rem;
}

.mod_article.two_column_layout .card.content-image {
    overflow: hidden;
    padding: 0;
}

.mod_article.two_column_layout .card.content-image figure, .mod_article.two_column_layout .card.content-image figure img{
    width: 100%;
    height: 100%;
}

.mod_article.two_column_layout .fifteen-percent-api {
    position: relative;
    overflow: hidden;
    background: #03232A;
    padding: 0;
}

.mod_article.two_column_layout .fifteen-percent-api::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 62%;              
    height: 1px;           
    background-color: #14404A;
    z-index: 1;
}

.mod_article.two_column_layout .fifteen-percent-api .corner-text {
  position: absolute;
  top: 3rem;
  right: 2rem;
  display: inline-flex;
  align-items: flex-end; 
  gap: 0.25rem;
}

.mod_article.two_column_layout .fifteen-percent-api .corner-text .upto {
  font-size: 1.0rem;
  font-weight: lighter;
  color: #50777f;
}

.mod_article.two_column_layout .fifteen-percent-api .corner-text .percent {
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

.mod_article.two_column_layout .fifteen-percent-api .corner-text .apy {
  font-size: 1.0rem;
  font-weight: lighter;
  color: #50777f;
  align-self: flex-start;
}

.mod_article.two_column_layout .fifteen-percent-api img{
    transform: translateY(3rem);
    transition: transform .35s ease;
}

.mod_article.two_column_layout .fifteen-percent-api:hover img{
    transform: translateY(0rem);
}

button.button_submit {
  background-color: #2A8FA2;
  color: white;
  padding: 0 1.5rem;
  border-radius: 1rem;
  border: 0.13rem solid #2A8FA2;
  font-weight: 500;
  display: inline-flex;
  align-items: center;  
  justify-content: center; 
  white-space: nowrap;     
  height: 3.8rem;
  line-height: 1; 
  text-align: center;
  box-sizing: border-box;
  transition: border-color .5s ease, background-color .5s ease;
  margin-top: 1.0rem;
  width: 20vw;
}

button.button_submit:hover {
    border-color: #a2d7e1;
    background-color: #45afc3;
}

.ce_form {
  place-self: center;
}

#ctrl_12 {
  display: block;
  width: 100%;   /* optional */    
  background: transparent;
  color: #fff;
  border: 1px solid #85a6ad;
  border-radius: 1rem; 
  padding: .75rem 1rem;
  box-sizing: border-box;
  font: inherit;
  outline: none;
  margin-top: 1.0rem;
  width: 20vw;
}

#ctrl_12::placeholder {
  color: #85a6ad;
}

#ctrl_12:focus-visible {
  border-color: #2A8FA2;                         
  box-shadow: 0 0 0 .2rem #85a6ad;
}


button.button_default,
a.button_default {
    text-decoration: none;
}

a.button_default:hover,
a.button_default:focus,
a.button_default:active {
    text-decoration: none;
}

.button_default {
    background-color: #2A8FA2;
    color: white;
    padding: 0 1.5rem;
    border-radius: 1rem;
    border: 0.13rem solid #2A8FA2;
    font-weight: 500;
    display: inline-flex;
    align-items: center;      
    justify-content: center; 
    white-space: nowrap;     
    height: 2.5rem;
    line-height: 1;          
    text-align: center;
    box-sizing: border-box;
    margin-left: 1.7rem;
    transition: border-color .5s ease, background-color .5s ease;
}

.button_default:hover {
    border-color: #a2d7e1;
    background-color: #45afc3;
}

.button_default.inner-content-height {
    height: 3.8rem;
    margin-left: 0rem;
}

.button_default.button_arrow {
    position: relative;
    padding-right: 4rem;
}

.button_default.button_arrow::after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    transform: translateY(-50%) rotate(-45deg);
    background: url("/files/startseite/icons/icon_arrow_white.png") no-repeat center / contain;
    pointer-events: none;
    transition: transform .35s ease;
}

.button_default.button_arrow:hover::after {
    transform: translateY(-50%) rotate(0deg);
}

.mod_article:has(.ce_rsce_table_strategies), .strategies-list-container {
    overflow: visible;
}

.strategies-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.strategies-list p
{
    letter-spacing: -0.4px;
    margin: 0;
}

.strategies-list .bottom .strategies-map-item
{
    margin-bottom: 1rem;
}

.strategies-list h1
{
    color: #2A8FA2;
    margin: 0 0 1rem;
}

.strategies-list-element {
    background-color: white;
    border-radius: 1rem;
    padding: 1rem;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: visible;
    border: 1px solid #fff;
    transition:
		border 0.35s ease;
}

.strategies-list-element:hover {
    border: 1px solid #2a8fa2;
}


.strategies-list-element .top {
    background-color: #EFFAFD;
    border: 1px solid #D6E8EB;
    border-radius: 1rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.strategies-list-element .strategies-map-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.strategies-map-items > .strategies-map-item:last-child:nth-child(odd) {
    grid-column: span 2;
}

.strategies-list-element .strategies-map-items .kv .kv_key {
    color: #507780;
}

.strategies-list-element .strategies-map-items .kv .kv_value {
    font-weight: bold;
}

.strategies-item-icon p,
.strategies-item-icon img {
    display: inline;
    vertical-align: middle;
}

.strategies-list-element img {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
}

.strategies-item-icon-tooltip
{
    cursor: pointer;
    position: relative;
}

.top .inner strong
{
    font-size: 1.2rem;
    line-height: 2rem;
}

.floor .button_default {
    width: 100%;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 2rem 0 0;
}

.strategies-item-icon-tooltip > p
{
    width: max-content;
    font-size: smaller;
}

.strategies-item-icon-tooltip img
{
    height: 1rem;
    width: 1rem;
    min-width: 1rem;
}

.strategies-item-icon-tooltip:hover .strategies-tooltip-container, .strategies-item-icon-tooltip:hover .strategies-tooltip-container-arrow-outer, .strategies-item-icon-tooltip:hover .strategies-tooltip-container-arrow-inner
{
    display: block;
}

.strategies-tooltip-container-arrow-outer
{
    display: none;
    right: 23px;
    bottom: 20px;
    height: 0px;
    width: 0px;
    position: absolute;
    border-right: solid 16px transparent;
    border-top: solid 16px #2A8FA2;
    border-left: solid 16px transparent;
}
.strategies-tooltip-container-arrow-inner
{
    display: none;
    position: absolute;
    right: 24px;
    bottom: 21px;
    height: 4px;
    width: 0px;
    z-index: 2;
    border-right: solid 15px transparent;
    border-top: solid 15px #fff;
    border-left: solid 15px transparent;
}

.strategies-tooltip-container
{
    position: absolute;
    display: none;
    background-color: #ffffff;
    border: 1px solid #2A8FA2;
    border-radius: 4px;
    width: 18.75rem;
    padding: 1rem;
    z-index: 1;
    margin-top: 2rem;
    transform: translateX(37%);
    right: 0;
    bottom: 35px;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.timeline-three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
}

/* labels */
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .label-1 {
    border: 1px solid #2a8fa2;
    color: #2a8fa2;
}
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .label-2,
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .label-3 {
    border: 1px solid rgba(9,124,146,.15);
    color: #7aa7b0;
}

.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .label-1,
.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .label-2 {
    border: 1px solid #2a8fa2;
    color: #2a8fa2;
}
.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .label-3 {
    border: 1px solid rgba(9,124,146,.15);
    color: #7aa7b0;
}

.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .label-1,
.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .label-2,
.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .label-3 {
    border: 1px solid #2a8fa2;
    color: #2a8fa2;
}

/* linie */
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .track::after {
    transform: translateY(-50%) scaleX(0.25);
}

.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .track::after {
    transform: translateY(-50%) scaleX(0.6);
}

.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .track::after {
    transform: translateY(-50%) scaleX(1.0);
}

/* dots */
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .dot-1 {
    background: #2a8fa2;
}
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .dot-2,
.timeline-three-column-grid:has(.timeline-hover-1:hover) .timeline .dot-3 {
    background: #cfe6eb;
}

.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .dot-1,
.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .dot-2 {
    background: #2a8fa2;
}
.timeline-three-column-grid:has(.timeline-hover-2:hover) .timeline .dot-3 {
    background: #cfe6eb;
}

.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .dot-1,
.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .dot-2,
.timeline-three-column-grid:has(.timeline-hover-3:hover) .timeline .dot-3 {
    background: #2a8fa2;
}

.timeline {
    grid-column: 1 / -1;
    padding: 2.5rem 3rem 4rem;
}

.timeline .labels{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.625rem;
}

.timeline .label{
    display: flex;
    justify-content: center;
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    background: #fff;
    color: #7aa7b0;
    border: 1px solid rgba(9,124,146,.15);
    box-shadow: 0 1px 0 rgba(0,0,0,.03);
    font-weight: 600;
    width: 150px;
    transition:
		border 0.35s ease, color 0.35s ease;
}

.timeline .label-1 {}
.timeline .label-2 {}
.timeline .label-3 {}

.timeline .track{
    position: relative;
    margin: 0 3.625rem;                
    height: 1.125rem;                   
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline .track::before{
    content: "";
    position: absolute;
    left: 0.5rem;                       
    right: 0.5rem;                      
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background:
        repeating-linear-gradient(
        to right,
        rgba(9,124,146,.22) 0 0.75rem,
        transparent 14px 28px
    );
    z-index: 0;
}

.timeline .track::after {
    content: "";
    position: absolute;
    left: 0.5rem;                       
    right: 0.5rem;                      
    top: 50%;
    transform: translateY(-50%) scaleX(0.0);
    transform-origin: left center;
    height: 2px;
    background: #2a8fa2;
    z-index: 1;
    transition: transform 0.5s ease;
}

.timeline .dot{
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #cfe6eb;
    z-index: 2;
    transition: background 0.35s ease;
}

.timeline .dot-1 {}
.timeline .dot-2 {}
.timeline .dot-3 {}

.socialmedia-icon {
    background-color: #d7ebef;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;	  
    transition:
        background-color 0.35s ease;
}


.gap-small 
{
    gap: 1rem;
}

.gap-medium
{
    gap: 2rem;
}

.gap-big
{
    gap: 4rem;
}

.article-card .article-inner
{
    background-color: white;
    border-radius: 1rem;
    border: 1px solid #D7EBEF;
    padding: 1rem;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.article-inner:has(.card-gallery-card) {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 8rem;
}

.article-inner:has(.card-gallery-card) .card-gallery-card {
    flex: 1 1 calc(20% - 1rem);
}

.card
{
    border-radius: 1rem;
    padding: 2rem;
}

.card-arrow {
    position: relative; 
}

.card-arrow p {
    font-size: 1.5rem;
    width: 60%;
}

.card-arrow::after {
    content: "";
    position: absolute;
    right: 2.8rem;           
    bottom: 2.8rem;          
    width: 2.3rem;            
    height: 2.3rem; 
    background: url("/files/startseite/icons/icon_arrow.png") no-repeat center / contain;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: transform .35s ease;
}


.card-arrow:hover::after {
  transform: rotate(0deg);
}

.easy-steps-card 
{
    height: 13rem;
    position: relative;
}

.card-hover-outline
{
    border: 1px solid #fff;
    transition:
		border 0.35s ease;
}

.card-hover-outline:hover {
    border: 1px solid #2a8fa2;
}


.card-color-white
{
    background-color: #FFFFFF;
}

.card-color-default
{
    background-color: #EFFAFD;
}


.headline-color-85A6AD h2 
{
    color: #85A6AD;
}

.headline-size-small1 h2
{
    font-size: 1.5rem;
}

.card-gallery-card
{
    position: relative;
    overflow: hidden;
    max-width: 13.5rem;
    max-height: 20.5rem;
    width: 13.5rem;
    height: 20.5rem;
    padding: 1.5rem 1.5rem 2rem;
}


.card-counter-reset
{
    counter-reset: card-counter;
}

.card-gallery-card-nr
{
    counter-increment: card-counter;
}

.card-gallery-card-nr::before
{
    content: "0" counter(card-counter);
    position: absolute;
    top: 1.5rem;
    color: #507780;
    z-index: 2;
}

.card-step-card-nr
{
    counter-increment: card-counter;
}

.card-step-card-nr::before
{
    content: "0" counter(card-counter);
    position: absolute;
    font-weight: 300;
    right: 2rem;
    bottom: 2rem;
    color: #85a6ad;
    z-index: 2;
}


.rectangle_1,
.rectangle_2,
.rectangle_3 {
    position: absolute;
    height: 0.5rem;
    width: 100%;
    left: 0;
    z-index: 0;
}

.rectangle_1 {
    transition: height 0.7s ease;
    bottom: 1rem;
    background-color: #BEF5FF;
}

.rectangle_2 {
    bottom: 0.5rem;
    background-color: #5EC8DB;
}

.rectangle_3 {    
    bottom: 0;
    background-color: #2A8FA2;
}

.card-gallery-card h2
{
    font-size: 1.5rem;
    font-weight: normal;
    /*letter-spacing: -1px;*/ 
}

.rte-hover-transition
{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.rte-hover-transition .rte, .rte-hover-transition h2
{
    z-index: 1;
}

.rte-hover-transition .rte {
    height: 0;
    max-height: fit-content;
    overflow: hidden;
    transition: height 0.7s ease, opacity 0.7s ease;
    opacity: 0;
}

.rte-hover-transition:hover .rte {
    height: 100%;
    max-height: fit-content;
    opacity: 1;
}

.rte-hover-transition:hover .rectangle_1 {
    height: 100%;
}

.ce_rsce_scrolling_images_with_text {
    display: flex;
    --gap: 1rem;
    gap: var(--gap);
    margin-bottom: 1rem;
    /*
    mask-image: linear-gradient(
            var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
    );
    */
}

@keyframes marquee {
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.scrolling-images-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
    animation: marquee 40s linear infinite;
    z-index: 5;
    gap: var(--gap);
}

.scroll-reverse .scrolling-images-track {
    animation-direction: reverse;
}

.scrolling-images-container-element {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20.875rem;
    height: 9rem;
    background-color: #507780;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1.8rem;
    transition: background-color 0.35s ease;
}

.scrolling-images-container-element img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    opacity: 0.4;
    transform: translateY(0);
    transition: transform 0.4s ease; opacity 0.4s ease;
    will-change: transform;
}

.scrolling-images-container-element p {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translate(-50%, 100%);
    opacity: 0;
    color: #ffffff;
    margin: 0;
    line-height: 1.5rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
    pointer-events: none;
}

.scrolling-images-container-element:hover {
     background-color: #022b34;
}

.scrolling-images-container-element:hover img {
    transform: translateY(-1.5rem);
    opacity: 1.0;
}

.scrolling-images-container-element:hover p {
    transform: translate(-50%, 0);
    opacity: 1;
}

.article-outer:has(.background-text-trusted)
{
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.mod_article:has(.background-text-trusted)
{
    overflow: visible;   
}

.background-text-trusted
{    
    position: relative;
    width: 100%;
    height: 12rem;
    color: #d7e8ec;
}

.background-text-trusted .rte p {    
    font-size: 15rem;
    letter-spacing: -5px;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.background-text-trusted.top .rte p {
    mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,.5) 50%,
            rgba(0,0,0,0) 100%
    );
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.background-text-trusted.bottom .rte p {
    mask-image: linear-gradient(
            to top,
            rgba(0,0,0,.5) 50%,
            rgba(0,0,0,0) 100%
    );
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}


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

.ce_rsce_text_partners_card {
    position: relative;
    overflow: hidden;
    width: 20.875rem;
    height: 27.5rem;
    border-radius: 1rem;
    color: #FFFFFF;
    transition: color 0.7s ease;
    padding: 2rem 1rem 5rem;
}

.ce_rsce_text_partners_card > h2, .ce_rsce_text_partners_card > p {
    position: relative;
    z-index: 1;
}

.ce_rsce_text_partners_card > h2
{
    font-size: 2rem;
}

.ce_rsce_text_partners_card > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ce_rsce_text_partners_card .content-footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid rgba(128, 128, 128, 0.5);
}

.ce_rsce_text_partners_card .content-footer p {
    margin: 0;
}

.ce_rsce_text_partners_card .content-footer img {
    margin-left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.ce_rsce_text_partners_card:hover 
{
    color: #03242A;
}

.ce_rsce_text_partners_card:hover .socialmedia-icon {
    background-color: #03242A;	
}

.ce_rsce_text_partners_card:hover .socialmedia-icon:hover {
    background-color: #5ec8db;	
}

/* founders from */

.ce_rsce_image_list.image-list-founders {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    z-index: 3;
}

.ce_rsce_image_list.image-list-founders .image-list-element {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6rem;
    width: 13.5rem;
    padding: 1.5rem;
    border: 1px solid rgb(from var(--color) r g b / var(--opacity));
    border-radius: 1rem;
    transition: border 0.35s ease;
}

.ce_rsce_image_list.image-list-founders .image-list-element:hover {
    border-color: rgb(from var(--color-hover) r g b / var(--opacity-hover));
}

.ce_rsce_image_list.image-list-founders .image-list-element .image-list-mask {
    width: 100%;
    height: 100%;
    background-color: var(--color);
    opacity: var(--opacity);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;	  
	 transition: background-color .35s ease, opacity .35s ease;
}

.ce_rsce_image_list.image-list-founders .image-list-element:hover .image-list-mask {
    background-color: var(--color-hover);
    opacity: var(--opacity-hover);
}

/* backed by */

.ce_rsce_image_list.image-list-backedby {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    z-index: 3;
}

.ce_rsce_image_list.image-list-backedby .image-list-element {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgb(from var(--color) r g b / var(--opacity));
    border-radius: 1rem;
    transition: border 0.35s ease;
}

.ce_rsce_image_list.image-list-backedby .image-list-element > a {
  display: flex;                 /* statt inline */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.ce_rsce_image_list.image-list-backedby .image-list-element:hover {
    border-color: rgb(from var(--color-hover) r g b / var(--opacity-hover));
}

.ce_rsce_image_list.image-list-backedby .image-list-element .image-list-mask,
.ce_rsce_image_list.image-list-backedby .image-list-element > a > .image-list-mask {
    width: 100%;
    height: 100%;
    background-color: var(--color);
    opacity: var(--opacity);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;	  
	 transition: background-color .35s ease, opacity .35s ease;
}

.ce_rsce_image_list.image-list-backedby .image-list-element:hover .image-list-mask {
    background-color: var(--color-hover);
    opacity: var(--opacity-hover);
}


#wrapper .mod_article.newsletter-card .article-inner {
    background: linear-gradient(to right, #03242A, #11424B);
    border-radius: 1rem;
    padding: 4rem 8rem;
    display: flex;
    gap: 8rem;
    align-items: stretch;
    color: #fff;
}

#wrapper .mod_article.newsletter-card .article-inner img {
    width: 4rem;
    height: 4rem;
    margin-left: 0rem;
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.mod_article.newsletter-card .article-inner .content-text {
    flex: 1 1 0;
    min-width: 0;
}

.mod_article.newsletter-card .article-inner .content-text:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#footer_top_desktop {
    width: 100%;
    background-color: #D7EBEF;
    border-bottom: 1px solid #85A6AD;
}

#footer_top_desktop .inside {
    max-width: 1512px;
    height: 5rem;
    margin: auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

#footer_bottom_desktop {
    width: 100%;
    background-color: #D7EBEF;
    color: #507780;
    font-size: 1.125rem;
}

#footer_bottom_desktop .inside {
    max-width: 1512px;
    margin: auto;
    height: 5rem;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer_bottom_desktop nav ul {    
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer_bottom_desktop nav a {
    text-decoration: none;
    color: inherit;
}

#footer_bottom_desktop span {
    font-weight: bold;
}

#backToTopButton a {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    color: inherit;
}

#backToTopButton img {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}

#backToTopButton span {
    font-weight: normal;
    vertical-align: middle;
}