/*
Typekit Fonts

book:   400
medium: 500
demi:   600
heavy:  700

*/
:root {
  --text: #373e4a;
  --margin: 50px;
}
@media screen and (max-width: 800px) {
  :root {
    --margin: 25px;
  }
}
* {
  box-sizing: border-box;
}
input,
textarea,
select {
  font-family: "futura-pt", sans-serif;
  color: var(--text);
  font-size: 1rem;
}
body {
  margin: 0;
  padding: 0;
  font-family: "futura-pt", sans-serif;
  color: var(--text);
}
body.login,
body.register {
  background-image: url(../images/SVG/wireBg.svg);
  background-size: 147% auto;
  background-position: 20% 41%;
}
@media screen and (max-aspect-ratio: 1) {
  body.login,
  body.register {
    background-size: auto 300%;
  }
}
body.error {
  padding-top: 8em;
}
section {
  position: relative;
  padding-bottom: 3em;
}
.navAnchor {
  position: absolute;
  top: -120px;
}
a {
  position: relative;
  color: var(--light-blue);
  text-decoration: none;
}
a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transform: translateY(0.5em);
  transition: 0.1s;
}
a:hover:after {
  opacity: 1;
  transform: none;
}
a:active {
  color: inherit;
  opacity: 0.75;
}
a img {
  border: none;
  outline: 0;
}
p {
  font-size: 18px;
  line-height: 1.6em;
  text-align: center;
}
section > p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#pflegehinweiseSection > p,
#erstehilfeSection > p {
  margin: 3em 0;
  padding: 0 20px;
}
ul,
ol {
  font-size: 18px;
  line-height: 1.6em;
  padding-left: 20px;
  margin-top: 0;
}
ul li,
ol li {
  margin-bottom: 0.4em;
}
p + ul,
p + ol {
  margin-top: -0.5em;
}
h1,
h2 {
  text-align: center;
}
h1 {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--light-blue);
  padding: 0 0.5em;
}
h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--red);
}
h3 {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--light-blue);
  margin: 3em 0;
}
h4 {
  font-size: 21px;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 0em;
}
h1,
h3 {
  margin-bottom: 0.2em;
}
h2,
h4 {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
  }
}
table {
  border-collapse: collapse;
  margin-left: -20px;
  margin-right: -20px;
}
table p {
  margin: 0;
  font-size: 16px;
}
table td {
  padding: 0.5em 0.5em 0.5em 0;
}
table td:first-child {
  padding-left: 20px;
}
table tr:first-child {
  font-weight: 600;
}
table tr:nth-child(2n) {
  background-color: rgba(0, 102, 164, 0.2);
}
button.button,
a.button {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: var(--light-blue);
  border: none;
  font: inherit;
  color: #fff;
  padding: 0.4em 1.3em;
  margin: 0;
}
button.button:hover,
a.button:hover {
  cursor: pointer;
  opacity: 0.8;
}
button.button:active,
a.button:active {
  opacity: 0.7;
}
button.button:disabled,
a.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
header {
  position: fixed;
  display: block;
  left: var(--margin);
  right: var(--margin);
  top: 25px;
  height: 50px;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
}
header:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: -2;
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);*/
}
header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  z-index: -1;
}
header .logoWrapper {
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
  width: calc(0.8rem + var(--logoWidth));
}
header .logoWrapper a {
  position: relative;
  display: block;
  height: 100%;
  width: var(--logoWidth);
}
header .logoWrapper a:after {
  display: none;
}
header .logoWrapper img {
  height: 100%;
  width: 100%;
}
header nav.main {
  display: flex;
  flex: 1;
}
header nav.main .spacer {
  flex: 1;
}
header nav {
  line-height: 50px;
  padding-left: 1.5em;
  padding-right: 0.5rem;
  font-size: 18px;
}
header nav a {
  margin: 0 1.1em;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 1330px) {
  header nav {
    padding-left: 0.5em;
  }
  header nav a {
    margin: 0 0.8em;
  }
}
@media screen and (max-width: 1100px) {
  header nav a {
    margin: 0 0.5em;
  }
}
header .langswitcher {
  color: #fff;
}
header .langswitcher a {
  margin: 0 0.25em;
}
header .langswitcher a.active {
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  header .langswitcher {
    right: 0.5em;
  }
  header .langswitcher a {
    margin: 0;
  }
}
header #hamburgerBtn {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
}
header #hamburgerBtn span {
  position: absolute;
  left: 12px;
  top: 24px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}
header #hamburgerBtn span:nth-child(1) {
  transform: translate(0, -8px);
}
header #hamburgerBtn span:nth-child(3) {
  transform: translate(0, 8px);
}
.showHamburger header #hamburgerBtn span:nth-child(1) {
  transform: translate(0, 0px) rotate(-135deg);
}
.showHamburger header #hamburgerBtn span:nth-child(2) {
  transform: rotate(135deg) scaleX(0);
}
.showHamburger header #hamburgerBtn span:nth-child(3) {
  transform: translate(0, 0px) rotate(135deg);
}
@media screen and (max-width: 900px) {
  :lang(de) header nav.main {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    top: 100px;
    transition: 0.35s;
    z-index: -3;
    background-color: #fff;
    padding: 0.5em;
    transform: translateY(-100%);
  }
  .showHamburger:lang(de) header nav.main {
    transform: translateY(0);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  }
  :lang(de) header nav.main a {
    display: block;
    padding: 1em;
    line-height: 1;
    margin: 0;
    color: var(--dark-blue);
  }
  :lang(de) header :not(.login) nav.langswitcher {
    color: var(--dark-blue);
  }
  :lang(de) header :not(.login) nav.langswitcher a {
    display: inline;
    padding-right: 0.5em;
  }
  :lang(de) header :not(.login) nav.langswitcher a:not(:first-child) {
    padding-left: 0.5em;
  }
  :lang(de) header #hamburgerBtn {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  :lang(nl) header nav.main {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    top: 100px;
    transition: 0.35s;
    z-index: -3;
    background-color: #fff;
    padding: 0.5em;
    transform: translateY(-100%);
  }
  .showHamburger:lang(nl) header nav.main {
    transform: translateY(0);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  }
  :lang(nl) header nav.main a {
    display: block;
    padding: 1em;
    line-height: 1;
    margin: 0;
    color: var(--dark-blue);
  }
  :lang(nl) header :not(.login) nav.langswitcher {
    color: var(--dark-blue);
  }
  :lang(nl) header :not(.login) nav.langswitcher a {
    display: inline;
    padding-right: 0.5em;
  }
  :lang(nl) header :not(.login) nav.langswitcher a:not(:first-child) {
    padding-left: 0.5em;
  }
  :lang(nl) header #hamburgerBtn {
    display: block;
  }
}
@media screen and (max-width: 1260px) {
  :lang(fr) header nav.main {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    top: 100px;
    transition: 0.35s;
    z-index: -3;
    background-color: #fff;
    padding: 0.5em;
    transform: translateY(-100%);
  }
  .showHamburger:lang(fr) header nav.main {
    transform: translateY(0);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  }
  :lang(fr) header nav.main a {
    display: block;
    padding: 1em;
    line-height: 1;
    margin: 0;
    color: var(--dark-blue);
  }
  :lang(fr) header :not(.login) nav.langswitcher {
    color: var(--dark-blue);
  }
  :lang(fr) header :not(.login) nav.langswitcher a {
    display: inline;
    padding-right: 0.5em;
  }
  :lang(fr) header :not(.login) nav.langswitcher a:not(:first-child) {
    padding-left: 0.5em;
  }
  :lang(fr) header #hamburgerBtn {
    display: block;
  }
}
.textColumn {
  max-width: 840px;
  margin: 0 auto;
  padding: 1em 20px;
}
.textColumn p,
.pflegeText p,
.textColumn h3,
.pflegeText h3,
.textColumn h4,
.pflegeText h4 {
  text-align: left;
}
/*********************************************************************************************** materialSelection
*/
.materialSelection {
  text-align: center;
  min-height: 300px;
  /* Material selected
    */
}
.materialSelection .materialBtns {
  transform: translateY(180px);
  transition: transform 0.5s;
}
.materialSelection .materialBtns > div {
  position: relative;
  display: inline-block;
  width: 270px;
  height: 36px;
  line-height: 36px;
  border: 1px solid var(--light-blue);
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-blue);
  background-color: #fff;
  transition: transform 0.5s, background-color 0.2s, color 0.2s, width 0.5s, margin-top 0.5s;
}
.materialSelection .materialBtns > div:hover,
.materialSelection .materialBtns > div.selected {
  cursor: pointer;
  color: #fff;
  background-color: var(--light-blue);
}
#erstehilfeSection .materialSelection .materialBtns > div:nth-child(1) {
  transform: translateX(-50px);
}
#erstehilfeSection .materialSelection .materialBtns > div:nth-child(3) {
  transform: translateX(50px);
}
#pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(1) {
  transform: translateX(-75px);
}
#pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(2) {
  transform: translateX(-25px);
}
#pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(3) {
  transform: translateX(25px);
}
#pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(4) {
  transform: translateX(75px);
}
.materialSelection .materialBtns > div:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 34px;
  height: 180px;
  background-position: center;
  background-size: cover;
  transform-origin: bottom;
  transition: 0.5s;
}
.materialSelection .materialBtns > div:nth-child(1):before {
  background-image: url(../images/leder.jpg);
}
.materialSelection .materialBtns > div:nth-child(2):before {
  background-image: url(../images/stoff.jpg);
}
.materialSelection .materialBtns > div:nth-child(3):before {
  background-image: url(../images/kunstleder.jpg);
}
.materialSelection .materialBtns > div:nth-child(4):before {
  background-image: url(../images/allgemein.jpg);
}
@media screen and (max-width: 1300px) {
  .materialSelection .materialBtns {
    transform: translateY(160px);
  }
  .materialSelection .materialBtns > div {
    width: 210px;
    font-size: 16px;
  }
  .materialSelection .materialBtns > div:before {
    height: 140px;
  }
  #erstehilfeSection .materialSelection .materialBtns > div:nth-child(1) {
    transform: translateX(-25px);
  }
  #erstehilfeSection .materialSelection .materialBtns > div:nth-child(3) {
    transform: translateX(25px);
  }
  #pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(1) {
    transform: translateX(-37.5px);
  }
  #pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(2) {
    transform: translateX(-12.5px);
  }
  #pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(3) {
    transform: translateX(12.5px);
  }
  #pflegehinweiseSection .materialSelection .materialBtns > div:nth-child(4) {
    transform: translateX(37.5px);
  }
}
@media screen and (max-width: 1000px) {
  .materialSelection {
    min-height: 370px;
  }
  .materialSelection .materialBtns {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    transform: translateY(60px);
  }
  .materialSelection .materialBtns > div {
    margin: 10px;
    transform: none !important;
  }
  .materialSelection .materialBtns > div:nth-child(3),
  .materialSelection .materialBtns > div:nth-child(4) {
    margin-top: 100px;
  }
  .materialSelection .materialBtns > div:before {
    height: 90px;
  }
}
@media screen and (max-width: 510px) {
  .materialSelection {
    min-height: 580px;
  }
  .materialSelection .materialBtns {
    max-width: 220px;
    width: 100%;
    transform: translateY(60px);
  }
  .materialSelection .materialBtns > div:not(:first-child) {
    margin-top: 100px;
  }
}
.materialSelection.materialSelected .materialBtns {
  transform: none;
}
.materialSelection.materialSelected .materialBtns > div {
  transform: none !important;
  margin: 0;
}
.materialSelection.materialSelected .materialBtns > div:before {
  transform: scaleY(0);
}
/*********************************************************************************************** Login / Register
*/
.loginForm {
  position: absolute;
  top: 0;
  left: var(--margin);
  right: var(--margin);
  bottom: 0;
  height: 230px;
  margin: auto;
}
.loginForm input {
  margin-bottom: 10px;
}
.registerForm {
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 80px;
}
@media screen and (max-width: 650px) {
  .registerForm {
    margin-left: var(--margin);
    margin-right: var(--margin);
  }
}
.loginForm,
.registerForm {
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid hsl(0, 0%, 90%);
}
.loginForm .title,
.registerForm .title {
  font-size: 18px;
  font-weight: 500;
  margin: -20px;
  margin-bottom: 20px;
  padding: 5px 20px;
  background-color: hsl(0, 0%, 90%);
}
.loginForm .subtitle,
.registerForm .subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 30px;
}
.loginForm input,
.registerForm input,
.loginForm textarea,
.registerForm textarea,
.loginForm select,
.registerForm select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background: none;
  text-align: left;
  width: 100%;
  padding: 0.5em;
  font-size: 16px;
  border: 1px solid hsl(0, 0%, 80%);
  outline: none;
}
.loginForm input[type="date"],
.registerForm input[type="date"],
.loginForm textarea[type="date"],
.registerForm textarea[type="date"],
.loginForm select[type="date"],
.registerForm select[type="date"] {
  height: 36px;
}
@media screen and (max-width: 400px) {
  .loginForm input,
  .registerForm input,
  .loginForm textarea,
  .registerForm textarea,
  .loginForm select,
  .registerForm select {
    letter-spacing: -0.5px;
  }
}
.loginForm textarea,
.registerForm textarea {
  resize: vertical;
  min-height: 5rem;
}
.loginForm select,
.registerForm select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="hsl(0, 0%, 25%)" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
}
.loginForm .row,
.registerForm .row {
  display: flex;
  gap: 1rem;
}
.loginForm .row .formfield,
.registerForm .row .formfield {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .loginForm .row,
  .registerForm .row {
    display: block;
  }
}
.loginForm .formfield,
.registerForm .formfield {
  display: block;
  margin-bottom: 10px;
}
.loginForm .formfield .label,
.registerForm .formfield .label {
  margin-bottom: 0.25rem;
}
.loginForm .formfield .description,
.registerForm .formfield .description {
  font-size: 14px;
  opacity: 0.8;
}
.loginForm .formfield .infoButton,
.registerForm .formfield .infoButton {
  display: inline-block;
  position: relative;
  margin-left: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 1rem;
  vertical-align: -3px;
  border: 1px solid currentColor;
}
.loginForm .formfield .infoButton::before,
.registerForm .formfield .infoButton::before {
  content: 'i';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.loginForm .errorMsg,
.registerForm .errorMsg {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0.75rem 0;
  color: var(--red);
  text-align: center;
}
.loginForm .bottomBar,
.registerForm .bottomBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.loginForm .bottomBar *:only-child,
.registerForm .bottomBar *:only-child {
  margin-left: auto;
}
.autocomplete > div.selected {
  background: hsl(0, 0%, 85%);
}
.autocomplete > div:hover:not(.group) {
  background: hsl(0, 0%, 90%);
}
/*********************************************************************************************** Intro
*/
#introSection {
  display: flex;
}
#introSection #introText {
  position: relative;
  max-width: 760px;
  background-color: #fff;
  padding: 0 var(--margin);
  margin-bottom: 20px;
  padding-top: 90px;
  padding-bottom: 5em;
  border-bottom-right-radius: 80px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
#introSection #introText h1 {
  text-align: left;
  padding: 0;
}
#introSection #introText p {
  text-align: left;
}
#introSection #introGraphicWrapper {
  flex: 1;
  position: relative;
  margin-top: 100px;
  margin-bottom: 120px;
}
#introSection #introGraphicWrapper #introGraphic {
  width: 100%;
}
#introSection #introGraphicWrapper #serviceButton {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 36%;
  margin-left: -18%;
}
@media screen and (max-width: 1400px) {
  #introSection {
    background-color: var(--dark-blue);
  }
  #introSection #introGraphicWrapper {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  #introSection #introText {
    margin-bottom: 0;
  }
}
/*********************************************************************************************** pflegehinweiseSection
*/
#pflegehinweiseSection {
  min-height: 600px;
}
@media screen and (max-width: 1300px) {
  #pflegehinweiseSection {
    min-height: 400px;
  }
}
#pflegehinweiseContainer {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
#pflegeSubNavsContainer {
  margin-top: -250px;
  transition: transform 0.5s;
  padding: 0 1em;
}
#pflegeSubNavsContainer.low {
  transform: translateY(240px);
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  #pflegeSubNavsContainer {
    /*margin-top: -150px;*/
  }
  #pflegeSubNavsContainer.low {
    transform: translateY(160px);
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 510px) {
  #pflegeSubNavsContainer:not(.low) {
    margin-top: -400px;
  }
}
@media screen and (max-width: 419px) {
  #pflegeSubNavsContainer {
    margin-top: -200px;
  }
}
/* pflege subnavs */
#pflegeSubNavsContainer > div {
  text-align: center;
  transition: 0.5s;
  transform: scaleX(0.85);
  display: none;
  opacity: 0;
}
#pflegeSubNavsContainer > div.show {
  display: block;
}
#pflegeSubNavsContainer > div.animate {
  opacity: 1;
  transform: none;
}
/* pflege subnav button */
#pflegeSubNavsContainer > div button {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  padding: 0.25em 0.5em;
  cursor: pointer;
}
#pflegeSubNavsContainer > div button:after {
  content: "";
  position: absolute;
  left: 0.5em;
  bottom: 0.1em;
  right: 0.5em;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transform: translateY(0.5em);
  transition: 0.1s;
}
#pflegeSubNavsContainer > div button:hover:after,
#pflegeSubNavsContainer > div button.selected:after {
  opacity: 1;
  transform: none;
}
#pflegeSubNavsContainer > div button:active {
  color: inherit;
  opacity: 0.75;
}
#pflegeTextsContainer {
  margin: 0 auto;
  max-width: 840px;
  margin-top: 3em;
  padding: 0 20px;
}
#pflegeTextsContainer .pflegeText {
  transition: 0.5s;
  transform: scale(0.95);
  transform-origin: top;
  display: none;
  opacity: 0;
}
#pflegeTextsContainer .pflegeText h3 {
  margin-top: 1.5em;
}
#pflegeTextsContainer .pflegeText.show {
  display: block;
}
#pflegeTextsContainer .pflegeText.animate {
  opacity: 1;
  transform: none;
}
#pflegeTextsContainer figure {
  display: inline-block;
  margin: 0;
}
#pflegeTextsContainer figure.titleImg {
  width: 40%;
  float: left;
  margin: 0 1em 0.5em 0;
}
#pflegeTextsContainer figure.footerImg {
  min-width: 51%;
  max-width: 100%;
  margin: 1em 0;
}
#pflegeTextsContainer figure img {
  max-width: 100%;
}
@media screen and (max-width: 550px) {
  #pflegeTextsContainer figure.titleImg {
    width: 100%;
    float: none;
    margin: 0;
  }
}
/*********************************************************************************************** erstehilfeSection
*/
#erstehilfeSection {
  padding-bottom: 8vw;
}
#erstehilfeContainer {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
#erstehilfeAnimContainer {
  transition: transform 0.5s, opacity 0.5s;
  transform: translateY(240px);
  height: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
#erstehilfeAnimContainer.show {
  height: auto;
  pointer-events: all;
  overflow: visible;
}
#erstehilfeAnimContainer.animate {
  opacity: 1;
  margin-top: -240px;
  transform: none;
}
@media screen and (max-width: 510px) {
  #erstehilfeAnimContainer.animate {
    margin-top: -400px;
  }
}
#ersteHilfeCategorySelection {
  display: flex;
  border-bottom: 1px solid var(--light-blue);
}
#ersteHilfeCategorySelection > div {
  flex: 1;
  display: inline-block;
  text-align: center;
  border-right: 1px solid var(--light-blue);
  font-size: 20px;
  color: var(--light-blue);
  padding: 0.4em;
  transition: 0.2s;
}
#ersteHilfeCategorySelection > div:last-child {
  border-right: none;
}
#ersteHilfeCategorySelection > div:hover,
#ersteHilfeCategorySelection > div.selected {
  cursor: pointer;
  background-color: var(--light-blue);
  color: #fff;
}
#erstehilfeSearch {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--light-blue);
  font-size: 16px;
  padding: 0.6em 1em;
  padding-left: 2.5em;
  background-image: url(../images/SVG/search.svg);
  background-repeat: no-repeat;
  background-position: 1em center;
}
/* grid wrapper */
#erstehilfeGridWrapper {
  min-height: 800px;
}
/*
#erstehilfeGridWrapper > div{
    border: 1px solid red;
}
#erstehilfeGridWrapper > div .img {
    background-color: rgba(255, 0, 0, 0.5);
}
*/
/* grid item */
#erstehilfeGridWrapper > div {
  width: 300px;
  margin: 70px 10px;
  display: inline-block;
  text-align: center;
}
#erstehilfeGridWrapper > div .img {
  display: inline-block;
  height: 200px;
  width: 200px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.25s;
}
#erstehilfeGridWrapper > div:hover {
  cursor: pointer;
}
#erstehilfeGridWrapper > div:hover .img {
  transform: scale(1.05);
}
#erstehilfeGridWrapper > div .title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-top: 1em;
}
#erstehilfeGridWrapper > div .description {
  cursor: default;
}
#erstehilfeGridWrapper > div .description .closeBtn {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
  border: none;
  background: none;
}
#erstehilfeGridWrapper > div .description .closeBtn:hover {
  opacity: 0.7;
  cursor: pointer;
}
#erstehilfeGridWrapper > div .description .closeBtn:before,
#erstehilfeGridWrapper > div .description .closeBtn:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
}
#erstehilfeGridWrapper > div .description .closeBtn:before {
  transform: rotate(45deg);
}
#erstehilfeGridWrapper > div .description .closeBtn:after {
  transform: rotate(-45deg);
}
#erstehilfeGridWrapper > div .description > * {
  position: relative;
  width: 100vw;
  width: calc(100vw - 20px);
  min-height: 4em;
  max-width: 1280px;
  max-width: calc(1280px - 20px);
  background-color: hsl(0, 0%, 92%);
  border-bottom-right-radius: 40px;
  padding: 0.5em 2em;
  margin-top: 3em;
  margin-bottom: -70px;
  z-index: 10;
  transition: 0.4s ease-out;
  opacity: 0;
  transform: translateY(-2em);
  display: none;
}
#erstehilfeGridWrapper > div .description > *.show {
  display: block;
}
#erstehilfeGridWrapper > div .description > *.animate {
  opacity: 1;
  transform: none;
}
#erstehilfeGridWrapper > div .description > * .arrow {
  content: "";
  position: absolute;
  left: 150px;
  top: -20px;
  width: 40px;
  height: 40px;
  background-color: hsl(0, 0%, 92%);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
#erstehilfeGridWrapper > div .description * {
  text-align: left;
}
@media screen and (max-width: 900px) {
  #ersteHilfeCategorySelection > div {
    /*flex: 1;
        display: inline-block;*/
    font-size: 16px;
    /*padding: .4em;*/
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  /* grid item */
  #erstehilfeGridWrapper > div {
    width: 150px;
    margin: 50px 10px;
  }
  #erstehilfeGridWrapper > div .img {
    height: 100px;
    width: 100px;
  }
  #erstehilfeGridWrapper > div .title {
    /*font-size: 20px;
        font-weight: 500;*/
    margin-top: 0.5em;
  }
  #erstehilfeGridWrapper > div .description > * .arrow {
    left: 75px;
    top: -20px;
  }
}
/*********************************************************************************************** Footer
*/
footer {
  background-color: var(--light-blue);
  padding: 1em 2em;
}
@media screen and (max-width: 600px) {
  footer {
    padding: 1em;
  }
}
footer .actionButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .actionButtons > * {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}
footer .actionButtons > *:before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: -0.65em;
}
footer .actionButtons > *:nth-child(1):after {
  display: none;
}
footer .actionButtons > *:nth-child(1):before {
  background-image: url(../images/SVG/logout.svg);
}
footer .actionButtons > *:nth-child(2):before {
  background-image: url(../images/SVG/contact.svg);
}
footer .actionButtons #contactInfo {
  flex-basis: 100%;
  text-align: right;
  display: none;
}
footer .actionButtons #contactInfo.show {
  display: inline;
}
footer .actionButtons #contactInfo a {
  text-decoration: none;
  color: #fff;
}
footer nav {
  text-align: center;
}
footer nav,
footer nav a {
  color: #fff;
}
/*********************************************************************************************** legalSection
*/
#legalSection:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -100;
  background-color: var(--light-blue);
  opacity: 0.1;
}
#legalHeader {
  position: relative;
  background-color: var(--light-blue);
  padding: 0.7em 0;
}
#legalHeader h1,
#legalHeader h2 {
  color: #fff;
}
#legalServiceButton {
  position: absolute;
  right: 10%;
  top: 50%;
  width: 14vw;
  max-width: 250px;
  transform: rotate(-12deg) translateY(-50%);
}
@media screen and (max-width: 1430px) {
  :lang(fr) #legalServiceButton {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #legalServiceButton {
    display: none;
  }
}
/*********************************************************************************************** videoGuides
*/
#videoGuidesSection .videoCardContainer {
  text-align: center;
}
#videoGuidesSection .videoCardContainer .videoCard {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  margin: 2rem;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: left;
}
@media screen and (max-width: 1300px) {
  #videoGuidesSection .videoCardContainer .videoCard {
    margin: 1rem;
    padding: 1.5rem;
    width: 45%;
  }
}
@media screen and (max-width: 1100px) {
  #videoGuidesSection .videoCardContainer .videoCard {
    width: 90%;
    max-width: 600px;
  }
}
#videoGuidesSection .videoCardContainer .videoCard .title {
  margin: 0;
  font-size: 24px;
  color: var(--light-blue);
  font-weight: 500;
  text-transform: none;
}
#videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer {
  position: relative;
  padding-bottom: 56.25%;
  /* Default for 1600x900 videos 16:9 ratio*/
  height: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin: 1.5rem 0;
}
@media screen and (max-width: 800px) {
  #videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer {
    margin: 1.5rem -1.5rem;
    padding-top: 2rem;
  }
}
#videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer .ytConsentMessage {
  display: none;
  background-color: #fff;
  margin: 4rem;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
#videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer .ytConsentMessage p {
  margin: 0;
}
#videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer .ytConsentMessage button {
  margin: 0 auto;
  margin-top: 1rem;
}
#videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer:hover .ytConsentMessage {
  display: block;
}
#videoGuidesSection .videoCardContainer .videoCard .videoIFrameContainer iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#videoGuidesSection .videoCardContainer .videoCard button {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--red);
  padding: 0.5rem 2rem;
  border: none;
  display: block;
  margin-left: auto;
  font-family: "futura-pt", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
#videoGuidesSection .videoCardContainer .videoCard button:hover {
  cursor: pointer;
  overflow: 0.8;
}
#videoGuidesSection .videoCardContainer .videoCard form {
  display: none;
}
#videoGuidesSection .videoCardContainer .videoCard form.open {
  display: block;
}
#videoGuidesSection .videoCardContainer .videoCard form > * {
  display: block;
}
#videoGuidesSection .videoCardContainer .videoCard form input,
#videoGuidesSection .videoCardContainer .videoCard form textarea {
  width: 100%;
  margin-bottom: 1rem;
  background-color: rgba(55, 62, 74, 0.1);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
}
#videoGuidesSection .videoCardContainer .videoCard form textarea {
  max-width: 100%;
  min-height: 7rem;
}
.legalText {
  padding: 2rem;
  padding-top: 5rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.legalText,
.legalText p {
  text-align: left;
}
.legalText .files {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.legalText .files .fileLink {
  display: block;
}
.footerNav {
  text-align: center;
  padding: 0.5rem;
}
.footerNav.positionFixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.cookieConsent {
  position: fixed;
  left: var(--margin);
  right: var(--margin);
  bottom: var(--margin);
  background-color: hsl(0, 0%, 90%);
  padding: 1rem 1.5rem;
}
.cookieConsent p {
  text-align: left;
  margin: 0;
  margin-bottom: 1rem;
}
.cookieConsent button {
  display: block;
  margin-left: auto;
}
