@charset "UTF-8";
:root {
  font-size: 1rem;
  --primary: #202020;
  --accent: #b59049;
  --accent-gradient: linear-gradient(to right, #b59049, #a8822f);
  --secondary: #fff;
  --black: #242424;
  --white: #fff;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  font-family: Muli, sans-serif;
  font-display: swap;
  overflow-x: hidden;
  color: var(--primary);
}
::-webkit-scrollbar {
  display: none;
}
html {
  overflow-x: hidden;
}
body {
  padding: 0;
  margin: 0;
  width: 100vw;
  background: url(../img/handmadepaper.png) repeat;
  height: 100%;
}
p {
  font-size: 1.25rem;
  color: var(--primary);
  line-height: 1.5em;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1 {
  font-size: 3rem;
  line-height: 1.1em;
}
h2 {
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.5em;
}
h3 {
  font-size: 2rem;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:focus,
a:hover {
  color: var(--primary);
  text-decoration: none;
}
a:focus {
  outline: 0;
}
i {
  white-space: nowrap;
}
section {
  margin: 3rem 0;
}
.banner {
  padding: 8px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-align: center;
  background-color: red;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  width: 100vw;
}
.headline_container {
  display: -ms-grid;
  display: grid;
  grid-template-areas: ". . .";
  -ms-grid-columns: 1fr 2rem auto 2rem 1fr;
  grid-template-columns: 1fr auto 1fr;
  grid-column-gap: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.line-left {
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(44%, transparent),
    to(var(--accent))
  );
  background: -webkit-linear-gradient(left, transparent 44%, var(--accent));
  background: -o-linear-gradient(left, transparent 44%, var(--accent));
  background: linear-gradient(to right, transparent 44%, var(--accent));
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.line-right {
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(44%, transparent),
    to(var(--accent))
  );
  background: -webkit-linear-gradient(right, transparent 44%, var(--accent));
  background: -o-linear-gradient(right, transparent 44%, var(--accent));
  background: linear-gradient(to left, transparent 44%, var(--accent));
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media screen and (max-width: 380px) {
  p {
    font-size: 1rem;
    line-height: 1.25em;
  }
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.fab,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fa-cogs:before {
  content: "\f085";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-map-marker-alt:before {
  content: "\f3c5";
}
.fa-phone:before {
  content: "\f095";
}
.fa-clock:before {
  content: "\f017";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-calendar-check:before {
  content: "\f274";
}
.fa-chart-line:before {
  content: "\f201";
}
.fa-user:before {
  content: "\f007";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-heart:before {
  content: "\f004";
}
.fa-people-carry:before {
  content: "\f4ce";
}
.fa-paste:before {
  content: "\f0ea";
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url(../webfonts/fa-brands-400.eot);
  src: url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-brands-400.woff2) format("woff2"),
    url(../webfonts/fa-brands-400.woff) format("woff"),
    url(../webfonts/fa-brands-400.ttf) format("truetype"),
    url(../webfonts/fa-brands-400.svg#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url(../webfonts/fa-solid-900.eot);
  src: url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-solid-900.woff2) format("woff2"),
    url(../webfonts/fa-solid-900.woff) format("woff"),
    url(../webfonts/fa-solid-900.ttf) format("truetype"),
    url(../webfonts/fa-solid-900.svg#fontawesome) format("svg");
}
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.navbar_top {
  background-color: transparent;
  position: fixed;
  height: 75px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr 1fr;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-areas: "logo menu burger";
  z-index: 1001;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.navbar_top .logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  display: -ms-grid;
  display: grid;
  margin: auto 0 auto 5vw;
}
.logo_headline {
  font-family: Muli, sans-serif;
  font-size: 1.5rem;
  margin: auto 0 auto 0.4rem;
  color: var(--accent);
}
.navbar_top.nav_onscroll {
  background: url(../img/handmadepaper.png) repeat;
}
.onpagenav {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: menu;
  text-align: center;
  margin: auto 0 auto 0;
  padding: 0;
}
.onpagenav li {
  text-decoration: none;
  list-style-type: none;
  display: inline;
  margin: 0;
  font-size: 1.2rem;
  color: var(--accent);
}
.onpagenav li a {
  padding: 0 0.7rem;
}
.onpagenav .bar-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.onpagenav .bar-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.reservation_button {
  color: var(--accent);
  background: 0 0;
  border-width: 1px;
  border-style: solid;
  border-color: var(--accent);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 15px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
  text-align: center;
  font-size: 1.2rem;
  margin: auto 5vw auto 0;
  padding: 0.5rem;
  grid-area: burger;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.reservation_button:focus,
.reservation_button:hover {
  color: var(--secondary);
  background: var(--accent-gradient);
  border-color: var(--accent);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.reservation_button.focus {
  text-decoration: none;
}
@media screen and (max-width: 1520px) {
  .navbar_top {
    grid-template-areas: "logo menu burger";
  }
  .onpagenav {
    text-align: right;
    margin: auto 5vmin auto 0;
  }
}
@media screen and (max-width: 1100px) {
  .navbar_top {
    -ms-grid-columns: -webkit-max-content 2fr 1fr;
    -ms-grid-columns: max-content 2fr 1fr;
    grid-template-columns: -webkit-max-content 2fr 1fr;
    grid-template-columns: max-content 2fr 1fr;
  }
  .navbar_top .logo_headline {
    display: none;
  }
  .navbar_top .logo img {
    height: 5vmin;
  }
}
@media screen and (min-width: 950px) {
  .navbar {
    display: none;
  }
  .menu_overlay {
    display: none;
  }
}
@media screen and (max-width: 950px) {
  .navbar_top {
    display: none;
  }
  .navbar {
    background-color: transparent;
    position: fixed;
    height: 75px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 4fr 1fr;
    grid-template-columns: 4fr 1fr;
    grid-template-areas: "logo menu";
    z-index: 1001;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  }
  .navbar.nav_onscroll-mobile {
    background: url(../img/handmadepaper.png) repeat;
  }
  .navbar .logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: logo;
    display: -ms-grid;
    display: grid;
    margin: auto 0 auto 0;
  }
  .navbar ..logo_headline {
    font-family: Muli, sans-serif;
    font-size: 1.5rem;
    margin: auto 0 auto 25px;
    color: var(--accent);
  }
  .navbar.nav_onscroll-mobile .logo {
    margin: auto 0 auto 5vw;
  }
  .burger-menu {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: menu;
    -ms-grid-column-align: right;
    justify-self: right;
    width: 40px;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    height: 40px;
    margin: 1.25rem 75px 1rem 0;
    grid-area: menu;
  }
  .burger-menu .bar {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 3px;
    width: 100%;
    border-radius: 5px;
    display: block;
    background-color: var(--accent);
  }
  .navbar.nav_onscroll-mobile .burger-menu .bar {
    border-radius: 5px;
  }
  .burger-menu .bar:nth-of-type(2) {
    margin: 12px 0;
    border-radius: 5px;
  }
  .burger-menu--closed {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .burger-menu--closed .bar {
    float: right;
    border-radius: 5px;
  }
  .burger-menu--closed .bar:nth-of-type(2) {
    width: 75%;
    -webkit-transition-property: margin, height, width;
    -o-transition-property: margin, height, width;
    transition-property: margin, height, width;
    -webkit-transition-delay: 0.3s, 0.3s, 0s;
    -o-transition-delay: 0.3s, 0.3s, 0s;
    transition-delay: 0.3s, 0.3s, 0s;
    border-radius: 5px;
  }
  .burger-menu--closed .bar:nth-of-type(3) {
    width: 50%;
    border-radius: 5px;
  }
  .burger-menu--closed:hover .bar:nth-of-type(2) {
    width: 100%;
    border-radius: 5px;
  }
  .burger-menu--closed:hover .bar:nth-of-type(3) {
    width: 100%;
    border-radius: 5px;
  }
  .burger-menu--opened {
    padding-top: 12px;
  }
  .burger-menu--opened .bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    height: 3px;
  }
  .burger-menu--opened .bar:nth-of-type(2) {
    opacity: 0;
    height: 0;
    margin: -3px;
  }
  .burger-menu--opened .bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    height: 3px;
  }
  .menu_overlay {
    background-color: rgba(34, 35, 36, 0.95);
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    text-align: right;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in 0.4s;
    -o-transition: all 0.4s ease-in 0.4s;
    transition: all 0.4s ease-in 0.4s;
    visibility: hidden;
  }
  .menu_overlay.menu--opened {
    background: rgba(34, 35, 36, 0.99);
    visibility: visible;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .menu_overlay .on_page_nav {
    margin: 125px 75px 0 0;
    padding: 0;
  }
  .menu_overlay .off_page_nav {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 75px 50px 0;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .menu_overlay .off_page_nav p {
    color: var(--white);
    margin-right: 25px;
    text-align: right;
    font-size: 1.5rem;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transform: translate3d(0, 1.25rem, 0);
    transform: translate3d(0, 1.25rem, 0);
  }
  .menu_overlay .off_page_nav li {
    display: inline;
    margin: 0 2rem;
  }
  .nav_menu_link {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 3rem;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  }
  .link_divider {
    position: relative;
  }
  .link_divider:before {
    position: absolute;
    top: 50%;
    right: -2.5rem;
    width: 2.1875rem;
    height: 0.0625rem;
    background: rgba(255, 255, 255, 0);
    content: " ";
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  }
  .link_divider[href]:hover:before {
    right: 0;
    background: var(--white);
  }
  .link_divider:hover {
    opacity: 1;
    padding-right: 2.5rem;
  }
  .link_divider[href]:focus,
  .link_divider[href]:hover {
    color: var(--accent);
  }
  .link_divider:focus,
  .link_divider:hover {
    color: var(--accent);
  }
  .menu_overlay .nav_menu_item {
    opacity: 0;
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transform: translate3d(0, 1.25rem, 0);
    transform: translate3d(0, 1.25rem, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item {
    opacity: 1;
  }
  .menu_overlay.menu--opened .nav_menu_item {
    opacity: 1;
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(1) {
    -webkit-transition: all 0.6s 0.1s ease-out;
    -o-transition: all 0.6s 0.1s ease-out;
    transition: all 0.6s 0.1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(2) {
    -webkit-transition: all 0.6s 0.2s ease-out;
    -o-transition: all 0.6s 0.2s ease-out;
    transition: all 0.6s 0.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(3) {
    -webkit-transition: all 0.6s 0.3s ease-out;
    -o-transition: all 0.6s 0.3s ease-out;
    transition: all 0.6s 0.3s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(4) {
    -webkit-transition: all 0.6s 0.4s ease-out;
    -o-transition: all 0.6s 0.4s ease-out;
    transition: all 0.6s 0.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(5) {
    -webkit-transition: all 0.6s 0.5s ease-out;
    -o-transition: all 0.6s 0.5s ease-out;
    transition: all 0.6s 0.5s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(6) {
    -webkit-transition: all 0.6s 0.6s ease-out;
    -o-transition: all 0.6s 0.6s ease-out;
    transition: all 0.6s 0.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .menu_overlay.menu--opened .nav_menu_item:nth-child(7) {
    -webkit-transition: all 0.6s 0.7s ease-out;
    -o-transition: all 0.6s 0.7s ease-out;
    transition: all 0.6s 0.7s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (min-width: 800px) {
  .navbar .logo_headline {
    margin: auto 0 auto 10vw;
  }
}
@media screen and (max-width: 740px) {
  .navbar .logo_headline {
    margin: auto 0 auto 25px;
  }
  .burger-menu {
    width: 40px;
    height: 40px;
    margin: 1.25rem 25px 1rem 0;
    grid-area: menu;
  }
  .menu_overlay {
    margin-right: 25px;
  }
  .nav_menu_link {
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 370px) {
  .navbar .logo_headline {
    font-size: 1.5rem;
  }
}
#home {
  margin: 0;
  width: 100vw;
}
.header_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(0, 55vmin) 1fr;
  grid-template-columns: 1fr minmax(0, 55vmin) 1fr;
  grid-template-areas: ". content .";
  height: 100vh;
}
.header_content {
  display: -ms-grid;
  display: grid;
  grid-area: content;
  grid-template-areas: "headline" "subheadline" "button" "scroll";
  -ms-grid-rows: auto max-content auto auto;
  grid-template-rows: auto -webkit-max-content auto auto;
  grid-template-rows: auto max-content auto auto;
}
.header_content h2 {
  grid-area: headline;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  text-align: center;
  font-size: 4rem;
  color: var(--accent);
  margin: 0;
}
.header_content p {
  grid-area: subheadline;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  text-align: center;
  font-size: 1.5rem;
}
.header_content span {
  font-weight: 700;
}
.two-part-button {
  grid-area: button;
  border: 2px solid var(--accent);
  border-radius: 10px;
  height: 40px;
  color: var(--accent);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: top;
  -ms-grid-row-align: top;
  align-self: top;
  padding-right: 2rem;
  margin-top: 4rem;
}
.two-part-button:hover {
  color: var(--white);
}
.two-part-button:hover::after {
  width: 100%;
}
.two-part-button::after {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 0;
  height: 0;
  background-color: transparent easeInOutSine;
  display: block;
  content: " ";
  position: absolute;
  border-style: solid;
  border-width: 40px 10px 0 0;
  border-color: var(--accent) transparent transparent transparent;
  z-index: -1;
}
.call-to-action {
  height: 40px;
  display: inline-block;
  background-color: var(--accent);
  color: var(--black);
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
  float: left;
}
.call-to-action::after {
  width: 0;
  height: 0;
  content: " ";
  border-style: solid;
  border-width: 40px 10px 0 0;
  border-color: var(--accent) transparent transparent transparent;
  position: absolute;
  top: 0;
  right: -10px;
}
.description {
  height: 40px;
  display: inline-block;
  float: left;
  line-height: 40px;
  padding: 0;
  font-size: 1.5rem;
  margin-left: 10px;
}
.scroll_down {
  grid-area: scroll;
}
.scroll_down a {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: scrollbutton 2s infinite;
  animation: scrollbutton 2s infinite;
  box-sizing: border-box;
  -webkit-box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.5);
}
.scroll_down a span {
  width: 24px;
  height: 24px;
}
@-webkit-keyframes scrollbutton {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes scrollbutton {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
  }
}
.male {
  background: url(../img/Logo_male_v3.svg) no-repeat;
  background-position: right;
  position: absolute;
  height: 70vw;
  max-height: 120vh;
  width: 100%;
  left: 0;
  top: -10%;
  pointer-events: none;
  z-index: -1;
}
.female {
  background: url(../img/Logo_female_v3.svg) no-repeat;
  background-position: left;
  position: absolute;
  height: 65vw;
  max-height: 110vh;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1150px) {
  .male {
    top: -5%;
  }
}
@media screen and (max-width: 1050px) {
  .male {
    display: none;
  }
  .female {
    display: none;
  }
  .header_container {
    -ms-grid-columns: 1fr minmax(0, 800px) 1fr;
    grid-template-columns: 1fr minmax(0, 800px) 1fr;
  }
}
@media screen and (max-width: 600px) {
  .header_content h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 380px) {
  .description {
    font-size: 1rem;
  }
}
@media screen and (max-width: 350px) {
  .header_content h2 {
    font-size: 2rem;
  }
}
.service_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-areas: ". content .";
  min-height: 100%;
}
.service_content {
  grid-area: content;
  width: 100%;
  height: 100%;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-template-areas: "headline" "subheadline" "icons" "pricing";
}
.service_text {
  margin: auto;
}
.pricing {
  border: 6px double var(--accent);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr 1fr 1fr;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-row-gap: 1rem;
  padding: 0 2rem 3rem 2rem;
  margin: 3rem 0;
}
.pricing h3,
.pricing p {
  margin: 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.pricing h3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / span 4;
  margin-top: 2rem;
}
.icon_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin: 3rem 0;
}
.icon {
  -ms-grid-rows: 3fr 1fr;
  grid-template-rows: 3fr 1fr;
}
.icon-one {
  background: url(../img/scissors.svg) no-repeat center;
  background-size: auto 100%;
  height: 70px;
  width: 100%;
}
.icon-two {
  background: url(../img/brush-tool.svg) no-repeat center;
  background-size: auto 100%;
  height: 70px;
  width: 100%;
}
.icon-three {
  background: url(../img/three-bottles-of-hair-salon.svg) no-repeat center;
  background-size: auto 100%;
  height: 70px;
  width: 100%;
}
.icon-four {
  background: url(../img/hairdryer-silhouette-side-view.svg) no-repeat center;
  background-size: auto 100%;
  height: 70px;
  width: 100%;
}
.icon-five {
  background: url(../img/razor-hair-salon-tool.svg) no-repeat center;
  background-size: auto 100%;
  height: 70px;
  width: 100%;
}
.icon_name {
  margin: 1rem 0 0 0;
  border-bottom: var(--accent) solid 2px;
  padding-bottom: 1rem;
  font-size: 1.25rem;
}
.kurz,
.lang,
.mittel {
  -ms-grid-column-align: center;
  justify-self: center;
}
.dotted {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / span 4;
  border-bottom: 2px dotted var(--accent);
}
.name {
  -ms-grid-column: 1;
  grid-column: 1;
}
.kurz {
  -ms-grid-column: 2;
  grid-column: 2;
}
.mittel {
  -ms-grid-column: 3;
  grid-column: 3;
}
.lang {
  -ms-grid-column: 4;
  grid-column: 4;
}
@media screen and (max-width: 1200px) {
  .service_text {
    max-width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .pricing p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 700px) {
  .pricing p {
    font-size: 1rem;
  }
  .pricing {
    -ms-grid-columns: 2fr 1fr 1fr 1fr;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .icon_container {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pricing {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .pricing p {
    font-size: 0.875rem;
  }
}
#counter {
  padding: 0;
}
.counter_background {
  background: url(../img/barber.webp) no-repeat fixed center;
  background-size: cover;
}
.counter_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-areas: ". content .";
  padding: 3rem 0;
  background-color: #202020da;
  height: 100%;
  width: 100%;
}
.counter_subcontainer {
  display: -ms-grid;
  display: grid;
  grid-area: content;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-columns: 1fr 2fr 1fr 2fr 1fr 2fr;
  grid-template-columns: 1fr 2fr 1fr 2fr 1fr 2fr;
  grid-template-areas: "icon1 count1 icon2 count2 icon3 count3";
  color: #fff;
}
.partner_subcontainer {
  display: -ms-grid;
  display: grid;
  grid-area: content;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-columns: 2fr 2fr 2fr;
  grid-template-columns: 2fr 2fr 2fr;
  grid-template-areas: "partner1 partner2 partner3";
  color: #fff;
}
.icon1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.count1 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.icon2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.count2 {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
.icon3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.count3 {
  -ms-grid-row: 1;
  -ms-grid-column: 6;
}
.partner1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.partner2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.partner3 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.icon {
  -ms-grid-column-align: center;
  justify-self: center;
  font-size: 4rem;
}
.count p {
  color: var(--white);
  -ms-grid-column-align: center;
  justify-self: center;
}
.counter_number {
  font-size: 3rem;
  margin: 0;
}
.counter_text {
  text-transform: uppercase;
}
.partner_logo {
  padding: 1rem;
  margin: 1rem;
}
.border_right {
  border-right: var(--white) 2px solid;
}
@media screen and (max-width: 1200px) {
  .counter_subcontainer {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "icon1 count1" "icon2 count2" "icon3 count3";
  }
  .partner_subcontainer {
    padding: 2rem;
    -ms-grid-columns: 2fr;
    grid-template-columns: 2fr;
    grid-template-areas: "partner1" "partner2" "partner3";
  }
  .border_right {
    border-right: none;
  }
  .partner_logo {
    padding: 2rem;
    margin: 2rem;
  }
}
.team_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 2rem minmax(300px, 400px) 2rem minmax(300px, 400px) minmax(300px, 400px) 2rem
	  1fr;
	grid-template-columns: 1fr minmax(300px, 400px) minmax(300px, 400px) minmax(300px, 400px) 1fr;
	grid-gap: 2rem;
	-ms-grid-rows: auto 2rem auto 2rem auto;
	grid-template-areas: ". headline headline headline ." ". one two three ." ". four five six .";
	text-align: center;
	margin-bottom: 3rem;
  }
  .team_container h2 {
	grid-area: headline;
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	-ms-grid-column-span: 3;
  }
  .team_container p {
	grid-area: text;
	-ms-grid-row: 3;
	-ms-grid-column: 3;
	-ms-grid-column-span: 3;
	margin: 0 0 1.5rem 0;
  }
  .member_one {
	grid-area: one;
	-ms-grid-row: 5;
	-ms-grid-column: 3;
  }
  .member_two {
	grid-area: two;
	-ms-grid-row: 5;
	-ms-grid-column: 5;
  }
  .member_three {
	grid-area: three;
	-ms-grid-row: 5;
	-ms-grid-column: 5;
  }
  .member_four {
	grid-area: four;
	-ms-grid-row: 5;
	-ms-grid-column: 5;
  }
  .member_five {
	grid-area: five;
	-ms-grid-row: 5;
	-ms-grid-column: 5;
  }
  .member_six {
	grid-area: six;
	-ms-grid-row: 5;
	-ms-grid-column: 5;
  }
  .member {
	display: -ms-grid;
	display: grid;
	padding: 2rem;
	-ms-grid-rows: 190px 45px 45px 1fr;
	grid-template-rows: 190px 45px 45px 1fr;
	grid-template-areas: "img" "name" "profession" "text";
	text-align: center;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	border-radius: 10px;
  }
  .member_img {
	grid-area: img;
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	border-radius: 50%;
	border: var(--accent) solid 3px;
	width: 175px;
	height: 175px;
	margin: 0 auto;
	object-fit: cover;
  }
  .member h3 {
	grid-area: name;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	margin: auto 0;
	font-size: 1.75rem;
	color: var(--accent);
  }
  .member p {
	grid-area: text;
	-ms-grid-row: 4;
	-ms-grid-column: 1;
  }
  @media screen and (max-width: 1200px) {
    .team_container {
      -ms-grid-columns: 1fr 2rem minmax(300px, 400px) minmax(300px, 400px) 2rem 1fr;
      grid-template-columns: 1fr minmax(300px, 400px) minmax(300px, 400px) 1fr;
      -ms-grid-rows: auto 2rem auto 2rem auto 2rem auto 2rem auto 2rem auto;
      grid-template-areas: ". headline headline ." ". text text ." ". hr hr ." ". one two ." ". three four ." ". five six .";
    }
  }
  @media screen and (max-width: 800px) {
	.team_container {
	  -ms-grid-columns: 1fr 2rem minmax(300px, 400px) 2rem 1fr;
	  grid-template-columns: 1fr minmax(300px, 400px) 1fr;
	  -ms-grid-rows: auto 2rem auto 2rem auto 2rem auto 2rem auto 2rem auto 2rem auto 2rem auto 2rem auto;
	  grid-template-areas: ". headline ." ". text ." ". hr ." ". one ." ". two ." ". three ." ". four ." ". five ." ". six .";
	}
	.member {
	  padding: 0;
	  -ms-grid-rows: 190px 45px 45px 1fr;
	  grid-template-rows: 190px 45px 45px 1fr;
	  grid-template-areas: "img" "name" "profession" "text";
	  -webkit-box-shadow: none;
	  box-shadow: none;
	}
  }
#testimonial {
  background: url(../img/pattern.svg) repeat;
}
.testimonial_container {
  display: -ms-grid;
  display: grid;
  grid-template-areas: ". content .";
  -ms-grid-columns: 1fr minmax(0, 1250px) 1fr;
  grid-template-columns: 1fr minmax(0, 1250px) 1fr;
  justify-items: center;
}
.testimonial_container .header_container {
  grid-area: headline;
}
.testimonial_content {
  grid-area: content;
  max-width: 800px;
}
.testimonial_carousel {
  border-radius: 500px;
  padding: 2rem 4rem;
  background-color: #b58f4956;
}
.customer {
  text-align: center;
}
.blockquote {
  font-size: 3rem;
  color: var(--accent);
}
.customer_name {
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 850px) {
  .testimonial_content {
    max-width: 90%;
  }
}
@media screen and (max-width: 650px) {
  .testimonial_carousel {
    padding: 4rem 2rem;
  }
}
.call_to_action_bottom {
  height: 75px;
  background-color: var(--accent);
  display: -ms-grid;
  display: grid;
}
.call_to_action_container {
  color: var(--white);
  display: -ms-grid;
  display: grid;
  grid-template-areas: ". text button .";
  -ms-grid-columns: 1fr minmax(0, 600px) minmax(0, 600px) 1fr;
  grid-template-columns: 1fr minmax(0, 600px) minmax(0, 600px) 1fr;
}
.call_to_action_container p {
  grid-area: text;
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: start;
  justify-self: start;
}
.call_to_action_container p i {
  margin-left: 1rem;
}
.reservation_button_bottom {
  color: var(--white);
  background: 0 0;
  border-width: 1px;
  border-style: solid;
  border-color: var(--white);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 15px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5rem;
  grid-area: button;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.reservation_button_bottom:focus,
.reservation_button_bottom:hover {
  color: var(--accent);
  background: var(--white);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.reservation_button_bottom.focus {
  text-decoration: none;
}
@media screen and (max-width: 1060px) {
  .call_to_action_container {
    grid-template-areas: "text button";
    -ms-grid-columns: minmax(0, 600px) minmax(0, 600px);
    grid-template-columns: minmax(0, 600px) minmax(0, 600px);
  }
  .call_to_action_container p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .call_to_action_container p {
    font-size: 1rem;
  }
}
#contact {
  padding: 0;
  margin: 0;
}
.contact_container {
  background: var(--primary);
  color: var(--white);
  padding: 0 0 50px 0;
  display: -ms-grid;
  display: grid;
  grid-template-areas: ". headline headline ." ". hr hr ." ". form address .";
  -ms-grid-columns: 1fr 2rem minmax(400px, 600px) 2rem minmax(400px, 600px) 2rem
    1fr;
  grid-template-columns: 1fr minmax(400px, 600px) minmax(400px, 600px) 1fr;
  grid-column-gap: 2rem;
}
.contact_container h2 {
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  grid-area: headline;
}
.contact_container h2 span {
  color: var(--accent);
}
.contact_container hr {
  margin-bottom: 30px;
  grid-area: hr;
  border-width: 1px;
  width: 100%;
  border-style: inset;
  border-color: var(--accent);
}
.contact_form {
  grid-area: form;
  min-height: 480px;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "label" "name" "label" "phone" "label" "email" "label" "message" "submit";
}
.contact_form label {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.contact_form .form_input {
  background: 0 0;
  border-radius: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 1rem;
  color: var(--white);
  border: 1px solid var(--accent);
}
.contact_form .form_textarea {
  background: 0 0;
  border-radius: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 1rem;
  padding-top: 1rem;
  color: var(--white);
  font-family: Muli, sans-serif;
  border: 1px solid var(--accent);
}
.contact_form .form_submit {
  border-radius: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--white);
  font-weight: 700;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 1rem;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent);
}
.contact_form .form_submit:hover {
  background: 0 0;
}
.address {
  grid-area: address;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "address" "hr" "social" "essentials";
}
address {
  font-style: normal;
}
.contact_info {
  color: var(--white);
  font-size: 1rem;
}
.address_title {
  font-weight: 700;
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 0;
}
.address hr {
  margin-bottom: 1rem;
  grid-area: hr;
  border-width: 1px;
  width: 100%;
  height: 0;
  border-style: inset;
  border-color: var(--accent);
}
.address i {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.75rem;
  width: 24px;
}
.address a {
  color: var(--white);
}
address a:after {
  content: "";
  display: block;
  margin-top: 0.3125rem;
  height: 0.125rem;
  width: 0;
  margin: 5px 0 0 48px;
  background: 0 0;
  -webkit-transition: width 0.5s ease, background-color 0.5s ease;
  -o-transition: width 0.5s ease, background-color 0.5s ease;
  transition: width 0.5s ease, background-color 0.5s ease;
}
address a:hover:after {
  width: 170px;
  background: var(--accent);
}
.social a i {
  margin-bottom: 1rem;
}
.social a i:hover {
  -webkit-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  color: var(--accent);
}
.social p {
  color: var(--white);
  margin: 0;
}
.essentials {
  grid-area: essentials;
  color: var(--white);
  font-size: 0.75rem;
  margin: 0;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.essentials a {
  color: var(--white);
  font-size: 0.75rem;
}
@media screen and (max-width: 1200px) {
  .contact_container {
    -ms-grid-columns: 1rem 1fr 1fr 1rem;
    grid-template-columns: 1rem 1fr 1fr 1rem;
  }
}
@media screen and (max-width: 900px) {
  .contact_container {
    grid-template-areas: ". headline ." ". hr ." ". form ." ". address .";
    -ms-grid-columns: 0 1fr 0;
    grid-template-columns: 0 1fr 0;
  }
  .address {
    margin-top: 2rem;
  }
}
.copyright {
  padding: 0.5rem 0 0.5rem 0;
  text-align: center;
}
.copyright p {
  color: var(--primary);
  font-size: 1rem;
}
::-moz-selection {
  color: var(--white);
  text-shadow: none;
  background: var(--accent);
}
::selection {
  color: var(--white);
  text-shadow: none;
  background: var(--accent);
}
:active,
:focus {
  outline: 0;
}
/* SEO MENU */
.menu-seo-seitenleiste-container {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  width: 200px !important;
  z-index: 9999999999999999;
}

*[id^="menu-seo-seitenleiste"] {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

*[id^="menu-seo-seitenleiste"] > li {
  height: 44px !important;
  background-color: #b59049 !important;
  margin: 0px 0px 2px 0px !important;
  list-style: none !important;
}

*[id^="menu-seo-seitenleiste"] > li:last-child {
  margin-bottom: 0px !important;
}

*[id^="menu-seo-seitenleiste"] > li > a {
  width: 100% !important;
  height: 100% !important;
  float: left !important;
  color: #000000 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding: 9px 0px 9px 18px !important;
  font-size: 12px !important;
  line-height: 0 !important;
}

*[id^="menu-seo-seitenleiste"] > li > a:hover {
  color: #000000 !important;
}

@media only screen and (max-width: 1200px) {
  .menu-seo-seitenleiste-container {
    display: none;
  }
}

/* SEO PAGES */
.seo-wrapper,
.seo-row {
  width: 100%;
}

.seo-wrapper {
  max-width: 1300px;
  margin: auto;
}

.seo-row {
  display: flex;
  margin-bottom: 80px;
}

.seo-row:last-child {
  margin-bottom: 0px;
}

.seo-column {
  width: 50%;
  max-height: 100%;
  float: left;
  flex: 1;
  position: relative;
}

.seo-image-inner-left {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 80%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.seo-image-inner-right {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.seo-text {
  background-color: #b59049;
}

.seo-text-inner,
.seo-text-inner > p,
.seo-text-inner > h3 {
  color: #000000 !important;
}

.seo-text-inner,
.seo-text-inner > p {
  font-size: 16px !important;
  line-height: 24px !important;
}

.seo-text-inner > h3 {
  font-size: 26px !important;
  line-height: 30px !important;
  margin: 0px 0px 14px 0px !important;
}

.seo-text-inner {
  padding: 60px;
  box-sizing: border-box;
}

@media only screen and (max-width: 1200px) {
  .seo-row {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .seo-column {
    width: 100%;
    min-height: 400px;
    flex: 0 0 100%;
  }

  .seo-row:nth-child(odd) > .seo-column:first-child {
    order: 2;
  }

  .seo-row:nth-child(odd) > .seo-column:last-child {
    order: 1;
  }

  .seo-text-inner {
    padding: 32px;
  }

  .seo-image-inner-left {
    height: 100%;
  }

  .seo-text-inner > h3 {
    font-size: 24px !important;
  }

  .seo-text-inner,
  .seo-text-inner > p {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}
.seo-text-inner a {
	text-decoration: underline;
}