:root {
    --main-color-tkh1: #e7411c;
    --main-color-tkh2: #00D0E5;
    --main-color-tkh3: #FFFFFF;
    --main-color-tkh4: #D0F7FC;
    --main-color-tkh5: #1f1f1f;
    --main-color-tkh6: #fbee51;
    --main-color-tkh7: #02a1b1;
    --main-color-tkh7b: #01737f;
    --main-color-tkh8: #49b68e;
    --main-color-tkh9: #EEEEEE;
    --main-color-tkh10: #fefefe;
    --main-color-tkh11: #bbf7dd;
}

body {
	font-family: 'Dosis', sans-serif;
	margin: 0;
	padding: 0;
	color: var(--main-color-tkh5);
	font-size: 18px;
	box-sizing: border-box;
	background-color: #faffd9;
}

h1, h2, h3, h4 {
	font-family: 'Righteous', sans-serif;
	color: var(--main-color-tkh1);
    font-weight: normal;
	text-align: center;
}

h2:before, h2:after, .block_highlighted h3:before, .block_highlighted h3:after {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-color: var(--main-color-tkh6);
    background-size: contain;
    width: 0.5em;
    height: 1em;
    margin: 0 0.5em 0 0;
    position: relative;
    top: 0.15em;
    border-radius: 100%;
}

h2:after, .block_highlighted h3:after {
	margin: 0 0 0 0.5em;
}

img {
    border: none;
}

img.resp {
	max-width: 100%;
	height: auto;
}

a:link, a:visited {
    color: var(--main-color-tkh7);
}
a:hover {
    color: var(--main-color-tkh7b);
}

.main_container {
    max-width: 1100px;
    margin: 0 auto;
}

.block_highlighted {
    background-color: var(--main-color-tkh11);
    padding: 12px;
    text-align: center;
}

.block_highlighted table {
	width: 100%;
	font-size: min(5vw, 32px);
}

.block_highlighted tr.highlighted {
	background-color: #fff7eb;
	font-weight: bold;
}

.header {
    height: 76px;
    padding: 12px 24px 0;
    color: var(--main-color-tkh3);
	text-align: center;
}

@media all and (min-width: 800px) {
    .header {
        text-align: left;
    }
}

.footer_fixed {
    position: fixed;
    bottom: 0;
    background-color: #FFF;
    width: 100%;
    z-index: 99;
    text-align: center;
    font-size: 14px;
    padding: 12px;
	box-sizing: border-box;
}

.footer_fixed > a:first-child {
	margin-left: 8px;
}

.footer_fixed > a:not(:last-child) {
	margin-right: 8px;
}

.main {
    margin: 0 auto;
    background-color: #fff;
}

div#bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -99999;
    left: 0;
    top: 0;
	background-image: url(images/tkh_bg01.png);
	opacity: 0.7;
}

.menu_container {
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: -1px;
    z-index: 98;
    color: #FF5722;
	-webkit-transition: all .6s ease-in-out 0s;
    transition: all .6s ease-in-out 0s;
	background-color: rgb(73 182 142 / 60%);
}

.menu_container.sticky {
    background-color: #FFF;
    color: #ccc;
}

.menu_img {
    width: 77px;
    height: 77px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 12px;
    background-size: contain;
	position: relative;
	display: none;
}

@media all and (min-width: 800px) and (min-height: 550px) {
	.menu_img {
		display: block;
	}
}

.menu_img:after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #FF9800;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
}

.menu_item {
	font-family: 'BenchNine', sans-serif;
    display: inline-block;
	padding: 12px;
    font-size: 24px;
    font-weight: bold;
    margin: 4px;
    cursor: pointer;
	-webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    background-color: var(--main-color-tkh1);
    color: var(--main-color-tkh3);
}

@media all and (min-width: 1080px) {
	.menu_item {
		padding: 12px;
		font-size: 24px;
		margin: 12px 8px;
		border-radius: 12px;
	}
}

.menu_item:hover {
    background-color: var(--main-color-tkh8);
}

.block_container {
	border-left: 16px solid var(--main-color-tkh11);
	margin: 0 12px;
    padding: 12px 12px;
}

@media all and (min-width: 800px) {
	.block_container {
		margin: 0 24px;
		padding: 12px 24px;
	}
}

.block_container:not(:first-child) {
	border-top: 2px solid var(--main-color-tkh11);
}

.block_container:not(:last-child) {
	margin-bottom: 32px;
}

.block_container:last-child {
	padding-bottom: 96px;
}

.block_container.hero {
	color: #fff;
    font-size: 6vw;
    line-height: initial;
    text-transform: uppercase;
    font-weight: 900;
    padding: 12px;
    background-image: url(images/tekihivas_mm.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding-top: min(50%, 324px);
    margin: 12px auto 0;
	border: none;
	filter: drop-shadow(2px 4px 26px white);
}

.block_container.herotext {
	color: #fff;
    font-size: max(1.9vw, 24px);
    line-height: initial;
    text-transform: uppercase;
    font-weight: 900;
    padding: 12px 48px;
    margin: 0 auto 12px;
	border: none;
	filter: drop-shadow(2px 2px 6px black);
	text-align: center;
}

.block_container.center {
	text-align: center;
}

.block_container.faq > details {
    margin: 12px 0;
    color: #0097A7;
}

.highlight_container {
    background-color: #fff7eb;
    padding: 24px;
    margin: 24px 0;
    border-radius: 16px;
    position: relative;
}

li {
    font-size: 18px;
    line-height: 30px;
	color: #777;
}

.foldable_container {
    position: relative;
}

.foldable_container.closed {
    max-height: 280px;
	overflow: hidden;
}

.foldable_container.closed:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 45%);
}

.unfold_btn {
    position: absolute;
    bottom: 0;
    z-index: 97;
    width: 146px;
    text-align: center;
    font-size: 16px;
    color: var(--main-color-tkh7);
    padding: 12px;
    left: calc(50% - 73px);
    cursor: pointer;
	background-color: #e5e5e5;
    border-radius: 6px;
    box-sizing: border-box;
}

.unfold_btn:hover {
	background-color: var(--main-color-tkh8);
	color: var(--main-color-tkh3);
}

.container_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0;
}

.container_flex > * {
	flex: 1;
}

.container_flex .btn-aktiv {
	font-size: 24px;
	padding: 16px;
}

.btn-aktiv {
    display: inline-block;
    font-size: 16px;
    padding: 4px 10px;
	margin: 4px; 8px;
    text-align: center;
    text-decoration: none;
    background: var(--main-color-tkh8);
	color: var(--main-color-tkh6);
    /*background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%);*/
    border-radius: 6px;
    box-shadow: 0px 1px 2px 0px rgb(189, 189, 189);
	cursor: pointer;
}
.btn-aktiv:hover {
    box-shadow: 0px 2px 8px 0px rgb(189, 189, 189);
}
.btn-inaktiv {
    display: inline-block;
    font-size: 16px;
    padding: 4px 10px;
	margin: 4px; 8px;
    text-align: center;
    text-decoration: none;
    background: #f5f5f5;
    color: #ccc !important;
    /*background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%);*/
    border-radius: 6px;
    /*box-shadow: 0px 1px 2px 0px rgb(189, 189, 189);*/
	cursor: pointer;
}
.btn-inaktiv:hover {
    /*box-shadow: 0px 2px 8px 0px rgb(189, 189, 189);*/
}

.btn {
    background-color: var(--main-color-tkh1);
    color: var(--main-color-tkh3);
    border-radius: 12px;
    cursor: pointer;
    margin: 12px;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

.btn:hover {
	background-color: var(--main-color-tkh8);
}

.block_cont {
    margin: 24px 0 48px;
}