body {
    margin: 0;
    padding: 0 0 60px 0;
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--Text-Dark, #204968);
    /* background-color: yellowgreen; */
}

body.subpage { padding: 60px 0; } 


html {
  scroll-behavior: smooth;
}

button {
    cursor: pointer;
}
/* Stage Section */
.stage {
    background: url("assets/images/stage_bg.jpg") lightgray 50% / cover no-repeat;

    width: 100%;
    height: 486.97px;

}
.stage-card {
    border-radius: 20px;
    background: rgba(38, 114, 181, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    max-width: 980px;
    width: 68%;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    justify-self: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    position: relative;
    top: 60px;
    margin-left: auto;
    margin-right: auto;
    /* left: 16%; */
}

h1 {
	font-weight: 200;
	margin-top: 30px;
	margin-bottom: 5px;
	}

@media (max-width:850px) {

	h1 {
    font-size: 36px; /* Tablet */
	line-height: 40px; /* Tablet */
  }
}


@media (max-width: 570px) {
	h1 {
    font-size: 28px; /* Mobile */
	line-height: 36px; /* Mobile */
  	}
}


.stage-card h1 {
    color: var(--White, #FFF);
    text-align: center;
    margin: 0;

    font-family: "DM Sans";
    font-size: var(--fontSize-H1, 50px);
    font-style: normal;
    font-weight: 200;
    line-height: var(--lineHeight-H1, 55px); /* 110% */
}
.stage-card p {
    color: var(--White, #FFF);
    text-align: center;
    margin: 0;

    /* Web/Copy */
    font-family: "DM Sans";
    font-size: var(--fontSize-Copy, 24px);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lineHeight-Copy, 28px); /* 116.667% */
}
.white-button {
    border-radius: 100px;
    background: var(--White, #FFF);
    border-width: 0px;

  	display: flex;
    height: 48px;
    min-width: 150px;
	width: auto;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    color: #2672B5;
    text-align: center;
	text-decoration: none;


    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 17.6px */
    letter-spacing: -0.64px;
}

/* Content Section */
.content {
    padding: 60px 5%;
	max-width: 1200px;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* gap: 48px; */
    background: #FFF;
}
.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    background: #FFF;
}
.card {
    display: flex;
    width: 201px;
    min-width: 200px;
    max-width: 400px;
    padding: 0 24px;
    flex-direction: column;
    align-items: center;
    /* gap: var(--verticalSpaceObjects, 24px); */
    flex: 1 0 0;

    /* margin-right: 48px; */
}
.card-image {
    display: flex;
    width: 150px;
    height: 150px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    aspect-ratio: 1/1;
}
.card-text {
    align-self: stretch;
    margin: 24px 0 0 0;

    color: var(--Text-Light, #736783);
    text-align: center;

    font-family: "DM Sans";
    font-size: var(--fontSize-Copy, 24px);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lineHeight-Copy, 28px); /* 116.667% */
}

.split-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* gap: 48px;
    margin-top: 60px; */
    /* padding: 80px 10.42%; */
    /* background: #F9F9F9; */
}
.margin-top-60 {
    margin-top: 60px;
}
.gap-48 {
    gap: 48px;
}
.split-section-text {
    display: flex;
    min-width: 250px;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

h2 {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 200;
    color: var(--Text-Dark, #204968);
	align-self: stretch;
    margin-top: 30px;
	margin-bottom: 5px;
}
h2 { font-size: 40px; line-height: 45px; width: auto; }
@media (max-width:850px){ h2 { font-size:34px; line-height: 38px;} }
@media (max-width:570px){ h2 { font-size:26px; line-height: 30px;} }

.split-section-text p {
    color: var(--Text-Light, #736783);
    margin: 0;    
}
.p-200-font-weight {
    font-family: "DM Sans";
    font-size: var(--fontSize-Copy, 24px);
    font-style: normal;
    font-weight: 200;
    line-height: var(--lineHeight-Copy, 28px); /* 116.667% */
}

@media (max-width:850px){ .p-200-font-weight { font-size:22px; line-height: 26px;} }
@media (max-width:570px){ .p-200-font-weight { font-size:20px; line-height: 24px;} }

.p-400-font-weight {
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.split-section-image {
    display: flex;
    width: 300px;
    height: 520px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 300.00/520.00;
}
.add-border {
    border-radius: 32px;
    border: 1px solid #736783;
    background: var(--White, #FFF);
}
.add-padding-60 {
    padding: 60px;
}
.font-weight-400 {
    font-weight: 400;
}
.qr-section-image {
    display: flex;
    width: 200px;
    height: 200px;
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.phone-image {
    display: flex;
    width: 375px;
    height: 650px;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    aspect-ratio: 15/26;
}
.svg-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    margin-right: 8px;
    width: 32.085px;
    height: 32.083px;
    justify-content: center;
}
.svg-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}
.blue-button {
    display: inline-flex;
    height: 48px;
    min-width: 150px;
    padding: 0 48px;
    justify-self: center;
    align-items: center;
    gap: 8px;
	align-items: center;
	justify-content: center;

  height: 48px;
  padding: 0 24px;

  text-decoration: none;

    border-radius: 100px;
    background: var(--Primary, #2672B5);
    border-width: 0px;

    color: var(--White, #FFF);
    text-align: center;

    /* App/H3 */
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 17.6px */
    letter-spacing: -0.64px;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 8px;
}
/* .button-container button {
    position: relative;
    left: 50%;
} */

.p-600-font-weight {
    color: var(--Text-Dark, #204968);
    text-align: center;
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
}

.statistics-card {
    display: flex;
    min-width: 360px;
    padding: var(--verticalSpaceObjects, 24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;

    border-radius: var(--cornerRadius, 32px);
    border: 1px solid var(--Text-Light, #736783);
    background: var(--White, #FFF);
}
.statistics-card p {
    margin: 0;
}
.font-size-78 {
    color: var(--Text-Dark, #204968);
    text-align: center;
    font-family: "DM Sans";
    font-size: 78px;
    font-style: normal;
    font-weight: 150;
    line-height: 76px; /* 97.436% */
    letter-spacing: 1px;
}
.p-300-font-weight {
    color: var(--Text-Light, #736783);
    text-align: center;

    /* Web/Copy */
    font-family: "DM Sans";
    font-size: var(--fontSize-Copy, 24px);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lineHeight-Copy, 28px); /* 116.667% */
}
.font-color-blue {
    color: var(--Text-Dark, #204968);
    text-align: center;

    /* Web/Copy */
    font-family: "DM Sans";
    font-size: var(--fontSize-Copy, 24px);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lineHeight-Copy, 28px); /* 116.667% */
}
.link-name {
    text-decoration: none;
    color: var(--Primary, var(--Primary, #2672B5));

    /* Web/Copy */
    font-family: "DM Sans";
    font-size: var(--fontSize-Copy, 24px);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lineHeight-Copy, 28px);
}

.subheader {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    width: 100%;
    background: var(--Dark-Gradient, linear-gradient(162deg, #2672B5 37.43%, #13114F 124.78%));
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	text-decoration: none;
	z-index: 1000;
}

.subheader h1 {
	color: #fff;
	margin: 0;
}

.subheader:hover,
.subheader h1:hover {
  text-decoration: none;
}

.subheader { height: 100px; width: auto; }
@media (max-width:850px){ .subheader{ height:85px; } }
@media (max-width:570px){ .subheader{ height:70px; } }

.logo { height: 60px; width: auto; }
@media (max-width:850px){ .logo{ height:50px; } }
@media (max-width:570px){ .logo{ height:40px; } }

footer {
    display: flex;
    height: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
	position: fixed;
	bottom: 0;
    width: 100%;

    background: var(--Dark-Gradient, linear-gradient(162deg, #2672B5 37.43%, #13114F 124.78%));
}
footer p {
    color: var(--White, #FFF);
    text-align: center;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 116.667% */
}

.footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width:850px) {

	.footer a {
    font-size: 16px;
	line-height: 20px;
  }
	.footer {
		height: 50px;
	}
}
	
	
@media (max-width:570px) {

	.footer a {
    font-size: 14px;
	line-height: 18px;
	}
	.footer {
		height: 30px;
	}
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1123px) {
    .stage {
        height: 590px;
    }
    /* 486.97px */
}

@media (max-width:850px) {

	.stage-card h1 {
    font-size: 45px; /* Tablet */
	line-height: 50px; /* Tablet */
  }
	.card-text, .stage-card p, .p-200-font-weight {
    font-size: 22px; /* Tablet */
	line-height: 26px; /* Tablet */
  }
	.split-section {
        flex-direction: column;
        /* gap: 24px; */
   }
    .mobile-split {
        flex-direction: row;
   }
}

@media (max-width: 670px) {
    .stage {
        height: 630px;
    }
    /* 486.97px */
}
@media (max-width: 570px) {
	.stage-card h1 {
    font-size: 28px; /* Mobile */
	line-height: 30px; /* Mobile */
  	}
	.card-text, .stage-card p, .p-200-font-weight {
    font-size: 20px; /* Tablet */
	line-height: 22px; /* Tablet */
  }
	.phone-image {
	padding: 0 20px;
	}
	img {
		max-width: 100%;
  		height: auto; !important;
  		max-width: 300px;
		max-height: 520px;
	}
    .stage {
        height: 450px;
    }
    .change-padding-mobile {
        padding: 30px;
    }
    /* 486.97px */
}
@media (max-width: 450px) {
    .stage {
        height: 500px;
    }
	.stage-card {
	top: 30px;
	}
	.cards .statistics-card {
	gap: 24px;
	min-width: 250px;
	}
	.content {
	padding-top: 30px;
	}
	.statistics-card .font-size-78 {
  	font-size: 60px;
	}
	.statistics-card .link-name {
  	font-size: 20px;
	}
	.split-section-text p {
	font-size: 20px;
	}
	.statistics-card p {
	font-size: 20px;
	}
    .change-padding-mobile {
        padding: 10px;
    }
}

#ziel {
  scroll-margin-top: -200px;
}

@media (max-width: 1440px) {
  #ziel {
    scroll-margin-top: -70px; /* Laptop */
  }
}

@media (max-width: 850px) {
  #ziel {
    scroll-margin-top: -60px; /* Tablet */
  }
}

@media (max-width: 570px) {
  #ziel {
    scroll-margin-top: -60px; /* Mobile */
  }
}

/***************************** Sub Page *****************************/

.sub-stage-image {
    width: 100%;
    height: auto;
}