:root {
    --contentWidth: 1200px;
    --headerHeight: 120px;
    --footerHeight: 72px;
    --headerBg: #ffffff;
    --gray: #d9d9d9;
    --green: #95c11f;
    --red: #e94e1b;
    --cyan: #36a9e1;
    --yellow: #ffed00;
    --lkBlue: #313a8c;
    --lkYellow: #fecd00;
    --white: #ffffff;
    --contactPrm: var(--lkBlue);
    --contactSek: var(--lkYellow);
}

@font-face {
    font-family: 'Assistant';
    src: url("/Theme/lifekinetik/Css/Fonts/Assistant-VariableFont_wght.ttf");
}

@font-face {
    font-family: 'Oswald';
    src: url("/Theme/lifekinetik/Css/Fonts/Oswald-VariableFont_wght.ttf");
}

* {
    box-sizing: border-box;
}

html {
    font-family: Assistant, sans-serif;
    font-variation-settings: "wght" 375;
}

main {
    padding: var(--headerHeight) 0 var(--footerHeight);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-variation-settings: "wght" 500;
}

h1, h3 {
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
}

strong {
    font-variation-settings: "wght" 700;
}

.h0 {
    font-family: Oswald, sans-serif;
    font-variation-settings: "wght" 500;
    text-transform: uppercase;
    font-size: 6rem;
}

h2 {
    font-size: 1.9rem;
    font-variation-settings: "wght" 600;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1rem;
}

a {
    color: inherit;
    font-variation-settings: "wght" 600;
}

b {
    font-variation-settings: "wght" 600;
}

ul {
    padding-left: 1rem;
    margin-top: 0;
}

.text {
    color: #717171;
    word-wrap: break-word;
    font-size: 1.1rem;
    line-height: 2.2rem;
}

.text p:first-of-type {
    margin-top: 0;
}

.text p:last-of-type {
    margin-bottom: 0;
}

.textJustify {
    text-align: justify;
}

.botSpace1 {
    margin-bottom: 1rem;
}

.botSpace2 {
    margin-bottom: 2rem;
}

.botSpace3 {
    margin-bottom: 3rem;
}

.wd50 {
    width: 49%;
}

.wd100 {
    width: 100%;
}

/** --- Kontaktformular --- */

.contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: var(--contactPrm);
    padding: 30px;
    justify-content: space-between;
}

.inputBox {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

label {
    width: 100%;
    color: var(--contactSek);
    font-size: 1.4rem;
    line-height: 3rem;
    font-family: Oswald, sans-serif;
    font-variation-settings: "wght" 500;
    text-transform: uppercase;
}

input, textarea {
    width: 100%;
    font-family: Oswald, sans-serif;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    border: none;
    color: #797979;
}

textarea {
    height: 150px;
}

.terms {
    margin-bottom: 20px;
    color: var(--white);
}

.terms a {
    color: var(--contactSek);
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.btnBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btnBox input[type="submit"] {
    background: #101010;
    width: auto;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 12px 40px;
    border-radius: 3px;
    font-size: 16px;
    text-transform: uppercase;
    font-variation-settings: "wght" 500;
}

.btnBox input[type="submit"]:hover {
    background: var(--contactSek);
    color: var(--contactPrm);
}

#mailMessage {
    text-align: center;
}

#mailMessage span {
    border: solid;
    padding: 0.5rem 1rem;
}

#mailMessage.ok {
    color: var(--green);
}

#mailMessage.error {
    color: var(--red);
}

/** Weiteres CSS */

.bgGreen {
    background-color: var(--green);
}

.bgCyan {
    background-color: var(--cyan);
}

.bgRed {
    background-color: var(--red);
}

.bgYellow {
    background-color: var(--yellow);
}

.bgGray {
    background-color: var(--gray);
}

.bgLkBlue {
    background-color: var(--lkBlue);
}

.bgGreen,
.bgGreen .text,
.bgGreen hr,
.bgLkBlue,
.bgLkBlue .text,
.bgLkBlue hr,
.bgRed,
.bgRed .text,
.bgRed hr,
.bgCyan,
.bgCyan .text,
.bgCyan hr {
    color: var(--white);
}

.txGreen {
    color: var(--green);
}

.txCyan {
    color: var(--cyan);
}

.txRed {
    color: var(--red);
}

.txYellow {
    color: var(--yellow);
}

.txLkBlue {
    color: var(--lkBlue);
}

.txLkYellow {
    color: var(--lkYellow);
}

.list {
    padding: 0;
    margin-left: 1rem;
    list-style: disclosure-closed;
}

.gridRow {
    display: grid;
    gap: 2rem;
}

.gridRow.col2 {
    grid-template-columns: repeat(2, 1fr);
}

.gridRow.col3 {
    grid-template-columns: repeat(3, 1fr);
}

.gridRow.col4 {
    grid-template-columns: repeat(4, 1fr);
}

.gridRow.autoRow {
    grid-auto-rows: 1fr;
}

.topicBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 2rem;
    gap: 1rem;
}

.topicBox .button {
    display: unset;
    padding: 1rem;
    background: #101010;
    color: var(--white);
    box-sizing: border-box;
    text-align: center;
}

.miniBallSchoolSchema {
    display: flex;
    flex-wrap: wrap;
}

.miniBallSchoolSchema .title {
    padding: 2rem;
    width: calc(100%/3);
    box-sizing: border-box;
    text-align: center;
}

.miniBallSchoolSchema .listBox {
    padding: 2rem;
    width: calc(100%/3);
    box-sizing: border-box;
    text-align: center;
}

.miniBallSchoolSchema .listBox ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.miniBallSchoolSchema .listBox ul li {
    margin-top: 0.5rem;
}

.miniBallSchoolSchema .letter {
    width: calc(100%/3);
    text-align: right;
    box-sizing: border-box;
    padding-right: 1rem;
}

.miniBallSchoolSchema .result {
    width: calc(100%/3*2);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 1rem;
}

.service {
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid black;
}

.service a {
    color: var(--red);
    text-decoration: none;
}

.service a:hover {
    color: unset;
}

.service ul {
    text-align: left;
}

.image {
    display: flex;
    box-sizing: border-box;
    align-items: flex-start;
}

.image img {
    width: 100%;
}

.personal .image img {
    border: 2px solid black;
}

.personal .text {
    grid-column: 2 / span 2;
}








/**
:root {
    --contentWidth: 1000px;
    --headerHeight: 120px;
    --footerHeight: 72px;
    --headerBg: #ffffff;
}

 */

.column {
    flex-direction: column;
}

.container {
    width: var(--contentWidth);
    margin: 0 auto;
    display: flex;
}

.container a {
    display: inline-flex;
}

.bgContainer {
    display: flex;
    position: relative;
}

.bgContainer .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 85%, rgba(0,0,0,0.7) 100%);
}

.bgContainer .bgImage {
    width: 100%;
}

.icon-down-open {
    padding-top: 0.25rem;
}

.content {
    padding: 3rem 0 2rem;
}

/** CSS für registered */

.regWord {
    display: flex;
    line-height: 1;
}

.regWord .reg {
    font-size: 1rem;
    padding-right: 0.75rem;
}

/* Flip-Box */

.lkFlipBox {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.lkFlipBox figure {
    margin: 0;
}

.lkFlipBox {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.lkFlipContentBox {
    width: 100%;
    padding-bottom: 100%;
}

.front, .back{
    width:100%;
    height: 100%;
    overflow:hidden;
    position:absolute;
    transition: transform .5s linear;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    visibility:visible;
    backface-visibility: hidden;
}

.lkFlipBox img{
    max-width:100%;
    max-height:100%;
    object-fit: cover;
}

.front {
    border: 5px solid #313a8c;
}

.front figcaption{
    top: 0;
    left: 0;
    position: absolute;
    color: #313a8c;
    padding: 15px;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    font-weight: 900;
    background: rgba(254,205,0,0.7);
    margin: 20px;
    text-transform: uppercase;
}

.back {
    background-color: #313a8c;
    color: #ffffff;
    padding: 40px;
    line-height: 30px;
    text-align: justify;
    transform:rotateY(180deg);
}

.lkFlipBox:hover {
    transform: scale(1.05);
    transition: transform 0.25s linear;
}

.lkFlipBox.flipped .lkFlipContentBox > div > .back {
    transform: perspective(600px) rotateY(0deg);
}

.lkFlipBox.flipped .lkFlipContentBox > div > .front {
    transform: perspective(600px) rotateY(-180deg);
}

.priceBox {
    padding: 2rem;
}

.price {
    text-align: center;
    color: #fff;
    background-color: #000000;
    padding: 0.75rem;
    font-size: 1.25rem;
    font-variation-settings: "wght" 600;
}
