* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Assistant';
    src: url("../../Fonts/Assistant-VariableFont_wght.ttf");
}

@font-face {
    font-family: 'Oswald';
    src: url("../../Fonts/Oswald-VariableFont_wght.ttf");
}

html {
    font-family: Assistant, sans-serif;
    font-variation-settings: "wght" 375;
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    margin: 0;
}

main {
    flex: 1;
    padding-top: var(--headerHeight);
}

.txtSmall {
    font-size: 0.8rem;
}

.h0 {
    font-size: 4rem;
    font-family: Oswald, sans-serif;
    font-variation-settings: "wght" 500;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-variation-settings: "wght" 500;
}

h1, h2, h3 {
    text-transform: uppercase;
}

h1 {
    font-size: 1.7rem;
}

h1 sup {
    position: absolute;
    font-size: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-variation-settings: "wght" 600;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}

a {
    color: inherit;
    font-variation-settings: "wght" 600;
}

b {
    font-variation-settings: "wght" 600;
}

ul {
    padding-left: 1rem;
    margin-top: 0;
}

.text {
    color: var(--gray);
    word-wrap: break-word;
    line-height: 2rem;
}

.txtColorPri {
    color: var(--primaryColor);
}

.txtColorSec {
    color: var(--secondaryColor);
}

.text p:first-of-type {
    margin-top: 0;
}

.text p:last-of-type {
    margin-bottom: 0;
}

.wd50 {
    width: 49%;
}

.wd100 {
    width: 100%;
}

/** --- Kontaktformular --- */

.contact {
    background: var(--primaryColor);
}

.jmb-field {
    grid-gap: unset;
}

.jmb-field textarea {
    min-height: 10rem;
}

label {
    color: var(--lkYellow);
    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: var(--gray);
}

textarea {
    height: 150px;
}

.terms {
    margin-bottom: 20px;
    color: var(--white);
}

.terms a {
    color: var(--lkYellow);
    text-decoration: none;
}

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

.btnBox input[type="submit"] {
    background: var(--deepBlack);
    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(--lkYellow);
    color: var(--primaryColor);
}

#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(--lightGray);
}

.bgLkBlue {
    background-color: var(--lkBlue);
}

.bgGreen,
.bgGreen .text,
.bgLkBlue,
.bgLkBlue .text,
.bgRed,
.bgRed .text,
.bgCyan,
.bgCyan .text{
    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 .button {
    background: var(--deepBlack);
    color: var(--white);
}

.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;
    align-items: flex-start;
}

.image img {
    width: 100%;
}

.personal .image img {
    border: 2px solid black;
}

.personal ul li {
    line-height: 1.5rem;
}

.personal ul li::marker {
    color: var(--primaryColor);
}

.services {
    grid-auto-rows: 1fr;
}

.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;
}

/** Preisboxen */

.price {
    color: var(--white);
    background-color: var(--deepBlack);
    font-size: 1.1rem;
    font-variation-settings: "wght" 600;
    text-decoration: underline;
}

.term {
    font-size: 0.8rem;
}
