:root {
  --bg-urld: url("images/bg1d.jpg");
  --bg-urlm: url("images/bg1m.jpg");
  
  --kronen: rgba(147,42,169,0.8);
  --stirn: rgba(61,111,242,0.8);
  --hals: rgba(59,236,236,0.8);
  --herz: rgba(57,229,67,0.8);
  --solarplexus: rgba(252,204,63,0.8);
  --sakral: rgba(249,164,62,0.8);
  --wurzel: rgba(252,82,63,0.8);
  
  --light-kronen: rgba(147,42,169,0.3);
  --light-stirn: rgba(61,111,242,0.3);
  --light-hals: rgba(59,236,236,0.3);
  --light-herz: rgba(57,229,67,0.3);
  --light-solarplexus: rgba(252,204,63,0.3);
  --light-sakral: rgba(249,164,62,0.3);
  --light-wurzel: rgba(252,82,63,0.3);
  
  --col-1: rgba(204,204,204,0.8);
  --light-col-1: rgba(204,204,204,0.3);
}

/* -------------------- */
/* FONTS */
/* -------------------- */
/* FONT */
@font-face {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Roboto-Regular.woff2') format('woff2'), url('/fonts/Roboto-Regular.woff') format('woff'), url('/fonts/Roboto-Regular.ttf') format('truetype');
}

/* -------------------- */
/* GLOBAL */
/* -------------------- */
*, ::before, ::after {
  margin: 0;
  padding: 0;
  font-family: roboto, courier;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

/* DIV ---------------------------*/
h1 {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h2 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  a-text-transform: uppercase;
}
h3, h4 {
  font-size: 1.0rem;
  letter-spacing: 0.1em;
}
h4 {
  margin-top: 0.5rem;
}
/* h5 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  a-margin-bottom: 0.25rem;
}
*/

/* MOBILE FIRST -------------------------------------------------------------*/
/* BODY --------------------------*/
body {
  background-image: var(--bg-urlm);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
}

/* HEADER ------------------------*/
header {
  background: none;
}


/* SECTION -----------------------*/
section {
  padding-top: 1.0rem;
  padding-bottom: 1.0rem;
}

.bio .container .img {
  position: relative;
  min-height: 13rem;
}

.bio > .container > .img > img {
  display: block;
  width: 150px;
  height: 150px;
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
  border-color: var(--col-1); /*lightgrey;*/
}

.bio .container .profession {
  width: 92%;
}

.overlay {
  position: absolute;
  top: 2rem;
  left: -7rem;
  opacity: 1;
}

.ol-logo {
  width: 20rem;
}


/* CONTAINER ---------------------*/
.container {
  display:flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.8rem;
  margin-left: auto;
  margin-right: auto;
}

.links .container .link {
  width: 90%;
  border-style: solid;
  border-width: 3px;
  border-radius: 2rem;
  border-color: var(--col-1);
  background-color: var(--light-col-1);
  margin-top: 2px;
  margin-bottom: 2px;
}

.links .container .link a {
  display: flex;
  align-items: center;
  color: black;
}

.links .container .link a img {
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin: 4px 8px 4px 4px;
  width: 2.875rem;
  height: 2.875rem;
}
.links .container .link a .wip{
  margin: 4px 4px 4px 4px;
}
.links .container .link a .txt {
    text-align: center;
    width: 100%;
}
.links .container .link a .small {
  margin: 2px 8px 2px 4px;
  width: 2.2rem;
  height: 2.2rem;
}
.links .container .link a .dummy {
  width: 1rem;
}

.links .container .l1 {
  border-color: var(--kronen);
  background-color: var(--light-kronen);
}
.links .container .l2 {
  border-color: var(--stirn);
  background-color: var(--light-stirn);
}
.links .container .l3 {
  border-color: var(--hals);
  background-color: var(--light-hals);
}
.links .container .l4 {
  border-color: var(--herz);
  background-color: var(--light-herz);
}
.links .container .l5 {
  border-color: var(--solarplexus);
  background-color: var(--light-solarplexus);
}
.links .container .l6 {
  border-color: var(--sakral);
  background-color: var(--light-sakral);
}
.links .container .l7 {
  border-color: var(--wurzel);
  background-color: var(--light-wurzel);
}

.links .container .link:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  margin-top: 0px;
  margin-bottom: 4px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.links .container .join {
  display: flex;
  width: 96%;
  justify-content: space-between;
  align-items: center;
}

.links .container .join img {
  width: 100px;
  height: 100px;
}
.links .container .join .txt {
  text-align: center;
  padding: 0px 0.25rem;
  width: 100%;
}
.links .container .join .button,
.me .container .trustpilot-widget .button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 10rem;
  a-border-radius: 0.625rem;
  background-color: var(--col-1);
  a-color: white;
  color: black;
  font-weight: bold;
  a-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  text-align: center;
}

.links .container .column2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  a-margin-top: 0.5rem;
  a-margin-bottom:0.5rem;
}

.links .container .back .button {
  display: flex;
  padding: 0px 1rem;
  justify-content: center;
  align-items: center;
  height: 3rem;
  border-radius: 0.625rem;
  background-color: var(--col-1);
  color: black;
  font-weight: bold;
}

.links .container .whatis .whatis-caption {
  margin: 0.5rem 0px;
}
.links .container .whatis .whatis-logo,
.links .container .whatis .whatis-logo-hell,
.links .container .whatis .whatis-logo-medium {
  display: flex;
  background-color: #464646;
  height: 8rem;
}
.links .container .whatis .whatis-logo-hell {
  background-color: var(--col-1);
}
.links .container .whatis .whatis-logo-medium {
  background-color: #a7a7a7;
}
.links .container .whatis .whatis-logo img,
.links .container .whatis .whatis-logo-hell img,
.links .container .whatis .whatis-logo-medium img {
  margin:auto;
  max-height: 8rem;
  max-width: 100%;
}
.links .container .whatis .whatis-info {
  a-background-color: #F5E1A4;
  border-color: none;
  padding: 0.5rem;
}
.links .container .whatis .whatis-info h3 {
  letter-spacing: 0em;

}
.links .container .whatis .button {
  display: flex;
  margin: 0.5rem;
  padding: 0px 1rem;
  justify-content: center;
  align-items: center;
  height: 3rem;
  a-border-radius: 0.625rem;
  background-color: var(--col-1);
  color: black;
  font-weight: bold;
}
.links .container .whatis .whatis-caption .whatis-ul,
.links .container .whatis .dsimp .whatis-ul {
  padding-top: 0.5rem;
  padding-left: 1.1rem;
}
.links .container .whatis .whatis-caption .whatis-ul .whatis-li,
.links .container .whatis .dsimp ul li {
  list-style: disc;
}
/*.links .container .whatis .dsimp ul li {
  list-style-position: inside;
}*/
.links .container .whatis .whatis-caption .whatis-ul .circle {
  list-style: circle;
}
.links .container .whatis .whatis-caption .whatis-termine {
  display:flex;
  justify-content: space-around;
  font-size: 0.8em;
  margin-top: 0.5rem;
  margin-bottom:0.5rem;
}

.links .container .whatis .dsimp h2 {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
}
.links .container .whatis .dsimp h3 {
    font-size: 1.26rem;
    font-weight: bold;
    letter-spacing: normal;
    margin-block-start: 1.4em;
    margin-block-end: 1em;
}
.links .container .whatis .dsimp h4 {
    font-size: 1.13rem;
    font-weight: bold;
    letter-spacing: normal;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
}
.links .container .whatis .dsimp h5 {
    font-size: 1.0rem;
    font-weight: bold;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
}
.links .container .whatis .dsimp p {
    font-size: 1.0rem;
    margin-block-start: 1em;
    margin-block-end: 1em;
}



.me .container {
  margin: 1rem auto;
  a-flex-direction: row;
  justify-content: space-evenly;
  column-gap: 0.5rem;
}

.me .container .logo {
  height: 120px;
}

.me .container p {
  line-height: 1.5em;
}

.me .container .icons {
  display: flex;
  flex-direction: row;
}

.me .container .icons a {
  display: inline-block;
  width: 3.2rem;
  height: 2.2rem;
}

.me .container .icon {
  width: 2rem;
  height: 2rem;
}
.me .container svg.icon {
  fill: black;
  stroke:black;
  stroke-width:2;
}

.me .container .icon:hover {
  width: 2.2rem;
  height: 2.2rem;
}



/* FOOTER ------------------------*/
footer {
  line-height: 2rem;
  background-color: var(--col-1); /*#CCC;*/
}
footer a {
  color: black;
}


/* DESKTOP ------------------------------------------------------------------*/
@media (min-width: 736px) {
	h3, h4 {
	  font-size: 1.0rem;
	}
	/* h5 {
	  font-size: 0.9rem;
	}
  */

	body {
	  background-image: var(--bg-urld);
	}

	.container {
	  max-width: 44rem;
	}
	.links .container .link {
	  width: 96%;
	}
	.links .container .link a .dummy {
		width: 2.875rem;
		margin: 4px 8px 4px 4px;
	}
  .links .container .join {
    width: 90%;
  }
  .links .container .join img {
    width: 150px;
    height: 150px;
  }
  .links .container .column2 {
    flex-direction: row;
  }
	.links .container .whatis .whatis-info {
		padding: 1.0rem;
	}
  .links .container .whatis .whatis-caption .whatis-termine {
    font-size: 1em;
  }

}


/* UNIVERSAL ----------------------------------------------------------------*/
.a1 {
  display: none;
}
.txtcenter {
  text-align: center;
}
.altbg1 {
  background-color: rgba(255,255,255,0.4);
}
.altbg2 {
  background-color: rgba(61,111,242,0.15);;
}
/*a:not([href*='alife-coaching.de']):not([href^='#']):not([href^='/']):after {*/
.external:after {
	a-content: " (ext)";
	content: url("images/external.svg");
	vertical-align:unset;
	padding-left:2px;
}

