
/* lovers-quarrel-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lovers Quarrel";
  font-style: normal;
  font-weight: 400;
  src: url("./../fonts/lovers-quarrel-v21-latin-regular.woff2") format("woff2"),
    url("./../fonts/lovers-quarrel-v21-latin-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: url("./../fonts/montserrat-v25-latin-100.woff2") format("woff2"),
    url("./../fonts/montserrat-v25-latin-100.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("./../fonts/montserrat-v25-latin-regular.woff2") format("woff2"),
    url("./../fonts/montserrat-v25-latin-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("./../fonts/montserrat-v25-latin-500.woff2") format("woff2"),
    url("./../fonts/montserrat-v25-latin-500.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/*color average: #63502c, gold light: #d2b66a, gold dark: #c7ad72*/
:root {
  --goldBg:#c7ad72;
  --goldLight: #d2b66a;
  --white: #fff;
}

/**/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #555;
  color: var(--white);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-transform: uppercase;
}

#myBtn:hover {
  opacity: var(--opacity);
}

.reveal-fade {
  position: relative;
  opacity: 0;
  transition: 1s all ease;
}

.reveal-fade.active-fade {
  opacity: 1;
}

/**/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: 0.5s;
  flex-wrap: wrap;
  font-family: "Montserrat", sans-serif;
}

span {
  font-size: 20px;
}

.social_left {
  width: 60px;
  height: 100%;
  position: fixed;
  text-align: center;
  background-color: var(--goldBg);
  background-color: -moz-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  background-color: -webkit-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  background-color: linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c7ad72",endColorstr="#d2b66a",GradientType=1);
  z-index: 99;
}

.social_left i {
  color: var(--white);
  font-size: 40px;
  margin-top: 20px;
}

.social_left .fa {
  margin-top: 200px;
}

.social_left i:hover {
  opacity: 50%;
}

/**/
#sidebarMenu {
  height: 100%;
  position: fixed;
  left: 60px;
  width: 250px;
  transform: translateX(-310px);
  transition: transform 0.5s ease-in-out;
  background-color: var(--goldBg);
  background-color: -moz-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  background-color: -webkit-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  background-color: linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c7ad72",endColorstr="#d2b66a",GradientType=1);
  z-index: 999;
}

.sidebarMenuInner {
  margin: 0;
  padding: 0;
}

.sidebarMenuInner li {
  list-style: none;
  padding: 20px;
  cursor: pointer;
}

.sidebarMenuInner li a:hover {
  opacity: 50%;
}

.sidebarMenuInner li .fa-solid {
  font-size: 24px;
}

#sidebarMenu .head_logo {
  width: 100%;
  height: auto;
  text-align: center;
}

#sidebarMenu .head_logo img {
  width: 50px;
  height: auto;
  padding: 20px 0;
}

#sidebarMenu .head_logo p {
  margin: 0 auto 50px auto;
  color: var(--white);
  text-align: center;
  font-size: 12px;
  position: relative;
  max-width: 170px;
}

#sidebarMenu .head_logo p::before {
  content: "";
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--white);
  left: 0;
  top: 50%;
  position: absolute;
}

#sidebarMenu .head_logo p::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--white);
  right: 0;
  top: 50%;
  position: absolute;
}

.sidebarMenuInner li a {
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type="checkbox"] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 20px;
  left: 15px;
  height: 30px;
  width: 30px;
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--white);
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 7px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 7px;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 12px;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -13px;
}

/**/
header {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_logo img {
  position: absolute;
  right: 50px;
  top: 20px;
  width: 100px;
  height: auto;
}

header .header_frame {
  position: relative;
  width: 850px;
  height: 550px;
  border: 20px solid var(--goldBg);
  color: -moz-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  color: -webkit-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  color: linear-gradient(0deg, rgb(199, 173, 114) 0%, rgb(210, 182, 106) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c7ad72",endColorstr="#d2b66a",GradientType=1);
  margin: -250px -400px 0 0;
  z-index: 1;
  display: flex;
  align-items: center;
}

header .header_frame_child {
  position: absolute;
  left: 10px;
  width: 830px;
  height: 530px;
  border: 1px solid var(--goldBg);
  color: -moz-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  color: -webkit-linear-gradient(
    0deg,
    rgb(199, 173, 114) 0%,
    rgb(210, 182, 106) 100%
  );
  color: linear-gradient(0deg, rgb(199, 173, 114) 0%, rgb(210, 182, 106) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c7ad72",endColorstr="#d2b66a",GradientType=1);
}

header .header_frame_content {
  width: 400px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  margin-left: 35px;
  text-align: center;
}

header .header_frame_content h2 {
  font-size: 80px;
  font-family: "Lovers Quarrel", sans-serif;
  font-weight: 100;
  transform: rotate(-15deg);
  margin-top: 0;
}

header .header_frame_content h1 {
  font-size: 50px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 350px;
  margin-top: -80px;
}

header .header_frame_content h1::before {
  content: "";
  display: block;
  background-color: var(--goldBg);
  width: 30px;
  height: 2px;
  left: 0;
  top: 55%;
  position: absolute;
}

header .header_frame_content h1::after {
  content: "";
  display: block;
  background-color: var(--goldBg);
  width: 30px;
  height: 2px;
  right: 0;
  top: 55%;
  position: absolute;
}

header .header_frame_content h3 {
  font-size: 26px;
  margin-top: -20px;
}

header .header_frame_content p {
  font-size: 20px;
  margin-top: -30px;
}

.header-Btn {
  width: 200px;
  height: 40px;
  border-left: 5px solid rgba(199, 173, 114, 0.356);
  border-right: 5px solid rgba(199, 173, 114, 0.356);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  z-index: 1;
}

.header-Btn:hover {
  cursor: pointer;
}
.header-Btn:hover a {
  color: var(--white);
}

.header-Btn:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 40px;
  background-color: var(--goldBg);
  will-change: transform;
  transform: scale(0);
  transition: transform 0.2s ease;
  z-index: -1;
}

.header-Btn:hover:after {
  transform: scale(1);
}

.header-Btn a {
  text-decoration: none;
  color: #333;
}

/* .headercontact p {
  width: 170px;
  margin-top: 20px;
}

.headercontact p em {
  font-size: 14px;
} */

header img {
  width: auto;
  height: 80vh;
}

.imgMobile {
  display: none;
}

.mobile_hide {
  margin-top: 30px;
}

/**/
.leaf_break {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leaf_break img {
  width: 300px;
  height: auto;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 50px 100px 100px;
}

.container {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about__content {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.about__content h1 {
  color: var(--goldBg);
  margin-bottom: 10px;
}

.about__content p {
  margin-bottom: 10px;
}

.content_long {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}

.content_card {
  width: 160px;
  height: 200px;
  margin: 20px;
}

.contact_card img {
  width: 50px;
  height: auto;
}

.content_short {
  position: relative;
  max-width: 580px;
  height: auto;
  overflow: hidden;
}

.content_short h1 {
  color: var(--goldBg);
}

.content_short_frame {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 580px;
  height: 500px;
  border: 1px solid var(--goldBg);
}

.content_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 580px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.5490196078);
  transform: translateY(250px);
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_overlay h1 {
  background-color: var(--white);
  color: var(--goldBg);
  padding: 20px;
}

.content_overlay a {
  text-decoration: none;
}

.content_overlay a:hover {
  opacity: 50%;
  transition: 0.5s ease-in-out;
}

.content_short:hover .content_overlay {
  transform: translateY(0px);
}

/*SUBPAGE*/
.header_sub_container {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header_sub_content {
  position: relative;
  width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 20px solid var(--goldBg);
  margin-left: 60px;
}

.header_sub_content img {
  margin-top: -50px;
}

.header_sub_content h1 {
  position: absolute;
  bottom: 0;
  left: -99px;
  z-index: 1;
  font-size: 40px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.568627451);
}

.header_sub_frame {
  position: absolute;
  top: 33px;
  left: -30px;
  width: 600px;
  height: 470px;
  border: 1px solid var(--goldBg);
}

/**/
.sub_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sub_content {
  position: relative;
  max-width: 1200px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--goldBg);
  padding: 50px;
  margin: 20px;
}

.sub_content_card h1 {
  margin: 20px 0 5px 0;
}

.sub_content_makeup_bg {
  max-width: 1200px;
  height: auto;
  background-image: url("./../img/permanent-make-up/col-bg-makeup-75-2.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.sub_content_airbrush_bg {
  max-width: 1200px;
  height: auto;
  background-image: url("./../img/airbrush-brows/col-bg-makeup-75-2_2.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

.sub_content_waxing_bg {
  max-width: 1200px;
  height: auto;
  background-image: url("./../img/waxing/col-bg-waxing-75.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

.sub_content_foot_bg {
  max-width: 1200px;
  height: auto;
  background-image: url("./../img/fusspflege/col-bg-foot-75.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

.sub_content .text_img {
  position: relative;
  width: 300px;
  height: 300px;
  float: right;
  margin: 20px;
}

.sub_content .text_img_frame {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--goldBg);
}

.sub_content .text_img img {
  width: 300px;
  height: auto;
}

.leaf_break {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/**/
.gallery_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery_content {
  max-width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.price_card {
  width: 450px;
  height: auto;
  margin: 20px;
  margin-top: 0;
}

.price_card li {
  list-style: none;
}

.price_card h1 {
  margin: 20px 0 5px 0;
}

/*contact*/
.dreiSchritte_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dreiSchritte_container h1 {
  padding: 20px;
  color: var(--goldBg);
}

.dreiSchritte_content {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.down {
  margin-top: 200px;
}

.middle {
  margin-top: 100px;
}

.dreiSchritte {
  width: 350px;
  min-height: 200px;
  background-color: var(--goldBg);
  padding: 10px;
  color: var(--white);
}

.dreiSchritte i {
  padding: 30px;
  background-color: var(--goldBg);
  border-radius: 50px;
  float: right;
  margin: -40px -40px 0 0;
}

.contact_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_content {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid var(--goldBg);
  padding: 20px;
}

.contact_card_mail {
  width: 1200px;
  height: auto;
}

/*price*/
.open_containetr {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
}

.open_content {
  width: 888px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.price_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
}

.price_content {
  width: 888px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table {
  margin-left: 60px;
}

.price_content h1 {
  color: var(--goldBg);
  margin-bottom: 20px;
}

.tr {
  border-bottom: 1px solid var(--goldBg);
}

.price_title {
  font-size: 22px;
}

/**/
.footer_sub_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--goldBg);
}

.footer_sub_content {
  position: relative;
  max-width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
}

.footer_sub_content p {
  color: var(--white);
}

.footer_sub_content a {
  color: var(--white);
  text-decoration: none;
}

.footer_sub_content a:hover {
  opacity: 50%;
}

/*
.face_animation_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.face_animation_content {
  position: relative;
  width: 1000px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.face_animation_content img {
  width: 544px;
  height: auto;
}

.face_animation_content .animation-child {
  width: 162px;
  height: auto;
}

.face_animation_content .one {
  position: absolute;
  top: 165px;
  left: 448px;
}

.face_animation_content .two {
  position: absolute;
  top: 230px;
  left: 430px;
}

.face_animation_content .three {
  position: absolute;
  top: 368px;
  left: 515px;
}

.face_animation_content .four {
  position: absolute;
  top: 185px;
  right: 232px;
}

.face_animation_content .five {
  position: absolute;
  top: 284px;
  right: 288px;
}*/
/*//////////////////////////////////////////////// 1370 ///////////////////////////////*/
@media screen and (max-width: 1370px) {
  body {
    display: non;
  }
  .face_animation_container {
    display: none;
  }
  header .header_logo img {
    right: 20px;
    top: 50px;
    width: 100px;
  }
  section {
    margin: 75px 0 0 60px;
  }
  .container {
    width: 100%;
    height: auto;
    justify-content: space-around;
  }
  .content_long {
    width: 850px;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .content_card {
    width: 200px;
    height: 200px;
    margin: 20px;
    border: 1px solid var(--goldBg);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .contact_card img {
    width: 75px;
    height: auto;
  }
}
/*///////////////////////////////////////////// 1180 /////////////////////////////*/
@media screen and (max-width: 1180px) {
  body {
    display: non;
  }
  /**/
  header {
    width: 100%;
    height: 100vh;
  }
  header .header_logo img {
    right: 20px;
    top: 0;
    width: 100px;
  }
  header .header_frame {
    width: 500px;
    height: 700px;
    margin: -50px -450px 0 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
  header .header_frame_child {
    position: absolute;
    left: 10px;
    width: 530px;
    height: 680px;
  }
  header .header_frame_content {
    width: 420px;
    height: 500px;
    display: flex;
    flex-direction: column;
    color: var(--goldBg);
    margin-left: 0;
    text-align: center;
  }
  header .header_frame_content h2 {
    font-size: 80px;
    font-family: "Lovers Quarrel", sans-serif;
    font-weight: 100;
    transform: rotate(-15deg);
    margin-bottom: 0;
    color: var(--white);
  }
  header .header_frame_content h1 {
    font-size: 50px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: 350px;
    margin-top: 0;
    color: var(--white);
    text-shadow: 0 10px 20px #000;
  }
  header .header_frame_content h1::before {
    content: "";
    display: block;
    background-color: var(--white);
    width: 30px;
    height: 2px;
    left: 0;
    top: 55%;
    position: absolute;
  }
  header .header_frame_content h1::after {
    content: "";
    display: block;
    background-color: var(--white);
    width: 30px;
    height: 2px;
    right: 0;
    top: 55%;
    position: absolute;
  }
  header .header_frame_content h3 {
    font-size: 26px;
    color: var(--white);
    text-shadow: 0 10px 20px #000;
  }
  header .header_frame_content p {
    font-size: 20px;
    margin-top: 0;
    color: var(--white);
    text-shadow: 0 10px 20px #000;
  }
  .header-Btn {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    z-index: 1;
    background-color: rgba(199, 173, 114, 0.479);
    color: var(--white);
    padding: 5px;
  }
  .header-Btn a {
    color: var(--white);
  }
  .header-Btn:hover {
    cursor: pointer;
  }
  .header-Btn:hover a {
    opacity: 50%;
  }
  .header-Btn:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 40px;
    background-color: rgba(199, 173, 114, 0.479);
    will-change: transform;
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
  }
  .header-Btn:hover:after {
    transform: scale(1);
  }
  /* .headercontact p {
    width: 170px;
    margin-top: 20px;
  }
  .headercontact p {
    font-size: 14px;
  } */
  header img {
    width: auto;
    height: 85vh;
  }
  .footer_container {
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px 30px 50px 0;
  }
}
/*/////////////////////////////////////// 990 ////////////////////////*/
@media screen and (max-width: 900px) {
  body {
    display: non;
  }
  /*SUBPAGE*/
  .header_sub_container {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .header_sub_content {
    position: relative;
    width: 440px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_sub_content h1 {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 1;
    font-size: 30px;
  }
  .header_sub_content p {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
    font-size: 28px;
    font-family: "Great Vibes", sans-serif;
    max-width: 480px;
  }
  .header_sub_frame {
    position: absolute;
    top: 33px;
    left: -30px;
    width: 500px;
    height: 470px;
  }
}
/*////////////////////////////////////////////// 760 ////////////////////////////*/
@media screen and (max-width: 760px) {
  body {
    display: non;
  }
  .leaf_break img {
    width: 200px !important;
    height: auto;
  }
  .social_left {
    display: none;
  }
  .back-to-top {
    bottom: 20px;
    right: 5px;
  }
  .col-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .sidebarIconToggle {
    z-index: 9999;
  }
  #sidebarMenu {
    height: auto;
    position: fixed;
    left: 0;
    width: 100%;
    transform: translateY(-600px);
    transition: transform 0.5s ease-in-out;
    border-left: none;
    z-index: 999;
  }
  .sidebarMenuInner {
    margin-top: -10px;
  }
  .sidebarMenuInner li {
    padding: 15px;
  }
  #sidebarMenu .head_logo img {
    width: 50px;
    height: auto;
    padding: 20px 0 0 0;
  }
  input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateY(0px);
  }
  /**/
  header {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  header .header_logo img {
    right: 20px;
    top: 20px;
    width: 100px;
    height: auto;
    z-index: 1000000000000000000;
  }
  header .header_frame {
    position: absolute;
    width: 100%;
    height: 80vh;
    border: none;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  header .header_frame_child {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 300px;
    height: 530px;
    border: none;
    border-top: 1px solid #ad8b1b;
    border-left: 1px solid #ad8b1b;
  }
  header .header_frame_content {
    width: 90%;
    height: 400px; /*not change*/
    margin-left: 0;
    padding: 0 40px;
  }
  header .header_frame_content h2 {
    font-size: 70px;
    font-weight: 100;
    transform: rotate(-15deg);
    margin-bottom: 0;
    color: #d3a558;
  }
  header .header_frame_content h1 {
    margin: 0 auto;
    font-size: 40px;
    width: 300px;
    color: #d3a558;
    margin-top: -50px;
    text-shadow: none;
  }
  header .header_frame_content h1::before {
    background-color: var(--goldBg);
  }
  header .header_frame_content h1::after {
    background-color: var(--goldBg);
  }
  header .header_frame_content h3 {
    font-size: 24px;
    color: #000000;
    text-shadow: none;
    font-weight: 400;
  }
  header .header_frame_content p {
    font-size: 18px;
    color: #d3a558;
    font-weight: 500;
    margin-top: -60px;
    text-shadow: none;
  }
  header img {
    display: non;
  }
  .img-Mobile {
    display: none;
  }
  .imgMobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .header-Btn {
    display: none;
  }
  /* .headercontact {
    font-size: 12px;
    width: 220px;
    margin-top: 10px;
  } */
  /**/
  section {
    margin: 50px 0;
  }
  .container {
    width: 100%;
  }
  .content_long {
    width: 100%;
  }
  .content_short {
    width: 100%;
  }
  .content_short img {
    width: 100%;
  }
  .col-width {
    padding: 0 10px;
  }
  .content_short_frame {
    position: absolute;
    right: 0;
    top: 0;
    width: 90%;
    height: 90%;
    border: 1px solid var(--goldBg);
    margin: 20px;
  }
  .content_overlay {
    width: 100%;
    height: 50%;
  }
  .content_overlay h1 {
    font-size: 20px;
  }
  /*SUBPAGE*/
  .header_sub_container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .header_sub_content {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    border: none;
  }
  .header_sub_content img {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .header_sub_content h1 {
    position: absolute;
    bottom: 100px;
    left: auto;
    right: auto;
    z-index: 1;
    font-size: 30px;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.6901960784);
    padding: 5px;
  }
  .header_sub_frame {
    position: absolute;
    width: auto;
    height: auto;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  /**/
  .sub_content {
    position: relative;
    max-width: 100%;
    height: auto;
    border: 0;
    padding: 20px;
    margin: 0;
  }
  .sub_content .text_img {
    position: relative;
    width: 100%;
    height: auto;
    float: right;
    margin: 0;
  }
  .sub_content .text_img_frame {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 300px;
    height: 300px;
    border: 1px solid var(--goldBg);
  }
  .sub_content .text_img img {
    width: 100%;
    height: auto;
  }
  /**/
  .gallery_container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery_content {
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .gallery_content img {
    width: 45%;
    height: auto;
    margin: 2px;
  }
  .price_card {
    width: 100%;
    height: auto;
    margin: 0;
    margin-top: 0;
  }
  .price_card h1 {
    font-size: 18px;
  }
  .price_card p {
    font-size: 14px;
  }
  /*contact*/
  .dreiSchritte_content {
    width: 100%;
    height: auto;
  }
  .down {
    margin-top: 0;
  }
  .middle {
    margin-top: 0;
  }
  .dreiSchritte {
    padding: 20px;
    margin: 20px 0;
  }
  .dreiSchritte i {
    float: none;
  }
  .contact_content {
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 20px;
  }
  .contact_card_mail {
    width: 100%;
    height: auto;
  }
  .open_content h1 {
    font-size: 22px;
  }
  .price_content {
    width: 100%;
    height: auto;
  }
  .price_title {
    font-size: 16px;
    font-weight: 500;
  }
  .table {
    margin: 0 20px;
  }
} /*# sourceMappingURL=style.css.map */
