@charset "UTF-8";
/* --- Variablen --- */
/* --- Webfonts --- */
@font-face {
  font-family: "Poppins Regular";
  src: url("../webfonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("../webfonts/Poppins-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../webfonts/Poppins-Medium.ttf") format("truetype");
}
/* ----- ANFANG: ALLGEMEINE STYLES ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins Regular", Arial, sans-serif;
  font-size: 16px;
  color: #616363;
  background-color: #ffffff;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2727272727rem;
}

p {
  margin-bottom: 2rem;
}

strong {
  font-family: "Poppins SemiBold", "Arial Black", sans-serif;
  font-weight: 600;
}

section .content-wrapper {
  max-width: 1200px;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.text-grid {
  display: grid;
  grid-template-columns: 47.5% 47.5%;
  grid-column-gap: 5%;
  grid-row-gap: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 767px) {
  .text-grid {
    display: block;
    text-align: justify;
  }
  .text-grid .dash-light, .text-grid .dash-dark {
    display: none;
  }
  .text-grid .image {
    margin-bottom: 2rem;
  }
  .text-grid p {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
.text-grid .text {
  display: flex;
  align-items: center;
}

.text-grid .image img {
  display: block;
}

.text-grid .image img {
  width: 100%;
  aspect-ratio: 100/125;
  object-fit: cover;
}

.text-grid .landscape-image img {
  aspect-ratio: unset;
}

.dash-light {
  height: 2rem;
  margin-top: 1rem;
  width: 50px;
  border-top: 3px solid #ffffff;
}

.dash-dark {
  height: 2rem;
  margin-top: 1rem;
  width: 50px;
  border-top: 3px solid #616363;
}

a {
  text-decoration: none;
}

a.underlined {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.image.centered {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: 65vw;
}

.image.centered img {
  width: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  body {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 1rem;
  }
}
/* --- Shadow Heading --- */
section.with-heading {
  padding-top: 9rem;
}

section .heading h2 {
  margin-left: 10%;
  position: relative;
  z-index: 20;
}

.shadow-heading {
  font-family: "Poppins Medium", Arial, sans-serif;
  font-size: 6rem;
  position: absolute;
  margin-top: 0px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1rem;
  margin-left: 12.5%;
}

.post-heading {
  margin-top: 8rem;
}

@media (max-width: 767px) {
  section.with-heading {
    padding-top: 5.25rem;
  }
  .post-heading {
    margin-top: 3rem;
  }
  .shadow-heading {
    font-size: 2rem;
    margin-top: -72px;
    letter-spacing: 0.25rem;
  }
}
@media (min-width: 768px) {
  .post-heading {
    margin-top: 6rem;
  }
  section.with-heading {
    padding-top: 4.95rem;
  }
  .shadow-heading {
    font-size: 3.3rem;
    margin-top: -79.2px;
  }
}
@media (min-width: 1024px) {
  .post-heading {
    margin-top: 6rem;
  }
  section.with-heading {
    padding-top: 6.75rem;
  }
  .shadow-heading {
    font-size: 4.5rem;
    margin-top: -108px;
  }
}
/* --- HEADER --- */
header {
  position: fixed;
  z-index: 999;
  width: 100vw;
  background-color: #000000;
  opacity: 0.75;
  left: 0;
  right: 0;
  height: 66px;
  max-height: 66px;
  display: grid;
  grid-template-columns: calc(250px + 4rem * 2) auto;
}

#header-logo a {
  margin-top: 4px;
  margin-left: 4rem;
  display: block;
}

#header-logo img {
  width: 250px;
}

#menu-header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 27.1818181818px;
}

#menu-header li {
  font-family: "Poppins Regular", Arial, sans-serif;
  font-size: 0.7272727273rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 4rem;
  list-style: none;
}

#menu-header li:last-of-type {
  margin-right: 0;
}

#menu-header li a:link,
#menu-header li a:visited {
  color: #ffffff;
}

#menu-header li a:focus,
#menu-header li a:hover,
#menu-header li a:active {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 1px;
}

@media (max-width: 319px) {
  header #header-logo {
    display: grid;
    align-items: center;
  }
  header #header-logo a img {
    width: 70vw;
  }
}
@media (max-width: 767px) {
  header #header-logo a {
    margin-left: 5px;
  }
}
@media (max-width: 1200px) {
  #menu-header li {
    margin-right: 1.75rem;
  }
}
@media (max-width: 1000px) {
  #menu-header li a:link,
  #menu-header li a:visited {
    color: #616363;
  }
}
/* -- Startbereich -- */
#start {
  width: 100vw;
  height: 110vh;
}

#start .background-image {
  width: 100vw;
  height: 90vh;
  position: absolute;
  object-fit: cover;
  object-position: left 30%;
  z-index: 10;
}

#start .text-area {
  background-color: #1f2121;
  color: #ffffff;
  z-index: 20;
  position: absolute;
  top: 70vh;
  right: 0;
  width: 645px;
  height: 310px;
  padding: 4rem;
}

#start .text-area .wrapper {
  width: 100%;
  text-align: right;
}

#start a:link,
#start a:visited,
#start a:focus,
#start a:hover,
#start a:active {
  color: #ffffff;
}

@media (max-width: 428px) {
  #start .text-area {
    font-size: 0.75rem;
    height: 250px;
    top: 65vh;
    width: 100vw;
    padding: 2rem;
  }
  #start .text-area h1 {
    margin-bottom: 0.5rem;
  }
  #start .text-area p {
    margin-bottom: 1rem;
  }
  #start .text-area .wrapper {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (min-width: 428px) {
  #start .text-area {
    font-size: 0.75rem;
    width: 310px;
  }
}
@media (max-width: 550px) {
  #start .background-image {
    object-position: left 20% top 0;
  }
}
@media (min-width: 551px) {
  #start .text-area {
    top: 75vh;
    width: 350px;
    height: 200px;
    padding: 1.5rem;
  }
  #start .text-area p {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  #start .text-area {
    top: 75vh;
    width: 350px;
    height: 200px;
    padding: 1.5rem;
  }
  #start .text-area p {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  #start .text-area {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  #start .text-area {
    top: 70vh;
    right: 0;
    width: 645px;
    height: 310px;
    padding: 4rem;
  }
}
/* -- Salon / Produkte -- */
#salon_produkte {
  background-color: #ffffff;
}

#salon_produkte .shadow-heading {
  color: #FAFAFA;
}

#salon_produkte #produkt-logos {
  width: 60vw;
  display: grid;
  grid-template-columns: 31% 31% 31%;
  grid-column-gap: 4%;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

#salon_produkte #produkt-logos div {
  display: flex;
  justify-content: center;
}

#salon_produkte #produkt-logos img {
  width: 100%;
  object-fit: contain;
}

#salon_produkte #produkt-logos #logo-wella,
#salon_produkte #produkt-logos #logo-system-professional {
  width: 65%;
}

@media (max-width: 427px) {
  #salon_produkte #produkt-logos {
    display: block;
  }
  #salon_produkte #produkt-logos > div {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* -- Extensions -- */
#extensions {
  background-color: #1f2121;
  color: #ffffff;
}

#extensions .shadow-heading {
  color: #2A2C2C;
}

/* -- Isabel Kindelan -- */
#isabel_kindelan {
  background-color: #f7f7f7;
}

#isabel_kindelan .shadow-heading {
  color: #ffffff;
}

/* -- Kontakt -- */
#kontakt {
  background-color: #ffffff;
  padding-bottom: 4rem;
}

#kontakt .shadow-heading {
  color: #FAFAFA;
}

#kontakt a:link,
#kontakt a:visited,
#kontakt a:focus,
#kontakt a:hover,
#kontakt a:active {
  color: #616363;
}

#kontakt .content-wrapper {
  margin-bottom: 3rem;
}

#kontakt .contact-info-wrapper {
  width: 65vw;
  max-width: 65vw;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 32% 32% 33%;
  grid-column-gap: 1%;
}

#kontakt h3 {
  margin-bottom: 1rem;
}

#kontakt .contact-address {
  background-color: #f7f7f7;
  position: absolute;
  margin-top: -310px;
  right: 8.75vw;
  width: 470px;
  height: 310px;
  padding: 4rem;
}

#kontakt .contact-address .wrapper {
  width: 100%;
  text-align: right;
}

#kontakt #business-hours {
  width: 25%;
  margin-left: 17.5vw;
  margin-top: 2rem;
}

#kontakt .business-hours {
  display: grid;
  grid-template-columns: 55% 35%;
  grid-column-gap: 10%;
}

@media (max-width: 319px) {
  #kontakt .contact-info-wrapper {
    display: block;
  }
  #kontakt .contact-info-wrapper h3 {
    margin-bottom: 0;
  }
  #kontakt .contact-info-wrapper > div > div {
    padding-bottom: 1rem;
  }
  #kontakt .contact-address {
    padding: 1.5rem 0.5rem;
    position: static;
    margin-top: 0;
    width: 100vw;
    height: initial;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #kontakt .contact-address h2 {
    font-size: 1rem;
  }
  #kontakt .contact-address .wrapper {
    text-align: center;
  }
  #kontakt #business-hours {
    width: 65vw;
    margin-left: auto;
    margin-right: auto;
  }
  #kontakt #business-hours .business-hours {
    display: block;
  }
  #kontakt #business-hours .business-hours span {
    display: block;
  }
}
@media (min-width: 320px) {
  #kontakt .contact-info-wrapper {
    display: block;
  }
  #kontakt .contact-info-wrapper h3 {
    margin-bottom: 0;
  }
  #kontakt .contact-info-wrapper > div > div {
    padding-bottom: 1rem;
  }
  #kontakt .contact-address {
    position: static;
    margin-top: 0;
    width: 100vw;
    height: initial;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #kontakt .contact-address .wrapper {
    text-align: left;
  }
  #kontakt #business-hours {
    width: 65vw;
    margin-left: auto;
    margin-right: auto;
  }
  #kontakt #business-hours .business-hours {
    display: block;
  }
  #kontakt #business-hours .business-hours span {
    display: block;
  }
}
@media (min-width: 768px) {
  #kontakt {
    padding-bottom: 3rem;
  }
  #kontakt .contact-info-wrapper {
    display: grid;
  }
  #kontakt h2 {
    font-size: 1.5rem;
  }
  #kontakt h3 {
    font-size: 0.9545454545rem;
    margin-bottom: 0.75rem;
  }
  #kontakt .content-wrapper {
    margin-bottom: 2.25rem;
  }
  #kontakt .contact-address {
    padding: 1rem;
    width: 300px;
    height: 200px;
    position: absolute;
    margin-top: -250px;
    right: 8.75vw;
  }
  #kontakt .contact-address p {
    margin-bottom: 1.5rem;
  }
  #kontakt .content-wrapper.with-business-hours {
    margin-left: auto;
    margin-right: auto;
    width: 65vw;
  }
  #kontakt .content-wrapper.with-business-hours #business-hours {
    width: 50%;
    margin-left: 0;
  }
  #kontakt .content-wrapper.with-business-hours #business-hours div {
    font-size: 0.75rem;
  }
  #kontakt .content-wrapper.with-business-hours #business-hours .business-hours {
    display: grid;
  }
  #kontakt .content-wrapper.with-business-hours #business-hours .business-hours span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  #kontakt h2 {
    font-size: 1.7rem;
  }
  #kontakt h3 {
    font-size: 1.0818181818rem;
    margin-bottom: 0.85rem;
  }
  #kontakt .content-wrapper {
    margin-bottom: 2.55rem;
  }
  #kontakt .contact-address {
    padding: 2rem;
    width: 350px;
    height: 250px;
  }
  #kontakt .contact-address p {
    margin-bottom: 1.5rem;
  }
  #kontakt .content-wrapper.with-business-hours #business-hours div {
    font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  #kontakt .contact-address {
    width: 470px;
    height: 310px;
    padding: 4rem;
    margin-top: -310px;
  }
}
/* -- Preise -- */
#preise {
  background-color: #f7f7f7;
  padding-bottom: 3rem;
}

#preise .shadow-heading {
  color: #ffffff;
}

#preise .wrapper {
  max-width: 75vw;
  width: 75vw;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2%;
  align-items: flex-start;
}

#preise .wrapper table:first-of-type {
  grid-column: 1/2;
  grid-row: 1/3;
}

#preise .wrapper table:nth-of-type(2),
#preise .wrapper table:nth-of-type(3) {
  grid-column: 2/3;
}

#preise tbody tr:first-of-type td {
  padding-top: 1.5rem;
}

#preise table thead th:first-of-type {
  font-size: 1.2727272727rem;
  text-align: left;
}

#preise table.follow-up th {
  color: transparent;
}

#preise tr th:first-of-type,
#preise tr td:first-of-type {
  width: unset;
  text-align: left;
}

#preise tr th {
  vertical-align: top;
}

#preise tr th:nth-of-type(2),
#preise tr th:nth-of-type(3) {
  width: max-content;
  white-space: nowrap;
  text-align: right;
  padding-right: 1rem;
}

#preise tr td:nth-of-type(2),
#preise tr td:nth-of-type(3) {
  width: max-content;
  white-space: nowrap;
  text-align: right;
  padding-left: 0.75rem;
  vertical-align: text-top;
}

#preise .additional-information {
  margin-top: 3rem;
  width: 33vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 319px) {
  #preise {
    font-size: 0.85rem;
  }
}
@media (min-width: 320px) {
  #preise {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  #preise .wrapper table {
    min-width: 100%;
  }
  #preise .wrapper {
    display: block;
  }
  #preise .wrapper .follow-up thead {
    display: none;
  }
  #preise .wrapper #herren {
    margin-top: 3rem;
  }
  #preise .additional-information {
    width: 65vw;
  }
}
/* -- Footer -- */
footer {
  background-color: #1f2121;
  color: #ffffff;
  height: 300px;
  padding-top: 75px;
  padding-bottom: 75px;
}

footer .wrapper {
  max-width: 1200px;
  width: 90vw;
  display: grid;
  grid-template-columns: 20% 30% 30% 16%;
  grid-column-gap: 1%;
  margin-left: auto;
  margin-right: auto;
}

footer h2 {
  font-size: 0.7272727273rem;
}

footer h2 {
  margin-bottom: 1.5rem;
}

footer a:link,
footer a:visited,
footer a:focus,
footer a:hover,
footer a:active {
  color: #ffffff;
}

footer .kontakt-daten {
  display: grid;
  grid-template-columns: 18% 81%;
  grid-column-gap: 1%;
}

footer .oeffnungszeiten-daten {
  display: grid;
  grid-template-columns: 42% 56%;
  grid-column-gap: 1%;
}

footer #reference {
  text-align: center;
  margin-top: 1.5rem;
}
footer #reference div {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 1rem;
}

@media (max-width: 250px) {
  footer .kontakt-daten {
    grid-template-columns: 18% 79%;
    grid-column-gap: 3%;
  }
  footer .oeffnungszeiten-daten {
    display: block;
  }
  footer .oeffnungszeiten-daten span {
    display: block;
  }
}
@media (max-width: 767px) {
  footer {
    height: initial;
    font-size: 1rem;
    padding-top: 37.5px;
    padding-bottom: 1.5rem;
  }
  footer .wrapper {
    display: block;
    width: 80vw;
    margin-left: 17.5vw;
  }
  footer .wrapper section {
    margin-bottom: 1.5rem;
  }
  footer .wrapper section h2 {
    margin-bottom: 0.75rem;
  }
  footer .wrapper section:last-of-type {
    margin-bottom: 0;
  }
  footer div {
    font-size: 0.7272727273rem;
  }
}
@media (min-width: 768px) {
  footer {
    height: 225px;
    padding-top: 56.25px;
  }
  footer div {
    font-size: 0.5454545455rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1024px) {
  footer {
    height: 255px;
    padding-top: 63.75px;
  }
  footer div {
    font-size: 0.7272727273rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  footer div {
    font-size: 0.7272727273rem;
  }
}
/* --- Impressum und Datenschutzerkörung --- */
#imprint-privacy {
  margin-left: 2rem;
  margin-right: 2rem;
  width: 90vw;
  max-width: 800px;
}
#imprint-privacy h1 {
  font-size: 2rem;
  margin-top: calc(66px + 2rem);
}
#imprint-privacy h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
}
#imprint-privacy p {
  margin-bottom: 0.75rem;
}
#imprint-privacy a:link,
#imprint-privacy a:visited,
#imprint-privacy a:focus,
#imprint-privacy a:hover,
#imprint-privacy a:active {
  color: #616363;
  text-decoration: underline;
}
#imprint-privacy .address {
  margin-bottom: 0.75rem;
}
#imprint-privacy .address p {
  margin-bottom: 0;
}

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