*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 500px;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, p, ul, li, a {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

button {
  cursor: pointer;
  border: none;
  background-color: unset;
}

.lotus-seperator {
  width: 100%;
  margin: 45px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.lotus-seperator svg {
  width: 120px;
  stroke: var(--mainColor);
  height: auto;
}

.main--standalone {
  min-height: 100vh;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100px;
}

@media screen and (max-width: 600px) {
  .lotus-seperator {
    margin: 30px 0;
  }
  .lotus-seperator svg {
    width: 95px;
  }
}
@font-face {
  font-family: "talkeSerif";
  src: url("../assets/font/talke-font.otf");
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-ThinItalic.woff");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-Thin.woff");
  font-weight: 100;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-Light.woff");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-Regular.woff");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-Medium.woff");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-Bold.woff");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/font/Roboto-Black.woff");
  font-weight: 900;
}

:root {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  --mainColor: #b69e56;
  --mainColorHover: #dabd66;
  --mainColortranslucent: rgba(195, 169, 89, 0.92);
  --superLight: #fae5c8;
  --link-color: #000;
}

h1 {
  font-family: "talkeSerif", serif;
  font-size: 8rem;
  font-weight: 100;
  line-height: 155px;
}

h2, h1.small {
  font-size: 4rem;
  font-family: "talkeSerif", serif;
  font-weight: 100;
  line-height: 85px;
}
h2.center, h1.small.center {
  text-align: center;
}

h3 {
  font-size: 1.3rem;
  font-weight: 100;
  text-transform: uppercase;
}

#behandlungen-page h3 {
  opacity: 0;
}

h4 {
  font-size: 2rem;
  font-family: "talkeSerif", serif;
  font-weight: 100;
}

.highlighted {
  color: var(--mainColor);
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  h1:not(.small) {
    font-size: 6rem;
  }
}
@media screen and (max-width: 800px) {
  h2.large, h1.small.large {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  h1:not(.small) {
    font-size: 3.5rem;
    line-height: 70px;
  }

  h2.large, h1.small.large {
    font-size: 2.5rem;
    line-height: 60px;
  }
}
#intro-banner {
  position: relative;
  background: var(--superLight);
  width: 100%;
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
#intro-banner::before {
  content: "";
  background: #00000026;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}
#intro-banner #intro-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 1;
  background-color: var(--superLight);
}
#intro-banner .intro-banner__content {
  z-index: 3;
}
#intro-banner .intro-banner__content img {
  width: 250px;
  max-width: 80%;
  margin-bottom: 10vh;
}
#intro-banner .intro-banner__content p {
  font-size: 1.3rem;
  font-weight: 100;
}
#intro-banner .intro-banner__content h1 {
  padding: 0 30px;
}

.icon-text-wrapper {
  margin: 10px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.icon-text-wrapper svg {
  margin-right: 7px;
}
.icon-text-wrapper a {
  font-size: 1.3rem;
}

@media screen and (max-width: 1000px) {
  #intro-banner .intro-banner__content p, #intro-banner .intro-banner__content .icon-text-wrapper a {
    font-size: 1.1rem;
  }
  #intro-banner .intro-banner__content .adress-wrapper {
    margin-top: 20px;
  }
  #intro-banner .intro-banner__content img {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  #intro-banner .intro-banner__content img {
    width: 170px;
  }
}
header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 55px;
  position: fixed;
  top: 0;
  z-index: 1000;
  color: #ffffff;
  transition: background-color 0.2s ease-in-out;
}
header .header__default-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 35px;
}
header .header__default-nav li:not(.header__talke-logo) a {
  font-size: 1rem;
  padding: 0 15px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  display: inline-block;
  position: relative;
}
header .header__default-nav li:not(.header__talke-logo) a:after {
  bottom: 0;
  content: "";
  display: block;
  height: 1.5px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
  transform: translateX(-50%);
}
header .header__default-nav li:not(.header__talke-logo) a:hover:after {
  width: 70%;
}
header .header__default-nav li.header__talke-logo {
  margin-right: 20px;
}
header .header__default-nav li.header__talke-logo img {
  width: auto;
  max-height: 90%;
  height: 40px;
}
header .header__default-nav li.header__talke-logo a {
  padding: 0;
}
header.header--scroll a {
  color: var(--link-color);
}
header.header--scroll .header__default-nav li a::after {
  background: #000;
}
header .header__mobile-icon {
  padding-right: 25px;
  display: none;
}
header .header__mobile-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
header.header--scroll .header__mobile-icon svg {
  fill: #000;
}
header .header__mobile-nav {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background: var(--mainColor);
  opacity: 0.95;
}
header .header__mobile-nav li a {
  width: 100%;
  display: block;
  padding: 10px 13px;
  cursor: pointer;
  font-weight: 300;
  font-size: 1rem;
  transition: background-color 0.2s ease-out;
}
header .header__mobile-nav li a:hover {
  background-color: var(--mainColorHover);
}
header.header--dark .header__default-nav li:not(.header__talke-logo) a {
  color: #000;
}
header.header--dark .header__default-nav li:not(.header__talke-logo) a::after {
  background: #000;
}
header.header--dark .header__mobile-icon svg {
  fill: #000000;
}

.header--scroll {
  background-color: var(--mainColor);
}

#footer {
  width: 100%;
  height: 50px;
  z-index: 1000;
  background-color: var(--mainColor);
  padding: 10px 30px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
#footer ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
#footer ul li a {
  padding: 0 10px;
  font-weight: 100;
  font-size: 1rem;
  color: var(--link-color);
}
#footer ul li a:hover {
  text-decoration: underline;
}
#footer .icon-text-wrapper {
  margin: 0;
}
#footer .icon-text-wrapper svg {
  margin-right: -3px;
  margin-left: 5px;
  fill: #000;
}

.spacer {
  height: 120vh;
}

@media screen and (max-width: 1000px) {
  header .header__default-nav li:not(.header__talke-logo) a {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}
@media screen and (min-width: 715px) {
  header .header__mobile-nav {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  #footer {
    flex-flow: column nowrap;
    height: auto;
  }
  #footer ul {
    justify-content: center;
  }
  #footer ul:first-of-type {
    margin-bottom: 10px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 715px) {
  header .header__default-nav {
    width: min-content;
  }

  header .header__default-nav li:not(.header__talke-logo) {
    display: none;
  }

  header .header__mobile-icon {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  #footer {
    padding: 0 5px;
  }
  #footer ul {
    justify-content: center;
  }
}
.main__content {
  padding: 30px 0 75px 0;
}
.main__content .lotus-seperator {
  margin-top: 0;
}

.text-image-wrapper {
  padding: 0 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.text-image-wrapper article {
  position: relative;
  flex: 1 1 30em;
  max-width: 800px;
  background-color: var(--mainColor);
  padding: 35px;
  font-weight: 100;
  min-height: 450px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.text-image-wrapper article h2, .text-image-wrapper article h1.small {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.text-image-wrapper article p {
  width: 100%;
  margin: 7px 0;
  font-size: 1.1rem;
}
.text-image-wrapper article .article__italic {
  font-style: italic;
}
.text-image-wrapper .text-image-wrapper__img-wrapper {
  flex: 1 1 20em;
}
.text-image-wrapper .text-portrait-wrapper {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.text-image-wrapper .text-portrait-wrapper p {
  width: auto;
  padding-right: 25px;
}
.text-image-wrapper .text-portrait-wrapper .text-image-wrapper__portrait {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 50px;
  margin-top: 15px;
  position: relative;
}
.text-image-wrapper .text-portrait-wrapper .text-image-wrapper__portrait img {
  position: absolute;
  width: auto;
  min-width: 100%;
  height: 230px;
  top: -20px;
}

#startseite.main__content {
  background: url("../assets/talke-kosmetik-asset-1.png") no-repeat right;
  background-size: 55% auto;
}

@media screen and (max-width: 899px) {
  #startseite.main__content {
    background: none;
  }
}
@media screen and (max-width: 600px) {
  .text-image-wrapper {
    padding: 0 25px;
  }
}
@media screen and (max-width: 470px) {
  .text-image-wrapper {
    padding: 0 10px;
  }
  .text-image-wrapper article {
    padding: 35px 20px;
  }
  .text-image-wrapper article h2, .text-image-wrapper article h1.small {
    font-size: 3rem;
    line-height: 55px;
  }
}
#behandlungen-page .main--standalone .product-list-container {
  padding: 30px 10% 30px 10%;
  width: 80%;
  max-width: 1500px;
}
#behandlungen-page .main--standalone h2, #behandlungen-page .main--standalone h1.small {
  color: #ffffff;
  margin-bottom: 7px;
}
#behandlungen-page .main--standalone h4 {
  line-height: 40px;
  padding-right: 10px;
}
#behandlungen-page .main--standalone .inital-info-container {
  width: 80%;
  padding: 0 10%;
  margin-bottom: 15px;
}
#behandlungen-page .main--standalone .inital-info-container .inital-info-container__desc {
  color: #fff;
  margin-bottom: 35px;
  font-size: 1.2rem;
  font-weight: 300;
}
#behandlungen-page .main--standalone .inital-info-container .inital-info-container__nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
#behandlungen-page .main--standalone .inital-info-container .inital-info-container__nav li {
  margin: 5px 0;
}
#behandlungen-page .main--standalone .inital-info-container .inital-info-container__nav a {
  display: inline-block;
  min-width: 200px;
  margin: 0 5px;
  padding: 7px 10px;
  text-align: center;
  background: var(--mainColor);
  opacity: 1;
  color: #000000;
  font-weight: 100;
  transition: background-color 0.2s ease-out;
}
#behandlungen-page .main--standalone .inital-info-container .inital-info-container__nav a:hover {
  background-color: var(--mainColorHover);
}
#behandlungen-page .bh-page__background {
  background: url("../assets/talke-kosmetik-asset-2.jpg") no-repeat fixed center;
  background-size: cover;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  filter: blur(3px);
  transform: scale(1.05);
}
#behandlungen-page .bh-page__background::before {
  content: "";
  background: rgba(0, 0, 0, 0.47);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}

.product-container {
  width: 100%;
  background: var(--mainColortranslucent);
  padding: 25px 40px;
  margin-bottom: 25px;
  min-height: 250px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
.product-container.no-desc {
  min-height: unset;
  padding: 12px 40px;
}
.product-container.no-desc .product-container__info-wrapper {
  margin-bottom: 0;
}
.product-container.no-desc .product-container__info-wrapper h4 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
}
.product-container.custom-wrap h4 {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 7px;
}
.product-container.custom-wrap .product-container__info-wrapper {
  margin-bottom: 0;
}
.product-container.custom-wrap .product-container__info-wrapper h4 {
  font-weight: 100;
  font-size: 1.3rem;
  margin-bottom: 0;
}
.product-container.custom-wrap .product-container__info-wrapper:last-of-type {
  margin-bottom: 15px;
}
.product-container.giftcard {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.product-container.giftcard::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../assets/talke-kosmetik-asset-3.jpg") no-repeat top;
  background-size: cover;
  z-index: 1;
  filter: blur(2px) brightness(1.2);
  transform: scale(1.01);
}
.product-container.giftcard h4 {
  font-size: 3rem;
  margin-bottom: 25px;
  z-index: 2;
}
.product-container.giftcard p {
  z-index: 2;
  font-size: 1.2rem;
}
.product-container .product-container__info-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.product-container .product-container__info-wrapper p {
  font-size: 1.2rem;
}
.product-container .product-container__desc {
  font-size: 1.1rem;
  font-weight: 100;
}

.product-list-seperator {
  width: 100%;
  margin: 10px 0;
  padding: 25px 50px;
  background: #000;
  color: #ffffff;
}
.product-list-seperator h3 {
  padding-left: 10%;
}
.product-list-seperator h3 span {
  text-transform: none;
}

#special-page {
  background: beige;
}
#special-page .bh-page__background {
  background: url("../assets/talke-kosmetik-asset-4.jpg") no-repeat fixed center;
  background-size: cover;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  filter: blur(2px);
  transform: scale(1.05);
}
#special-page .bh-page__background::before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}
#special-page .box-container {
  padding: 0 50px;
  margin-bottom: 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
#special-page .box-container .box-container__box {
  flex: 1 1 20em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: flex-start;
  background: var(--mainColortranslucent);
  padding: 25px 25px;
  margin: 15px;
  min-height: 550px;
}
#special-page .box-container .box-container__box h4 {
  white-space: nowrap;
}
#special-page .box-container .box-container__box p {
  font-size: 1.1rem;
  font-weight: 100;
  margin-top: 15px;
}
#special-page .box-container .box-container__box .box__price {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 15px;
}

.title-wrapper h2, .title-wrapper h1.small {
  padding: 0 25px;
}

#about-us-page main {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 50px);
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding-top: 0;
}
#about-us-page .title-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background: url("../assets/talke-kosmetik-asset-5.png") no-repeat var(--superLight);
  background-position: right bottom;
  background-size: auto 85%;
  padding: 100px 15px 0 15px;
  margin-bottom: 75px;
}
#about-us-page .title-wrapper h2, #about-us-page .title-wrapper h1.small {
  padding: 10px 25px;
  background: var(--mainColortranslucent);
}
#about-us-page .title-wrapper .lotus-seperator svg {
  width: 200px;
}
#about-us-page .bg-collage {
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 75px 0 0 0;
}
#about-us-page .bg-collage div {
  min-height: 500px;
}
#about-us-page .bg-collage div:first-of-type {
  flex: 1 1 17em;
  background: url("../assets/talke-laden-1.jpg") no-repeat center;
  background-size: cover;
  height: 100%;
}
#about-us-page .bg-collage div:nth-of-type(2) {
  flex: 1 1 17em;
  background: url("../assets/talke-laden-3.jpg") no-repeat center;
  background-size: cover;
  height: 100%;
}
#about-us-page .bg-collage div:nth-of-type(3) {
  flex: 1 1 17em;
  background: url("../assets/talke-laden-5.jpg") no-repeat center;
  background-size: cover;
  height: 100%;
}
#about-us-page .bg-collage div:nth-of-type(4) {
  flex: 1 1 17em;
  background: url("../assets/talke-laden-4.jpg") no-repeat center;
  background-size: cover;
  height: 100%;
}

.overlap-text-image-wrapper {
  width: 100%;
  height: 800px;
  margin-top: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.overlap-text-image-wrapper .overlap-text-image-wrapper__text {
  flex: 1 1 30em;
  padding: 60px 40px;
  background-color: var(--mainColor);
  margin-left: 50px;
  font-weight: 100;
  line-height: 27px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
.overlap-text-image-wrapper .overlap-text-image-wrapper__text h4 {
  margin-bottom: 15px;
  font-size: 3.3rem;
}
.overlap-text-image-wrapper .overlap-text-image-wrapper__img {
  flex: 1 1 30em;
  height: 100%;
}
.overlap-text-image-wrapper .overlap-text-image-wrapper__img img {
  height: 97%;
  margin-top: -40px;
  margin-left: -70px;
  position: relative;
  z-index: -1;
}
.overlap-text-image-wrapper .overlap-text-image-wrapper__img .lotus-seperator {
  display: none;
}

.text-box {
  width: 100%;
  background: url("../assets/talke-kosmetik-asset-4.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.text-box .text-box__content-wrapper {
  margin: 90px 15px;
  padding: 60px 40px;
  max-width: 700px;
  font-weight: 100;
  line-height: 27px;
  background-color: var(--mainColortranslucent);
}
.text-box .text-box__content-wrapper h4 {
  margin-bottom: 15px;
  line-height: 40px;
}

#produkte-page main {
  background: url("../assets/talke-kosmetik-asset-6.jpg") no-repeat center;
  background-size: cover;
}
#produkte-page .title-subtitle-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
#produkte-page .title-subtitle-wrapper .title {
  padding: 15px 25px;
  margin: 0 15px 30px 15px;
  background: var(--mainColortranslucent);
}
#produkte-page .title-subtitle-wrapper .subtitle {
  padding: 10px 25px;
  margin: 5px 15px;
  background: var(--mainColortranslucent);
}
#produkte-page .logos-container {
  width: 90%;
  padding: 25px;
  margin-bottom: 50px;
  background: #1e1e1e;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
#produkte-page .logos-container img {
  filter: brightness(0) invert(1);
  max-width: 200px;
  margin: 15px;
}

#kontakt-page .kt-page__background {
  background: url("../assets/talke-kosmetik-asset-4.jpg") no-repeat fixed center;
  background-size: cover;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  margin-top: 0;
}
#kontakt-page .kt-page__background::before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}
#kontakt-page .main--standalone {
  flex-flow: column nowrap;
  padding-top: 70px;
}
#kontakt-page .main--standalone .title {
  padding: 12px 25px;
  width: 400px;
  max-width: 90%;
  margin: 0 15px 30px 15px;
  background: var(--mainColortranslucent);
  text-align: center;
}
#kontakt-page .content-container {
  width: 800px;
  max-width: 95%;
  background-color: var(--mainColortranslucent);
  padding: 25px 30px;
  font-weight: 100;
  margin-bottom: 60px;
}
#kontakt-page .content-container > p {
  font-size: 1.5rem;
}
#kontakt-page div {
  margin: 15px 0;
}
#kontakt-page div p {
  font-size: 1.6rem;
}
#kontakt-page .content-container__icons {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
}
#kontakt-page .content-container__icons .icon-container {
  text-align: center;
  margin-top: 50px;
  color: #000000;
  padding: 0 15px;
}
#kontakt-page .content-container__icons .icon-container svg {
  width: 65px;
  height: 65px;
  background-color: #000000;
  fill: var(--mainColor);
  border-radius: 50%;
  padding: 13px;
  margin-bottom: 15px;
  transition: background-color 0.2s ease-out;
}
#kontakt-page .content-container__icons .icon-container svg:hover {
  background-color: #ffffff !important;
}
#kontakt-page .content-container__icons .icon-container:last-of-type svg {
  fill: #ffffff;
  background-color: #3b5998;
}
#kontakt-page .content-container__icons .icon-container:last-of-type svg:hover {
  fill: #3b5998;
}

#anfahrt-page .main--standalone {
  flex-flow: column nowrap;
  justify-content: flex-start;
}
#anfahrt-page .main--standalone h2, #anfahrt-page .main--standalone h1.small {
  margin-top: 50px;
  padding: 0 15px;
  text-align: center;
}
#anfahrt-page .main--standalone > p {
  padding: 10px 25px;
  margin: 5px 15px;
  background: var(--mainColortranslucent);
}
#anfahrt-page .map-container {
  width: 100%;
}
#anfahrt-page .map-container iframe {
  width: 100%;
  min-height: 500px;
}
#anfahrt-page .content-container {
  width: 800px;
  max-width: 95%;
  background-color: var(--mainColor);
  padding: 25px 30px;
  margin: 40px 0 80px 0;
  font-weight: 100;
}
#anfahrt-page .content-container p:first-of-type {
  font-size: 2rem;
  text-transform: uppercase;
}
#anfahrt-page .content-container b {
  margin-top: 25px;
  display: block;
}

#impressum-page .main--standalone, #datenschtz-page .main--standalone {
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px 25px 70px 25px;
  background-color: #151515;
  color: #fff;
  font-weight: 100;
  min-height: calc(100vh - 50px);
}
#impressum-page .main--standalone h2, #impressum-page .main--standalone h1.small, #datenschtz-page .main--standalone h2, #datenschtz-page .main--standalone h1.small {
  margin-bottom: 25px;
}
#impressum-page .main--standalone h4, #datenschtz-page .main--standalone h4 {
  margin: 40px 0 7px 0;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 1.5rem;
  max-width: 850px;
}
#impressum-page .main--standalone p, #impressum-page .main--standalone ul, #impressum-page .main--standalone li, #datenschtz-page .main--standalone p, #datenschtz-page .main--standalone ul, #datenschtz-page .main--standalone li {
  max-width: 850px;
}
#impressum-page .main--standalone a, #datenschtz-page .main--standalone a {
  color: var(--mainColor);
  transition: color 0.2s ease-out;
}
#impressum-page .main--standalone a:hover, #datenschtz-page .main--standalone a:hover {
  color: var(--mainColorHover);
}
#impressum-page .main--standalone div, #datenschtz-page .main--standalone div {
  margin: 12px 0;
}

@media screen and (max-width: 1333px) {
  #produkte-page .logos-container {
    justify-content: center;
  }
}
@media screen and (max-width: 1178px) {
  #special-page .box-container .box-container__box {
    min-height: 500px;
  }
  #special-page .box-container .box-container__box:last-of-type {
    min-height: 300px;
  }
}
@media screen and (min-width: 816px) and (max-width: 1100px) {
  #about-us-page .bg-collage div {
    min-width: 50%;
  }
}
@media screen and (max-width: 1010px) {
  .overlap-text-image-wrapper {
    height: 1320px;
    margin-top: 0;
    flex-flow: column nowrap;
  }
  .overlap-text-image-wrapper .overlap-text-image-wrapper__text {
    margin: 0 10px;
    max-width: 750px;
  }
  .overlap-text-image-wrapper .overlap-text-image-wrapper__img {
    height: 100%;
    max-width: 350px;
    max-height: 400px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -30px;
    z-index: 2;
    position: relative;
  }
  .overlap-text-image-wrapper .overlap-text-image-wrapper__img .lotus-seperator {
    display: block;
    position: absolute;
    bottom: 15px;
    margin: 0 !important;
  }
  .overlap-text-image-wrapper .overlap-text-image-wrapper__img .lotus-seperator svg {
    width: 170px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }
  .overlap-text-image-wrapper .overlap-text-image-wrapper__img img {
    min-height: 100%;
    min-width: 100%;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }

  #produkte-page .title {
    font-size: 2.5rem;
    line-height: 48px;
    text-align: center;
  }
  #produkte-page .logos-container {
    width: 100%;
    margin: 0 15px 50px 15px;
    justify-content: center;
  }
}
@media screen and (max-width: 435px) {
  #anfahrt-page .main--standalone h2, #anfahrt-page .main--standalone h1.small {
    font-size: 3rem;
  }
  #anfahrt-page .main--standalone .lotus-seperator {
    margin: 10px 0 30px 0;
  }
}
@media screen and (max-width: 572px) {
  #kontakt-page .content-container__icons {
    justify-content: center;
    flex-flow: column nowrap;
  }

  #datenschtz-page .main--standalone h2, #datenschtz-page .main--standalone h1.small {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 600px) {
  #behandlungen-page .main--standalone .product-list-container, #behandlungen-page #behandlungen-page .main--standalone .inital-info-container {
    padding: 30px 25px 30px 25px;
  }

  .product-container {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 800px) {
  #behandlungen-page .main--standalone .inital-info-container .inital-info-container__nav a {
    min-width: 125px;
  }

  #behandlungen-page .bh-page__background {
    filter: blur(1px);
  }
}
@media screen and (max-width: 850px) {
  #behandlungen-page .main--standalone .product-list-container, #behandlungen-page .main--standalone .inital-info-container {
    width: 100%;
  }

  .product-list-seperator h3 {
    padding-left: 0;
  }

  #special-page .box-container {
    flex-flow: column nowrap;
  }
  #special-page .box-container .box-container__box {
    min-height: unset;
  }
}
.show-title {
  animation: fadeIn 0.7s forwards;
  animation-delay: 0.1s;
  animation-timing-function: cubic-bezier(0.48, 0, 0.1, 1);
}
@keyframes fadeIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cookieConsentContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 375px;
  height: auto;
  background-color: #FFFFFF;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  padding: 15px;
  display: none;
  text-align: center;
  z-index: 100000;
}

.cookieConsentContainer h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  text-transform: none;
}

.cookieConsentContainer p {
  font-size: 1.1rem;
}

.cookieConsentContainer #cookie-accept {
  display: block;
  width: 100%;
  background-color: var(--mainColor);
  padding: 10px;
  border-radius: 7px;
  font-size: 1.25rem;
  cursor: pointer;
  margin-bottom: 15px;
}

.cookieConsentContainer #cookie-accept:hover {
  background-color: var(--mainColorHover);
}

/* cookie list */
.cookieConsentContainer ul {
  display: inline-block;
  margin: 10px 0 15px 0;
  padding: 0;
  list-style: none;
}

.cookieConsentContainer ul li {
  font-size: 1.2rem;
  position: relative;
}

.cookieConsentContainer ul li input {
  opacity: 0;
  position: absolute;
}

/* fancy checkbox */
.cookie-checkmark ul li label {
  cursor: pointer;
}

.cookieConsentContainer ul li {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cookieConsentContainer ul li input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.cookieConsentContainer .cookie-checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 5px;
}

.cookieConsentContainer ul li input:checked ~ .cookie-checkmark {
  background-color: #d7d7d7;
}

.cookie-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.cookieConsentContainer ul li input:checked ~ .cookie-checkmark:after {
  display: block;
}

.cookieConsentContainer ul li .cookie-checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #a4a4a4;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* cookie links */
#cookie-links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

#cookie-links a, #cookie-links p {
  color: #a4a4a4;
  font-weight: 100;
  transition: color 0.2s ease-in-out;
}

#cookie-links p {
  margin: 0 7px;
}

#cookie-links a:hover {
  color: var(--mainColor);
}

@media only screen and (max-width: 375px) {
  .cookieConsentContainer {
    width: 100%;
  }

  .cookieConsentContainer h3 {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
