h1 {
	margin-bottom: 30px;
	font-family: 'Titillium Web', sans-serif;
	color: #0d090d;
	font-size: 3.75em;
	line-height: 70px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

h2 {
	/* font-family: 'Open Sans', sans-serif; */
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.7em;
	margin-bottom: 30px;
}

h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.3em;
	margin-bottom: 30px;
}

h4{
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
}

h5{
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
}

h6{
	font-size: 26px;
}

.p3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.3em;
}

.navbar .active{
	background-color:#158CBA;
	border-bottom:4px solid #127BA3;
	margin-bottom:-4px;
}
html,body{
	font: 15px/1.5 'Open Sans', sans-serif;
	padding:0px;
	margin:0px;
}
.wrapper{
  display: flex;
  flex-direction: column;
}
.page{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	flex:1;
}
.image{
	height:600px;
	background-image:url(/public/clock-on-beach.jpg);
	background-size:cover;
	background-position:left;
}
.image .jumbotron{
	margin-top:70px;
	background-color:rgba(0,0,0,0.5);
	color:white;
}
.row{
	position: relative;
}

.text{
	min-width: 200px;
}

.screenshot{
	background-image:url(/public/screenshot.jpg);
	background-position: center;
	background-repeat:no-repeat;
	height:300px;
	background-size:contain;
	min-width: 200px;
	margin:20px;
}

.intro-image{
	max-height: 300px;
	margin: 20px;
}

.reveal-right, .reveal-left{
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	margin-bottom:100px;
	margin-top:50px;
}

.reveal-right > *, .reveal-left > *{
	flex:1;
}

.reveal-right{
	flex-direction: row-reverse;
}

footer{
	padding-top: 50px;
	width:100%;
	background: #2c3e50;
	color: white;
	margin-top:20px;
}

footer a{
	display: block;
}

footer hr {
	margin: 10px;
}

.additional-links span {
	font-size: 0.9em;
	margin-right: 5px;
}

.additional-links a {
	font-size: 0.9em;
	display: inline;
	margin: 0 10px;
	color: white;
}

.pricing{
	display:flex;
	flex-wrap: wrap;
}
.plan{
	flex:1;
	border:1px solid #eee;
	border-radius:5px;
	margin-right:20px;
	text-align: center;
	min-width: 200px;
	margin-bottom: 20px;
	position: relative;
	border-radius: 0.9rem;
	box-shadow: 0 4px 3px rgba(0, 0, 0, 0.07), 0 2px 2px rgba(0, 0, 0, 0.06);
}
.plan > *{
	padding: 10px;
}
.plan .name{
	font-size: 20px;
	font-weight: bold;
}
.plan .price{
	font-size: 30px;
	font-weight: bold;
}
.plan .btn{
	width:100%;
}
.plan .description{
	height:100px;
}
.plan .feature{	
	margin-left: 10px;
	text-align: left;
}
.plan .no-feature{	
	margin-left: 10px;
	text-align: left;
}
.plan .feature::before {
	content: "\f00c";
	font-family: FontAwesome;
	font-size: 1.2em;
	color: rgb(0, 197, 0);
	margin-right: 8px;
  }
  
.plan .feature.hightlighted{
	color:#79A70A;
	font-weight: bold;
	box-shadow: 0 0 5px #79A70A;
	margin-right: 10px;
	margin-bottom: 10px;
}
.plan .feature:last-child{
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.buy-btn {
	background: #2c3e50;
	border: none;
	border-radius: 15px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	padding: 12px 24px;
	transition: all 0.2s ease-in-out;
	filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.buy-btn:hover {
	transform: scale(1.05);
}

.buy-btn.disabled {
    background-color: #e0e0e0; /* Eine hellere Graustufe für den Hintergrund */
    color: #333333;            /* Dunkelgrauer Text für besseren Kontrast */
    pointer-events: none;      /* Verhindert Klickaktionen */
    border: 1px solid #b0b0b0; /* Optional: Ein grauer Rand für den Knopf, um ihn hervorzuheben */
}

/* ribbon */
.ribbon {
	position: absolute;
	left: -5px; top: -5px;
	z-index: 1;
	overflow: hidden;
	width: 150px; height: 150px;
	text-align: right;
}
.ribbon span {
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	line-height: 30px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	width: 150px;
	display: block;
	background: #79A70A;
	background: linear-gradient(#F70505 0%, #8F0808 100%);
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
	position: absolute;
	top: 29px; left: -31px;
}
.ribbon span::before {
	content: "";
	position: absolute; left: 0px; top: 100%;
	z-index: -1;
	border-left: 3px solid #8F0808;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #8F0808;
}
.ribbon span::after {
	content: "";
	position: absolute; right: 0px; top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-right: 3px solid #8F0808;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #8F0808;
}

.ribbon-green span{
	background: #79A70A;
	background: linear-gradient(#9BC90D 0%, #79A70A 100%);
}
.ribbon-green span::before{
	border-left-color:#79A70A;
	border-top-color:#79A70A;
}
.ribbon-green span::after{
	border-right-color:#79A70A;
	border-top-color:#79A70A;
}

/* re captcha */

.grecaptcha-badge{
	display: none !important;
}

/* blog */

.article:hover{
	background:#f8f8f8;
}

.articlecontent img{
	width:100%;
}


/* TS New Page */
#hero a {
	margin-top: 20px;
}

#hero label {
	cursor: default;
}

.title {
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.7em;
	margin-bottom: 30px;
}

.line-separator {
	text-align: center;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	min-height: 3em;
	top: 1em;
	bottom: 1em;
	margin: 0 0 3em 0;
}

.line-separator-single {
	text-align: center;
	border-bottom: solid 1px #ccc;
	min-height: 1.5em;
	top: 1em;
	bottom: 1em;
	margin: 0 0 3em 0;
}

.display-flex-center {
    display: flex;
    align-items: center;
}

.bg-light-gray {
	background: navy !important;
}

.cursor-default {
	cursor: default;
}

.cursor-pointer {
	cursor: pointer;
}

.h-35px {
	height: 35px;
}

.mb-15px {
	margin-bottom: 15px;
}

.mb-25px {
	margin-bottom: 25px;
}

.mb-35px {
	margin-bottom: 35px;
}

.mt-5px {
	margin-top: 5px;
}

.mt-10px {
	margin-top: 10px;
}

.mt-15px {
	margin-top: 15px;
}

.mt-20px {
	margin-top: 20px;
}

.mt-25px {
	margin-top: 25px;
}

.mt-35px {
	margin-top: 35px;
}


.ml-10per {
	margin-left: 10%;
}

.mr-10per {
	margin-right: 10%;
}

.mr-5px {
	margin-right: 5px;
}

.mr-10px {
	margin-right: 10px;
}


.mlr-10per {
	margin-left: 10%;
	margin-right: 10%;
}

.mlr-intro {
	margin-left: 13%;
	margin-right: 13%;
}

.mlr-15per {
	margin-left: 15%;
	margin-right: 15%;
}

.maxw-100 {
	max-width: 100%;
}

.color-primary {
	color: rgb(24, 188, 156);
}

.color-blue {
	color: rgb(44, 62, 80);
}

.color-navy {
	color: navy;
}

.color-yellow {
	color: rgb(182, 255, 0);
}

.bg-orange {
	background-color: rgb(246, 156, 18);
}

.bg-gray {
	background-color: #f9f9f9;
}

.bg-white {
	background-color: #fff;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-container-center {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.flex-item-left {
	float: left;
	margin-left: 30px;
}

.feature-card-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.feature-card {
	float: left;
	width: 310px;
	height: 580px;
	margin-bottom: 25px;
	background-color: #f9f9f9;
	border-radius: 0.375rem;
	filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.feature-card-paragraph {
	padding-left: 15px;
	padding-right: 15px;
	height: 63%;
}

.feature-card-small-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.feature-card-small {
	float: left;
	width: 310px;
	min-height: 210px;
	margin-bottom: 25px;
	margin-right: 35px;
	background-color: #f9f9f9;
	border-radius: 0.375rem;
	filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.testimonial-card-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	/* background-color: brown; */
	justify-content: space-around;
}

.testimonial-card {
	float: left;
	/* width: 33%; */
	width: 310px;
	height: 387px;
	margin-bottom: 25px;
	background-color: #FFF;
	border-radius: 0.375rem;
	filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
	overflow: hidden;
	text-overflow: ellipsis;
}

.testimonial-card-expanded {
	overflow: auto;
}

.testimonial-card-paragraph {
	padding-left: 15px;
	padding-right: 15px;
	height: 63%;
}

.display-none {
	display: none;
}

.display-block {
	display: block;
}

.flex-wrap {
	display:flex;
	flex-wrap: wrap;
}

.landing-title {
	color: rgb(24, 188, 156);
}

.landing-title-line {
	margin-top: -10px;
    height: 4px;
    width: 125px;
    background-color: red;
}

.landing-subtitle  {
	/* font-family: 'Open Sans', sans-serif; */
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.7em;
	margin-bottom: 30px;
}

.landing-intro-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.3em;
	margin-bottom: 30px;
}

.landing-text {
	flex:1;
	margin-right:20px;
	min-width: 200px;
	margin-bottom: 20px;
	position: relative;
}

.landing-image-container {
	flex:1;
	margin-left: 50px;
	min-width: 500px;
	margin-bottom: 20px;
	position: relative;
}

.landing-image {
	margin-top: 25px;
	width: 500px;
	border-radius: 3%;
	float: right;
	filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.landing-image-no-effects {
	margin-top: 25px;
	width: 500px;
	float: right;
}

#features a {
	min-width: 80%;
}

.img-rounded {
	width: 500px;
	border-radius: 3%;
	filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.contact-link {
	color: white;
	display: inline !important;
}

.ts-logo {
	width: 191px;
	height: 21px;
}

.bold {
	font-weight: bold;
}

.alternative {
	margin:3rem auto 1rem;
}

.alternative-table {
	margin:3rem auto 1rem;
	width:80%;
	max-width:850px;
	text-align:center
}

.alternative-table tr {
	height: 3rem;
}

.alternative-table tr:nth-child(even) {
	background:#F7FFF4
}

.alternative-table tr td:first-child {
	text-align:left;
	padding-left: 1.5rem;
}

.alternative-step {
	font-family: 'Titillium Web', sans-serif;
	color: #8f8f8f;
}

.alternative-step-desc {
	font-family: 'Titillium Web', sans-serif;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.alternative-step-link {
	font-size: 1.1em;
}

.alternative-timestatement {
	width: 180px;
	height: 28px;
	margin-bottom: 20px;
}

.alternative-harvest {
	width: 100px;
	height: 20px;
	margin-bottom: 20px;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover {
	text-decoration: underline;
}

label.form-check-label {
	margin-left: 5px;
	display: initial;
	font-weight: normal;
}

.success-stories {
	background-color: #f9f9f9;
	padding: 40px 20px;
	text-align: center;
	margin-top: -35px;
	border-top: 2px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
  }
  
  .success-stories h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: #333;
  }
  
  .success-stories .story {
	display: inline-block;
	max-width: 500px;
	text-align: left;
	margin: 0 auto;
	border: 2px solid #4f4f4f;
	padding: 20px;
	border-radius: 10px;
	background-color: #ffffff;
  }
  
  .success-stories img {
	max-width: 80%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 15px;
  }
  
  .success-stories p {
	font-size: 1.1em;
	color: #555;
	margin-bottom: 20px;
  }

/* Media Queries */
@media(max-width: 1250px) {
	#hero a {
	  float: none;
	  text-align: center;
	  width: 100%;
	  margin-bottom: 20px;
	}

	h1 {
		margin-bottom: 30px;
		font-family: 'Titillium Web', sans-serif;
		color: #0d090d;
		font-size: 2.25em;
		line-height: 70px;
		font-weight: 600;
		letter-spacing: -0.5px;
	}

	.h1-start-page {
		line-height: 50px;
	}

	.mlr-intro {
		margin-left: 3%;
		margin-right: 3%;
	}

	.feature-card-container {
		display:block;
	}

	.feature-card {
		float: left;
		width: 100%;
		height: fit-content;
		margin-bottom: 25px;
		background-color: #f9f9f9;
		border-radius: 0.375rem;
		filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
	}

	.feature-card-small-container {
		display:block;
	}

	.feature-card-small {
		float: left;
		width: 100%;
		min-height: 210px;
		margin-bottom: 25px;
		margin-right: 35px;
		background-color: #f9f9f9;
		border-radius: 0.375rem;
		filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
	}

	.testimonial-card {
		float: left;
		width: 100%;
		height: fit-content;
		margin-bottom: 25px;
		background-color: #FFF;
		border-radius: 0.375rem;
		filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.expand-testimonial-icon {
		display: none;
	}

	.img-rounded {
		width: 80%;
		border-radius: 3%;
		filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
	}

	.flex-wrap {
		display: block;
		width: 90vw;
	}

	.landing-title-line {
		margin-top: -30px;
		height: 4px;
		width: 125px;
		background-color: red;
	}

	.landing-image-container {
		margin-left: 0;
		margin-right: 0;
		width: 99%;
		min-width: 100px;
		margin-bottom: 20px;
	}

	.landing-image {
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-top: 25px;
		margin-bottom: 20px;
        width: 100%;
		border-radius: 3%;
		float: left;
		filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
	}

	.landing-image-no-effects {
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-top: 25px;
		margin-bottom: 20px;
        width: 97%;
		float: left;
	}

	.ts-logo {
		width: 150px;
		height: 16.5px;
	}

	.trial-btn {
		width: 97%;
	}

	.trial-btn-container-start-page {
		margin-left: 5%;
		margin-right: 5%;
	}

	.trial-btn-container {
		margin-left: 0%;
		margin-right: 0%;
	}

	.feature-checkboxlist-container {
		margin-left: 5%;
	}

	.intro-image{
		width: 90%;
	}
}


@media(min-width: 2600px) {
	.mlr-intro {
		margin-left: 25%;
		margin-right: 25%;
	}
}