@font-face {
  font-family: Roboto;
  src: url('../fonts/Roboto-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  src: url('../fonts/Roboto-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cormorantgaramond;
  src: url('../fonts/CormorantGaramond-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cormorantgaramond;
  src: url('../fonts/CormorantGaramond-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cormorantgaramond;
  src: url('../fonts/CormorantGaramond-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cormorantgaramond;
  src: url('../fonts/CormorantGaramond-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mrbedfort;
  src: url('../fonts/MrBedfort-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sedgwickavedisplay;
  src: url('../fonts/SedgwickAveDisplay-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-3: #f8faff;
  --font: #4d565b;
  --lines: #88969d;
  --background-2: #eff3fa;
  --button: #4d565b;
  --white: white;
  --background-3-2: #e1e7f3;
  --midnight-blue: #243037;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--background-3);
  color: var(--font);
  font-family: Cormorant Garamond;
  font-size: 25px;
  line-height: 32px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 400;
  line-height: 70px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 37px;
  font-weight: 400;
  line-height: 45px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 400;
  line-height: 40px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Cormorant Garamond;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

a {
  color: var(--lines);
  cursor: pointer;
  text-decoration: none;
}

blockquote {
  border: 1px #000;
  margin-bottom: 10px;
  padding: 10px 20px 10px 0;
  font-size: 35px;
  font-style: italic;
  font-weight: 400;
  line-height: 45px;
}

figcaption {
  text-align: right;
  margin-top: 5px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
}

.top-line {
  border-top: 1px solid var(--lines);
  margin-top: 5px;
  padding-top: 7px;
}

.top-margin {
  position: relative;
}

.top-margin._10-pixels, .top-margin._40-pixels {
  margin-top: 40px;
}

.top-margin._20-pixels {
  margin-top: 20px;
  display: block;
}

.top-margin._30-pixels {
  margin-top: 30px;
}

.top-margin._20-pixels {
  margin-top: 20px;
  position: relative;
}

.top-margin._10-pixels {
  margin-top: 10px;
}

.top-margin._20-pixels {
  margin-top: 20px;
}

.flex-end {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.content-section {
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: none;
  position: relative;
}

.content-section.double {
  background-color: var(--background-2);
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: block;
}

.social-icons {
  padding-top: 25px;
  padding-bottom: 20px;
}

.title {
  color: var(--font);
  letter-spacing: .3px;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.title.white {
  color: #fff;
}

.title.small {
  font-size: 12px;
}

.content-wrapper {
  z-index: 1;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1075px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
  position: relative;
}

.content-wrapper.hero {
  z-index: 200;
  display: block;
  position: absolute;
}

.content-wrapper.wide {
  max-width: 1156px;
}

.h2-big {
  margin-top: 10px;
  font-size: 45px;
  font-style: italic;
  line-height: 55px;
}

.bottom-line {
  z-index: 1;
  border-bottom: 1px solid var(--lines);
  margin-bottom: 50px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.set {
  margin-top: 40px;
}

.social-icon {
  background-color: var(--button);
  border-radius: 50px;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  transition: border .2s, background-color .2s;
}

.social-icon:hover {
  border: 2px solid var(--button);
  background-color: #0000;
}

.social-icon.twittter {
  background-image: url('../images/gorjeo_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 19px;
}

.social-icon.twittter:hover {
  background-image: url('../images/gorjeo.svg');
}

.social-icon.pinterest {
  background-image: url('../images/pinterest.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
}

.social-icon.pinterest:hover {
  background-image: url('../images/pinterest_1.svg');
}

.social-icon.instagram {
  background-image: url('../images/instagram.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-right: 0;
}

.social-icon.instagram:hover {
  background-image: url('../images/instagram-1.svg');
}

.social-icon.facebook {
  background-color: var(--button);
  background-image: url('../images/logo-de-facebook-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 19px;
}

.social-icon.facebook:hover {
  background-color: #0000;
  background-image: url('../images/logo-de-facebook.svg');
}

.social-icon.linkedin {
  background-image: url('../images/logo-linkedin.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 19px;
}

.social-icon.linkedin:hover {
  background-image: url('../images/linkedin.svg');
}

.social-icon.vimeo {
  background-image: url('../images/vimeo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 19px;
}

.social-icon.vimeo:hover {
  background-image: url('../images/vimeo-1.svg');
}

.button {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  letter-spacing: .3px;
  text-transform: uppercase;
  min-width: 185px;
  min-height: 42px;
  padding: 15px 28px 11px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  transition: color .2s, background-color .2s;
}

.button:hover {
  color: #fff;
  background-color: #424a4e;
}

.inner-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

.slider {
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-section {
  z-index: 1;
  height: 100vh;
  display: block;
  position: relative;
}

.absolute {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.absolute.slide-1 {
  background-image: url('../images/jonathan-borba-P95L1AIVay8-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  display: none;
}

.absolute.slide-2 {
  background-image: url('../images/jonathan-borba-Zm1_H161mbc-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute.slide-3 {
  background-image: url('../images/sweet-ice-cream-photography-vVyzufditLQ-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute.guy {
  background-image: url('../images/1.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80%;
}

.absolute.couple {
  background-image: url('../images/jonathan-borba-mvasDnG41is-unsplash.jpg');
}

.absolute.girl {
  background-image: url('../images/jacob-le-WRxSPB1s4_Q-unsplash.jpg');
}

.absolute.hand {
  background-image: url('../images/sweet-ice-cream-photography-RhNf2dce3aM-unsplash.jpg');
}

.absolute.horse {
  background-image: url('../images/fikry-anshor-tNhsb1k1jkE-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute.picture {
  background-image: url('../images/1-1.jpeg');
  height: 100%;
}

.absolute.picture-2 {
  background-image: url('../images/2.jpeg');
  height: 100%;
}

.absolute.picture-4 {
  background-image: url('../images/4.jpeg');
  height: 100%;
}

.absolute.picture-3 {
  background-image: url('../images/3.jpeg');
  height: 100%;
}

.absolute.picture-5 {
  background-image: url('../images/5.jpeg');
  height: 100%;
}

.absolute.picture-6 {
  background-image: url('../images/6.jpeg');
  height: 100%;
}

.whtie {
  color: #fff;
  font-family: Cormorant Garamond;
  font-weight: 400;
}

.italicized {
  font-style: italic;
}

.center-content {
  text-align: center;
  flex: 1;
}

.hero-flex {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 850px;
  display: flex;
}

.overlay {
  z-index: 3;
  background-color: #0000004d;
  display: block;
  position: absolute;
  inset: 0%;
}

.heading-box {
  text-align: center;
  width: 66%;
  max-width: 634px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  flex-wrap: wrap;
  display: flex;
}

.intro-feature {
  border-bottom: 1px solid var(--font);
  text-align: center;
  width: 100%;
  margin-right: 1px;
  padding: 35px 30px;
}

.intro-feature._3 {
  border-bottom-width: 0;
  border-right-style: none;
}

.button-2 {
  border: 1px solid var(--button);
  color: var(--button);
  text-align: center;
  letter-spacing: .3px;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 25px;
  min-width: 135px;
  min-height: 39px;
  padding: 14px 28px 11px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  transition: color .2s, background-color .2s;
}

.button-2:hover {
  color: #fff;
  background-color: #424a4e;
}

.button-2.white {
  border-color: var(--white);
  color: var(--white);
}

.button-2.white:hover {
  color: var(--button);
  background-color: #fff;
}

.less-line-height {
  text-align: justify;
  font-family: Cormorantgaramond, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 34px;
}

.content-section-2 {
  background-color: var(--background-2);
  padding-bottom: 100px;
  display: none;
  position: relative;
}

.image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.absolute-bg {
  background-color: var(--background-3-2);
  display: none;
  position: absolute;
  inset: 0%;
}

.text-container {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding: 45px 40px;
  display: flex;
}

.bottom-line-box {
  border-top: 1px solid var(--lines);
  border-bottom: 1px solid var(--lines);
  padding: 15px 5px;
  display: flex;
}

.right-border {
  margin-right: 12px;
}

.left-column {
  width: 50%;
  padding-right: 40px;
}

.left-column.with-text {
  padding-left: 40px;
  padding-right: 0;
}

.right-column {
  width: 50%;
  font-family: Cormorantgaramond, sans-serif;
}

.position-sticky {
  position: sticky;
  top: 80px;
}

.bottom-border {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.h3-big {
  margin-top: 10px;
  font-size: 60px;
  line-height: 70px;
}

.lightbox-link {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.flex-space {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.mini-feature {
  border-right: 1px solid var(--lines);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.33%;
  padding: 10px;
  display: flex;
}

.mini-feature.last {
  border-right-style: none;
}

.content-section-3 {
  background-color: var(--background-2);
  position: relative;
}

.newsletter-left {
  width: 50%;
  padding-top: 135px;
  padding-bottom: 135px;
  position: relative;
  overflow: hidden;
}

.newsletter-right {
  align-items: center;
  width: 50%;
  max-width: 515px;
  padding: 100px 20px 100px 40px;
  display: flex;
}

.text-field {
  border-style: solid none solid solid;
  border-width: 1px;
  border-color: var(--button);
  text-transform: uppercase;
  background-color: #0000;
  width: 33.33%;
  height: 50px;
  padding-top: 11px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.text-field:focus {
  color: var(--font);
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.text-field::placeholder {
  color: var(--button);
}

.text-field.login {
  border-right-style: solid;
  width: 100%;
}

.form {
  flex-wrap: wrap;
  display: flex;
}

.submit-button {
  background-color: var(--button);
  color: #fff;
  text-align: center;
  letter-spacing: .3px;
  text-transform: uppercase;
  width: 33.33%;
  height: 50px;
  padding: 15px 28px 11px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  transition: color .2s, background-color .2s;
}

.submit-button:hover {
  color: #fff;
  background-color: #424a4e;
}

.submit-button.white {
  background-color: var(--white);
  color: var(--lines);
}

.submit-button.white:hover {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: #0000;
}

.features-column {
  border-radius: 0;
  width: 33.333%;
  padding: 30px;
  position: relative;
}

.features-column.no-line {
  border-right-style: none;
}

.feature {
  text-align: center;
  margin-bottom: 60px;
}

.feature.no-margin {
  margin-bottom: 0;
}

.content-section-4 {
  background-color: var(--background-2);
  padding-top: 90px;
  padding-bottom: 90px;
  font-family: Cormorantgaramond, sans-serif;
  position: relative;
}

.content-section-4.form {
  background-color: var(--lines);
}

.numbers-left {
  border-right: 1px solid var(--lines);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 62px;
  margin-right: 50px;
  display: flex;
}

.numbers-right {
  flex: 1;
  margin-top: 25px;
  margin-bottom: 25px;
}

.text-block {
  font-family: Roboto, sans-serif;
  font-size: 40px;
  line-height: 40px;
}

.numbers-item {
  width: 50%;
  padding-right: 40px;
}

.numbers-container {
  border-bottom: 1px solid var(--lines);
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 20px;
  display: flex;
}

.numbers-container.no-margin {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vertical-text {
  position: relative;
  left: -10px;
  transform: rotate(-90deg);
}

.full-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.narrow-wrapper {
  width: 89%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  border-width: 1px;
  border-color: var(--lines);
  text-align: center;
  border-bottom-style: solid;
  border-left-style: none;
  border-right-style: none;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding: 50px 25px;
  display: flex;
}

.testimonial._2, .testimonial._4 {
  flex-direction: column;
}

.testimonial._5 {
  border-bottom-style: solid;
}

.testimonial._6 {
  flex-direction: column;
}

.star {
  margin-right: 4px;
}

.testimonial-column {
  border-top: 1px solid var(--lines);
  border-left: 1px solid var(--lines);
  flex-direction: column;
  justify-content: space-between;
  width: 33.333%;
  display: flex;
}

.testimonial-column._3 {
  border-right: 1px solid var(--lines);
}

.overflow-hidden {
  width: 100%;
  min-width: auto;
  margin-top: 3px;
  overflow: hidden;
}

.open-close-box {
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  height: 28px;
  margin-top: 20px;
  margin-right: 15px;
  display: flex;
  position: relative;
}

.accordion-wrapper {
  border-bottom: 1px solid var(--lines);
  margin-bottom: 15px;
}

.accordion-item-trigger {
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 5px;
  padding-left: 22px;
  padding-right: 5px;
  text-decoration: none;
  display: flex;
}

.accordion-item-trigger:hover {
  text-decoration: none;
}

.flex-no-wrap {
  flex-wrap: nowrap;
  display: flex;
}

.full-width {
  flex: 1;
}

.accordion-item-content {
  margin-top: -1px;
  padding-top: 0;
  padding-left: 22px;
  padding-right: 25px;
  overflow: hidden;
}

.question {
  color: var(--font);
  font-size: 25px;
  line-height: 30px;
}

.answer {
  margin-bottom: 10px;
}

.insta-pic {
  width: 23.8%;
  position: relative;
  overflow: hidden;
}

.hover-overlay {
  background-color: #dad9d7cc;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.footer {
  background-color: var(--background-2);
  position: relative;
}

.footer-menu-bg {
  background-color: var(--button);
}

.footer-flex {
  flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 0;
  display: flex;
}

.footer-menu {
  width: 60%;
}

.navbar {
  background-color: #0000;
  margin-top: 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.element-2 {
  background-color: #e8e9ee;
}

.left-border {
  padding-top: 9px;
}

.navbar-bg {
  background-color: var(--midnight-blue);
  position: absolute;
  inset: 0%;
}

.nav-menu {
  height: 60px;
  display: flex;
}

.underline-hover {
  background-color: #a4aebe;
  height: 1px;
  margin-top: -18px;
  position: absolute;
  inset: 73px 0 0;
}

.underline-hover.navbar {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  margin-top: 0;
  position: relative;
  top: 0;
}

.brand {
  justify-content: center;
  align-items: center;
  height: 60px;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.brand:hover {
  opacity: .85;
  transform: scale(.9);
}

.brand.w--current {
  justify-content: center;
  transition: transform .2s, opacity .2s;
}

.brand.w--current:hover {
  transform: scale(1.03);
}

.navlink {
  color: var(--white);
  height: 60px;
  margin-right: 15px;
  padding-top: 16px;
  padding-left: 7px;
  padding-right: 7px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  display: block;
  overflow: hidden;
}

.navlink:hover {
  text-decoration: none;
}

.navlink.w--current {
  font-weight: 500;
}

.scroll-down {
  z-index: 10;
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  width: 250px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.scroll-down:hover {
  opacity: .85;
}

.scroll-down.w--current {
  align-items: stretch;
  margin-top: -40px;
  inset: auto 0%;
}

.success-message {
  background-color: #0000;
  width: 100%;
  padding-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 15px;
}

.error-message {
  font-size: 20px;
}

.footer-logo {
  justify-content: center;
  align-items: center;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.footer-logo:hover {
  opacity: .85;
  transform: scale(.9);
}

.footer-logo.w--current:hover {
  transform: scale(1.03);
}

.footer-link {
  color: var(--white);
  margin-right: 15px;
  padding-top: 10px;
  padding-left: 7px;
  padding-right: 7px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  overflow: hidden;
}

.footer-link:hover {
  color: var(--lines);
  text-decoration: none;
}

.footer-link.w--current {
  color: var(--white);
}

.footer-link.w--current:hover {
  color: var(--lines);
}

.footer-center {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.notice {
  text-align: center;
  padding-bottom: 15px;
}

.notice-text {
  padding-top: 18px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 21px;
}

.column-left {
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.form-block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  margin-top: 20px;
  display: flex;
}

.text-field-2 {
  border: 1px solid var(--white);
  background-color: #0000;
  width: 48%;
  height: 48px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  transition: border .2s;
}

.text-field-2:hover {
  border-color: var(--button);
}

.text-field-2::placeholder {
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.text-field-2.message {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 73px;
}

.text-field-2.full {
  width: 100%;
}

.contact-us-column {
  width: 60%;
}

.text-block-2 {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 300;
}

.text-block-2.bold {
  font-weight: 500;
}

.form-2 {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
  display: flex;
}

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

.text {
  color: var(--white);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.text.bold {
  font-weight: 500;
}

.form-block-2 {
  width: 100%;
}

.gallery-item {
  width: 67.5%;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.gallery-item:hover {
  background-image: linear-gradient(#00000080, #00000080);
}

.absolute-hover {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.absolute-hover.gallery-1 {
  background-image: url('../images/4.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-2 {
  background-image: url('../images/13.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-3 {
  background-image: url('../images/5.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-4 {
  background-image: url('../images/6.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-5 {
  background-image: url('../images/2.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-6 {
  background-image: url('../images/18.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-7 {
  background-image: url('../images/21.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-8 {
  background-image: url('../images/Fussboden3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-8:hover {
  background-image: url('../images/Fussboden3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-2-copy {
  background-image: url('../images/GFZF7638.JPG'), url('../images/jonathan-borba-Y6RATd1xgyc-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  height: 100%;
}

.absolute-hover.gallery-9 {
  background-image: url('../images/Leder1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-9:hover {
  background-image: url('../images/Leder1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-10 {
  background-image: url('../images/Vorher-Nachher2.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-10:hover {
  background-image: url('../images/Highgloss1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-11 {
  background-image: url('../images/Highgloss5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 100%;
}

.absolute-hover.gallery-11:hover {
  background-image: url('../images/Highgloss5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.absolute-hover.gallery-12 {
  background-image: url('../images/Highgloss2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.absolute-hover.gallery-12:hover {
  background-image: url('../images/Highgloss2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-13 {
  background-image: url('../images/Fussboden1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-13:hover {
  background-image: url('../images/Fussboden1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.absolute-hover.gallery-14 {
  background-image: url('../images/Restaurierung2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-14:hover {
  background-image: url('../images/Restaurierung2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-15 {
  background-image: url('../images/Wall-Repair3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-15:hover {
  background-image: url('../images/Wall-Repair3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-16 {
  background-image: url('../images/Fussboden2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-16:hover {
  background-image: url('../images/Fussboden2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-17 {
  background-image: url('../images/Vorher-Nachher.jpg');
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-17:hover {
  background-image: url('../images/Leder2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-18 {
  background-image: url('../images/Wall-Repair2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-18:hover {
  background-image: url('../images/Wall-Repair2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-19 {
  background-image: url('../images/Gilding2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-19:hover {
  background-image: url('../images/Gilding2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-20 {
  background-image: none;
  height: 100%;
}

.absolute-hover.gallery-20:hover {
  background-image: url('../images/Highgloss4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-21 {
  background-image: url('../images/Gilding1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-21:hover {
  background-image: url('../images/Gilding1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-22 {
  background-image: url('../images/Wall-Repair1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-22:hover {
  background-image: url('../images/Wall-Repair1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-23 {
  background-image: url('../images/Restaurierung.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-23:hover {
  background-image: url('../images/Restaurierung.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-24 {
  background-image: url('../images/Highgloss3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-24:hover {
  background-image: url('../images/Highgloss3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-19-copy {
  background-image: url('../images/Gilding2.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-25 {
  background-image: url('../images/Wall-Repair4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-25:hover {
  background-image: url('../images/Wall-Repair4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-26 {
  background-image: none;
  height: 100%;
}

.absolute-hover.gallery-26:hover {
  background-image: url('../images/Highgloss4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-28 {
  background-image: url('../images/GIF-Animation-16zu9.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  display: none;
}

.absolute-hover.gallery-28:hover {
  background-image: url('../images/Fussboden1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.absolute-hover.gallery-9-2 {
  background-image: url('../images/Vorher-Nachher2.jpg');
  background-position: 0 0;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-9-2:hover {
  background-image: url('../images/Leder1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.absolute-hover.gallery-5-2 {
  background-image: url('../images/Vorher-Nachher2.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.absolute-hover.gallery-5-3 {
  background-image: url('../images/Vorher-Nachher.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.gallery-item-2 {
  width: 31%;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.gallery-item-3 {
  width: 100%;
  height: 50%;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.gallery-block {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
  display: flex;
}

.flex-vertical {
  flex-direction: column;
  justify-content: space-between;
  width: 31%;
  display: flex;
}

.image-1 {
  height: auto;
  display: inline-block;
  position: absolute;
  inset: 13% auto auto 0%;
  overflow: hidden;
}

.pictures-container {
  justify-content: space-between;
  align-items: flex-end;
  height: 1250px;
  margin-top: -429px;
  display: flex;
  position: relative;
}

.image-3 {
  width: auto;
  height: auto;
  display: inline-block;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.absolute-heading {
  z-index: 10;
  text-align: center;
  width: 43%;
  max-width: 634px;
  margin-top: 65px;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  inset: 100px 0% auto;
}

.absolute-heading.medium {
  width: 43%;
  max-width: 476px;
}

.content-section-5 {
  background-color: var(--background-2);
  padding-top: 185px;
  padding-bottom: 90px;
  position: relative;
  overflow: visible;
}

.image-2 {
  height: auto;
  margin-left: 26px;
  display: inline-block;
  position: absolute;
  inset: 38% auto auto 26%;
  overflow: hidden;
}

.image-4 {
  display: inline-block;
  position: absolute;
  inset: 31% 0% auto auto;
  overflow: hidden;
}

.image-5 {
  margin-left: 121px;
  display: inline-block;
  position: absolute;
  overflow: hidden;
}

.image-6 {
  margin-left: 26px;
  display: inline-block;
  position: absolute;
  inset: auto 12% 11% auto;
  overflow: hidden;
}

.footer-logo-box {
  justify-content: center;
  align-items: center;
  width: 10%;
  display: flex;
}

.preloader {
  z-index: 100000000;
  background-color: var(--background-3);
  color: #69707b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  display: none;
  position: fixed;
  inset: 0;
}

.go-up-button {
  z-index: 20;
  background-color: var(--lines);
  color: #fff;
  background-image: url('../images/flecha-hacia-arriba.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px 100%;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 13px;
  margin-right: 15px;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
}

.go-up-button.w--current {
  z-index: 100;
}

.margin {
  width: 100%;
  margin-bottom: 20px;
}

.row {
  margin-bottom: 3%;
}

.bg {
  background-color: var(--lines);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

._404-text {
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 90px;
  line-height: 90px;
}

.slider-arrows {
  opacity: .65;
  transition: opacity .2s;
  display: none;
}

.slider-arrows:hover {
  opacity: .85;
}

.slide-nav {
  display: none;
}

.paragraph {
  font-family: Roboto, sans-serif;
  font-size: 17px;
  line-height: 23px;
}

.bottom-margin {
  width: 100%;
  margin-bottom: 20px;
}

.dropdown {
  height: 60px;
  font-size: 16px;
}

.dropdown-toggle {
  color: var(--white);
  height: 60px;
  padding-top: 16px;
  font-family: Roboto, sans-serif;
}

.mini-arrow {
  margin-top: 25px;
  font-size: 13px;
}

.dropdown-link {
  background-color: var(--background-2);
  padding-left: 20px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  transition: background-color .2s, padding .2s;
}

.dropdown-link:hover {
  background-color: #e2e8f1;
  padding-left: 23px;
}

.image-7 {
  display: block;
  overflow: hidden;
}

.center-flex {
  align-items: center;
  display: flex;
}

.social-navlink {
  color: var(--white);
  background-image: url('../images/facebook-logo-de-letra.svg');
  background-position: 50% 54%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 30px;
  height: 60px;
  padding-top: 16px;
  padding-left: 7px;
  padding-right: 7px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  transition: opacity .2s;
  overflow: hidden;
}

.social-navlink:hover {
  opacity: .85;
  text-decoration: none;
}

.social-navlink.w--current {
  font-weight: 500;
}

.social-navlink.instagram {
  background-image: url('../images/instagram.svg');
}

.social-navlink.twitter {
  background-image: url('../images/gorjeo_1.svg');
}

.social-navlink.pinterest {
  background-image: url('../images/pinterest.svg');
}

.social-navlink.vimeo {
  background-image: url('../images/vimeo.svg');
}

.social-navlink.instagram-copy {
  background-image: url('../images/instagram.svg');
}

.bottom-image-margin {
  margin-bottom: 20px;
}

.side-line {
  background-color: var(--lines);
  width: 1px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

._1920x1080-old {
  height: 100vh;
  display: none;
}

.heading {
  font-family: Cormorantgaramond, sans-serif;
  font-size: 40px;
  line-height: 45px;
}

.heading-2, .paragraph-2, .paragraph-3, .paragraph-4 {
  font-family: Cormorantgaramond, sans-serif;
}

.background-video-2 {
  height: 300px;
  margin-top: 0;
}

.text-block-3 {
  color: var(--white);
}

.image-8 {
  float: left;
  max-width: 33%;
  margin-right: 40px;
}

.heading-3 {
  text-align: left;
}

.h3-service {
  text-align: left;
  margin-top: 0;
  font-family: Cormorantgaramond, sans-serif;
}

.image-left {
  float: left;
  max-width: 50%;
  margin-top: 10px;
  margin-bottom: 40px;
  margin-right: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
}

.image-right {
  float: right;
  max-width: 50%;
  margin-top: 10px;
  margin-bottom: 60px;
  margin-left: 40px;
  padding-left: 40px;
}

.title-2 {
  color: #4d565b;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.title-2.white {
  color: #fff;
}

.side-line-2 {
  background-color: #88969d;
  width: 1px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.less-line-height-2 {
  line-height: 30px;
  display: block;
}

.paragraph-5 {
  text-align: justify;
  font-family: Cormorantgaramond, sans-serif;
}

.button-3 {
  color: #4d565b;
  text-align: center;
  letter-spacing: .3px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #4d565b;
  border-radius: 25px;
  min-width: 135px;
  min-height: 39px;
  padding: 14px 28px 11px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  transition: color .2s, background-color .2s;
}

.button-3:hover {
  color: #fff;
  background-color: #424a4e;
}

.intro-feature-2 {
  text-align: center;
  border-right: 1px solid #88969d;
  width: 33%;
  margin-right: 1px;
  padding: 35px 30px;
}

.intro-feature-2._3 {
  border-right-style: none;
}

.content-section-6 {
  padding-top: 120px;
  position: relative;
}

.content-section-6.double {
  margin-top: auto;
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
}

.whtie-2 {
  color: #fff;
  font-weight: 400;
}

.hero-flex-2 {
  justify-content: center;
  align-items: center;
  display: block;
}

.left-arrow {
  display: none;
}

.flex-copy {
  flex-wrap: wrap;
  display: flex;
}

.flex-copy.mobile-center {
  display: flex;
}

.section {
  background-image: url('../images/bobby-stevenson-aFMt1zBQl2w-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  height: 400px;
}

.title-2-copy {
  color: #4d565b;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.title-2-copy.white {
  color: #fff;
}

.title-unser-service {
  color: var(--font);
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.title-unser-service.white {
  color: #fff;
}

.title-unser-service.small {
  font-size: 12px;
}

.h2 {
  margin-bottom: 60px;
  font-family: Cormorantgaramond, sans-serif;
  font-size: 40px;
}

.grid {
  grid-column-gap: 45px;
  grid-row-gap: 42px;
  grid-template-columns: 1fr 1fr 1fr;
}

.erfahrung {
  padding-top: 120px;
  font-family: Cormorantgaramond, sans-serif;
  position: relative;
}

.erfahrung.double {
  text-align: justify;
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
}

.unser-service {
  padding-top: 120px;
  font-family: Cormorantgaramond, sans-serif;
  position: relative;
}

.unser-service.double {
  background-color: var(--background-2);
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
}

.testimonial-new {
  background-color: var(--background-2);
  padding-top: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: none;
  position: relative;
}

.testimonial-new.double {
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
}

.ablauf {
  padding-top: 120px;
  font-family: Cormorantgaramond, sans-serif;
  position: relative;
}

.ablauf.double {
  background-color: #0000;
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
}

.section-2 {
  background-image: url('../images/17.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  height: 300px;
}

.unterschrift {
  font-family: Mrbedfort, sans-serif;
  font-size: 30px;
}

.text-span, .text-span-2 {
  font-weight: 500;
}

._1080x1920-old {
  height: 100vh;
  display: none;
}

.div-block {
  align-items: center;
  display: flex;
}

.image-9 {
  z-index: 4;
  max-width: 60%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0%;
}

.head {
  height: 100vh;
}

.navbar-2 {
  background-color: #0000;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-menu-2 {
  height: 60px;
  display: flex;
}

.nav-bar-2 {
  background-color: var(--midnight-blue);
  justify-content: center;
  height: 60px;
  display: flex;
}

.text-block-4 {
  justify-content: center;
  display: flex;
}

.text-block-4:hover {
  color: var(--lines);
}

.zur-ck-zur-homepage {
  color: var(--white);
  width: 200px;
  height: 60px;
  margin-right: 0;
  padding-top: 16px;
  padding-left: 7px;
  padding-right: 7px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  display: block;
  overflow: hidden;
}

.zur-ck-zur-homepage:hover {
  text-decoration: none;
}

.zur-ck-zur-homepage.w--current {
  font-weight: 500;
}

.div-block-2 {
  flex-direction: column;
  align-items: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.underline-hover-copy {
  background-color: #a4aebe;
  height: 1px;
  margin-top: -18px;
  position: absolute;
  inset: 73px 0 0;
}

.underline-hover-copy.navbar {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  margin-top: 0;
  position: relative;
  top: 0;
}

.navbar-copy {
  background-color: #0000;
  margin-top: 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-unterseite {
  background-color: #0000;
  margin-top: 0;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.datenschutz {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 100%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.datenschutz-wrapper {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1075px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.datenschutz-wrapper.hero {
  min-height: 850px;
}

.datenschutz-wrapper.wide {
  max-width: 1156px;
}

.div-block-3 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/bobby-stevenson-aFMt1zBQl2w-unsplash_1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.div-block-4 {
  width: 800px;
  display: flex;
}

.zur-ck-zur-hp {
  justify-content: center;
  display: flex;
}

.zur-ck-zur-hp:hover {
  color: var(--lines);
}

.navbar-englisch {
  background-color: #0000;
  margin-top: 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.language {
  color: var(--white);
  width: 30px;
  height: 60px;
  margin-left: 20px;
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  transition: opacity .2s;
  overflow: hidden;
}

.language:hover {
  opacity: .85;
  text-decoration: none;
}

.language.w--current {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  width: 40px;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
}

.language.instagram {
  background-image: url('../images/instagram.svg');
}

.language.twitter {
  background-image: url('../images/gorjeo_1.svg');
}

.language.pinterest {
  background-image: url('../images/pinterest.svg');
}

.language.vimeo {
  background-image: url('../images/vimeo.svg');
}

.language.instagram-copy {
  background-image: url('../images/instagram.svg');
}

.image-10 {
  border-radius: 2px;
}

.language-deutsch {
  color: var(--white);
  width: 30px;
  height: 60px;
  margin-left: 20px;
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  transition: opacity .2s;
  overflow: hidden;
}

.language-deutsch:hover {
  opacity: .85;
  text-decoration: none;
}

.language-deutsch.w--current {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  width: 40px;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
}

.language-deutsch.instagram {
  background-image: url('../images/instagram.svg');
}

.language-deutsch.twitter {
  background-image: url('../images/gorjeo_1.svg');
}

.language-deutsch.pinterest {
  background-image: url('../images/pinterest.svg');
}

.language-deutsch.vimeo {
  background-image: url('../images/vimeo.svg');
}

.language-deutsch.instagram-copy {
  background-image: url('../images/instagram.svg');
}

.gallerie {
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: none;
  position: relative;
}

.gallerie.double {
  background-color: var(--background-2);
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: block;
}

.vorher-nachher {
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: none;
  position: relative;
}

.vorher-nachher.double {
  background-color: var(--background-2);
  padding-bottom: 120px;
  font-family: Cormorantgaramond, sans-serif;
  display: block;
}

.gallery {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.gallery-grid-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "."
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 40px;
  display: grid;
}

.gallery-lightbox {
  position: relative;
  overflow: hidden;
}

.gallery-thumbnail {
  object-fit: cover;
  object-position: 50% 50%;
  background-image: url('../images/Wall-Repair3.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.gallery-2 {
  padding-top: 0;
  padding-bottom: 100px;
  display: block;
}

.gallery-grid-container-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "."
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 40px;
  display: grid;
}

.gallery-thumbnail-2 {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.paragraph-8 {
  font-family: Roboto, sans-serif;
}

.gallery-grid-container-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 40px;
  display: grid;
}

.gallery-grid-container-4 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "Area-2"
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 0;
  display: grid;
}

.gallery-thumbnail-3 {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.gastro-gallerie {
  border-radius: 2px;
  padding-left: 0;
  padding-right: 0;
}

.vorher-nachher-h3 {
  text-align: center;
  font-size: 25px;
}

.gif-anim {
  margin-top: 20px;
}

.section-3 {
  background-image: url('../images/11.jpg');
  background-position: 50% 48%;
  background-size: cover;
  background-attachment: fixed;
  height: 300px;
}

._1920x1080-new {
  height: 100vh;
  position: relative;
}

._1080x1920-new {
  height: 100vh;
  display: none;
}

.image-7-copy {
  display: block;
  overflow: hidden;
}

.image-erfahrung-1 {
  margin-top: 23px;
  display: block;
  overflow: hidden;
}

.gallery-item-3-copy {
  width: 100%;
  height: 50%;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.linksb-ndig-fliesstext {
  text-align: left;
}

.paragraph-9 {
  text-align: justify;
}

.link {
  color: var(--white);
  text-decoration: underline;
  transition: all .2s;
}

.link:hover {
  color: #ffffff8c;
}

.footer-bottom-base {
  background-color: #0000002e;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 96px;
  margin-top: 64px;
  font-size: 11px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-bottom {
  z-index: 1;
  background-color: var(--button);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 96px;
  margin-top: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  position: relative;
}

.footer-bottom-content {
  flex-wrap: wrap;
  flex: 1;
  place-content: center;
  align-items: center;
  margin-left: 80px;
  margin-right: 80px;
  line-height: 24px;
  display: flex;
}

.footer-bottom-text {
  opacity: .6;
  color: var(--white);
  margin-right: 4px;
  font-family: Roboto, sans-serif;
}

.footer-bottom-text.link {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}

.footer-bottom-text.link:hover {
  text-decoration: underline;
}

.heart-icon {
  color: #0000;
  background-image: url('../images/heart-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  width: 18px;
  margin-right: 4px;
}

.block-quote {
  text-align: left;
}

.copyright {
  z-index: 1;
  background-color: var(--button);
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  position: relative;
}

@media screen and (max-width: 991px) {
  .content-section {
    padding-bottom: 0;
  }

  .hero-section {
    height: 100vh;
  }

  .absolute.slide-1, .absolute.slide-2, .absolute.slide-3, .absolute.guy, .absolute.horse {
    background-position: 66%;
  }

  .heading-box {
    width: 74%;
  }

  .intro-feature {
    width: 100%;
  }

  .content-section-2 {
    padding-bottom: 0;
  }

  .h3-big {
    font-size: 55px;
    line-height: 60px;
  }

  .content-section-3, .content-section-4 {
    padding-bottom: 0;
  }

  .content-section-4.form {
    padding-bottom: 90px;
  }

  .full-section {
    height: 370px;
    padding-bottom: 0;
  }

  .testimonial-column {
    flex-direction: column;
  }

  .footer {
    padding-bottom: 0;
  }

  .footer-menu {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .menu-button {
    color: var(--white);
    background-color: #0000;
    height: 60px;
  }

  .menu-button.w--open {
    background-color: var(--lines);
    color: var(--white);
  }

  .left-border {
    padding-left: 20px;
  }

  .nav-menu {
    background-color: var(--lines);
    text-align: left;
    height: 100vh;
    padding-bottom: 140px;
    overflow: auto;
  }

  .navlink {
    text-align: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-link {
    text-align: left;
  }

  .footer-center {
    justify-content: center;
    margin-top: 10px;
  }

  .contact-us-column {
    width: 82%;
  }

  .gallery-item {
    width: 67.8%;
    margin-bottom: 10px;
  }

  .gallery-item-2, .gallery-item-3 {
    margin-bottom: 10px;
  }

  .image-1 {
    width: 30%;
    left: -5%;
  }

  .pictures-container {
    margin-top: -350px;
  }

  .image-3 {
    width: 38%;
    top: -3%;
  }

  .absolute-heading {
    width: 74%;
  }

  .absolute-heading.medium {
    width: 54%;
  }

  .image-2 {
    width: 47%;
    top: 40%;
    left: 0%;
  }

  .image-4 {
    width: 38%;
  }

  .image-5 {
    width: 40%;
    left: -193px;
  }

  .image-6 {
    width: 56%;
    right: 3%;
  }

  .footer-logo-box {
    width: 100%;
  }

  .social-navlink {
    text-align: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-left {
    margin-bottom: 10px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .image-right {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .content-section-6, .erfahrung, .unser-service, .testimonial-new, .ablauf {
    padding-bottom: 0;
  }

  .image-9 {
    max-width: 80%;
  }

  .nav-menu-2 {
    text-align: left;
    background-color: #243037c4;
    height: 100vh;
    padding-bottom: 140px;
    overflow: auto;
  }

  .zur-ck-zur-homepage {
    text-align: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .datenschutz {
    width: 74%;
  }

  .language {
    text-align: left;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .image-10 {
    height: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .language-deutsch {
    text-align: left;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .image-11, .image-12 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .gallerie, .vorher-nachher {
    padding-bottom: 0;
  }

  .gallery-grid-container, .gallery-grid-container-2, .gallery-grid-container-3 {
    align-self: stretch;
  }

  .gallery-grid-container-4 {
    align-self: stretch;
    margin-left: 40px;
    margin-right: 40px;
  }

  .gallery-thumbnail-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-item-3-copy {
    margin-bottom: 10px;
  }

  .footer-bottom {
    padding-left: 4%;
    padding-right: 4%;
  }

  .footer-bottom-content {
    margin-left: 0;
    margin-right: 0;
  }

  .block-quote {
    text-align: left;
  }

  .copyright {
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 767px) {
  .content-section {
    padding-top: 80px;
  }

  .content-section.double {
    padding-bottom: 80px;
  }

  .title {
    font-size: 16px;
  }

  .content-wrapper.hero {
    min-height: 700px;
  }

  .h2-big {
    font-size: 40px;
    line-height: 50px;
  }

  .bottom-line {
    margin-bottom: 30px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon.twittter, .social-icon.pinterest, .social-icon.instagram, .social-icon.facebook, .social-icon.linkedin, .social-icon.vimeo {
    background-size: 12px;
  }

  .hero-flex {
    min-height: 700px;
  }

  .heading-box {
    width: 90%;
    margin-bottom: 40px;
  }

  .intro-feature {
    border-bottom: 1px solid var(--lines);
    border-right-style: none;
    width: 100%;
  }

  .intro-feature._3 {
    border-bottom-style: none;
  }

  .button-2 {
    min-width: 123px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-column.mobile-margin {
    padding-right: 0;
  }

  .left-column.with-text {
    padding-left: 20px;
  }

  .h3-big {
    font-size: 45px;
    line-height: 50px;
  }

  .flex-space.mobile-center {
    justify-content: center;
  }

  .mini-feature {
    border-bottom: 1px solid var(--lines);
    border-right-style: none;
    width: 100%;
  }

  .content-section-3 {
    padding-top: 0;
  }

  .text-field {
    border-right-style: solid;
    width: 100%;
    max-width: 310px;
  }

  .submit-button {
    width: 100%;
    max-width: 310px;
  }

  .submit-button.white {
    max-width: 100%;
  }

  .content-section-4 {
    padding-top: 80px;
  }

  .full-section {
    height: 270px;
    padding-top: 80px;
  }

  .testimonial-column {
    border-right: 1px solid var(--lines);
    width: 100%;
  }

  .testimonial-column._2 {
    border-top: 1px #000;
  }

  .testimonial-column._3 {
    border-top-style: none;
  }

  .insta-pic {
    width: 48%;
    margin-bottom: 15px;
  }

  .menu-button.w--open {
    background-color: #24303700;
  }

  .nav-menu {
    background-color: #243037cc;
    padding-top: 20px;
  }

  .navlink {
    text-align: center;
    height: 45px;
    padding-top: 6px;
  }

  .footer-link {
    height: 45px;
    padding-top: 6px;
  }

  .gallery-item {
    width: 68.2%;
    margin-bottom: 5px;
  }

  .gallery-item-2, .gallery-item-3 {
    margin-bottom: 5px;
  }

  .image-1 {
    top: 10%;
    left: -7%;
  }

  .pictures-container {
    height: 1000px;
  }

  .absolute-heading {
    width: 90%;
    margin-bottom: 40px;
  }

  .absolute-heading.medium {
    width: 60%;
  }

  .content-section-5 {
    padding-top: 100px;
  }

  .image-6 {
    bottom: 5%;
  }

  .social-navlink {
    height: 45px;
    padding-top: 6px;
  }

  .social-navlink.instagram {
    display: block;
  }

  .social-navlink.instagram-copy {
    display: none;
  }

  .image-left, .image-right {
    max-width: 100%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .title-2 {
    font-size: 16px;
  }

  .button-3 {
    min-width: 123px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-feature-2 {
    border-bottom: 1px solid #88969d;
    border-right-style: none;
    width: 100%;
  }

  .intro-feature-2._3 {
    border-bottom-style: none;
  }

  .content-section-6 {
    padding-top: 80px;
  }

  .content-section-6.double {
    padding-bottom: 80px;
  }

  .hero-flex-2 {
    min-height: 700px;
  }

  .title-2-copy {
    font-size: 16px;
  }

  .title-unser-service {
    font-size: 12px;
  }

  .grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .erfahrung {
    padding-top: 80px;
  }

  .erfahrung.double {
    padding-bottom: 80px;
  }

  .unser-service {
    padding-top: 80px;
  }

  .unser-service.double {
    padding-bottom: 80px;
  }

  .testimonial-new {
    padding-top: 80px;
  }

  .testimonial-new.double {
    padding-bottom: 80px;
  }

  .ablauf {
    padding-top: 80px;
  }

  .ablauf.double {
    padding-bottom: 80px;
  }

  .nav-menu-2 {
    background-color: #243037cc;
    padding-top: 20px;
  }

  .text-block-4 {
    margin-top: 7px;
  }

  .zur-ck-zur-homepage {
    text-align: center;
    height: 45px;
    padding-top: 6px;
  }

  .datenschutz {
    width: 90%;
    margin-bottom: 40px;
  }

  .datenschutz-wrapper.hero {
    min-height: 700px;
  }

  .zur-ck-zur-hp {
    margin-top: 10px;
  }

  .language {
    height: 45px;
    padding-top: 6px;
  }

  .language.instagram, .language.instagram-copy {
    display: none;
  }

  .language-deutsch {
    height: 45px;
    padding-top: 6px;
  }

  .language-deutsch.instagram, .language-deutsch.instagram-copy {
    display: none;
  }

  .image-11 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .gallerie {
    padding-top: 80px;
  }

  .gallerie.double {
    padding-bottom: 80px;
  }

  .vorher-nachher {
    padding-top: 80px;
  }

  .vorher-nachher.double {
    padding-bottom: 80px;
  }

  .gallery {
    padding: 40px 20px;
  }

  .gallery-grid-container {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .gallery-2 {
    padding: 40px 20px;
  }

  .gallery-grid-container-2, .gallery-grid-container-3 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .gallery-grid-container-4 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin-left: 40px;
    margin-right: 40px;
  }

  .gallery-thumbnail-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-item-3-copy {
    margin-bottom: 5px;
  }

  .block-quote {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .top-margin._10-pixels {
    margin-left: auto;
    margin-right: auto;
  }

  .content-section {
    padding-top: 60px;
  }

  .content-section.double {
    padding-bottom: 60px;
  }

  .content-wrapper.hero {
    min-height: 590px;
  }

  .h2-big {
    font-size: 35px;
    line-height: 45px;
  }

  .hero-section {
    margin-top: 0;
  }

  .absolute.picture {
    height: 110%;
  }

  .whtie {
    font-size: 60px;
    line-height: 60px;
  }

  .hero-flex {
    min-height: 590px;
    display: block;
  }

  .heading-box {
    width: 100%;
  }

  .flex.mobile-center {
    justify-content: center;
  }

  .intro-feature {
    border-bottom: 1px solid var(--lines);
    border-right-style: none;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-feature._3 {
    border-bottom-style: none;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-feature._2 {
    margin-left: auto;
    margin-right: auto;
  }

  .image {
    width: 100%;
  }

  .text-container {
    width: 100%;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .left-column {
    width: 100%;
    padding-right: 0;
  }

  .left-column.mobile-margin {
    margin-bottom: 30px;
  }

  .left-column.with-text {
    padding-left: 0;
  }

  .right-column {
    width: 100%;
  }

  .flex-space.mobile-center {
    justify-content: center;
  }

  .newsletter-left {
    width: 100%;
  }

  .newsletter-right {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 20px;
  }

  .features-column {
    width: 100%;
    max-width: 350px;
  }

  .content-section-4 {
    padding-top: 60px;
  }

  .numbers-left {
    border-bottom: 1px solid var(--lines);
    border-right-style: none;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .numbers-item {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .numbers-item.no-margin {
    margin-bottom: 0;
  }

  .numbers-container.no-margin {
    border-bottom-style: solid;
    padding-bottom: 20px;
  }

  .vertical-text {
    transform: none;
  }

  .full-section {
    padding-top: 60px;
  }

  .testimonial._5 {
    border-bottom-style: solid;
  }

  .testimonial-column {
    justify-content: flex-start;
    width: 100%;
    max-width: 350px;
  }

  .menu-button.w--open {
    background-color: #24303700;
  }

  .navbar {
    z-index: 5;
  }

  .nav-menu {
    background-color: #243037cc;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .navlink {
    text-align: center;
  }

  .footer-link {
    margin-bottom: 14px;
  }

  .column-left {
    width: 100%;
  }

  .form-block {
    width: 100%;
    margin-top: 20px;
  }

  .gallery-item, .gallery-item-2, .gallery-item-3 {
    margin-bottom: 3px;
  }

  .image-1 {
    left: -11%;
  }

  .pictures-container {
    height: 630px;
  }

  .absolute-heading {
    width: 100%;
  }

  .absolute-heading.medium {
    width: 80%;
  }

  .content-section-5 {
    padding-top: 60px;
  }

  .image-2 {
    top: 53%;
  }

  .image-4 {
    top: 48%;
    right: -5%;
  }

  .image-6 {
    bottom: 3%;
  }

  .slider-arrows {
    display: none;
  }

  .social-navlink.instagram {
    display: block;
    position: absolute;
    left: auto;
  }

  .social-navlink.instagram-copy {
    display: none;
    position: absolute;
    left: auto;
  }

  .side-line {
    width: 100%;
    height: 1px;
    inset: auto 0% 0%;
  }

  ._1920x1080-old {
    display: none;
  }

  .heading {
    text-align: center;
    font-size: 28px;
    line-height: 38px;
  }

  .image-left {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .image-right {
    margin-left: auto;
    margin-right: auto;
  }

  .side-line-2 {
    width: 100%;
    height: 1px;
    inset: auto 0% 0%;
  }

  .intro-feature-2 {
    border-bottom: 1px solid #88969d;
    border-right-style: none;
    width: 100%;
    max-width: 350px;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-feature-2._3 {
    border-bottom-style: none;
  }

  .content-section-6 {
    padding-top: 60px;
  }

  .content-section-6.double {
    margin-top: auto;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .whtie-2 {
    font-size: 60px;
    line-height: 60px;
  }

  .hero-flex-2 {
    min-height: 590px;
  }

  .left-arrow {
    display: none;
  }

  .flex-copy.mobile-center {
    justify-content: center;
  }

  .grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .erfahrung {
    padding-top: 60px;
  }

  .erfahrung.double {
    padding-bottom: 60px;
  }

  .unser-service {
    padding-top: 60px;
  }

  .unser-service.double {
    padding-bottom: 60px;
  }

  .testimonial-new {
    padding-top: 60px;
  }

  .testimonial-new.double {
    padding-bottom: 60px;
  }

  .ablauf {
    padding-top: 60px;
  }

  .ablauf.double {
    padding-bottom: 60px;
  }

  ._1080x1920-old {
    display: none;
  }

  .div-block {
    display: flex;
  }

  .image-9 {
    max-width: 95%;
  }

  .head {
    display: none;
  }

  .nav-menu-2 {
    background-color: #243037cc;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .zur-ck-zur-homepage {
    text-align: center;
  }

  .datenschutz {
    width: 100%;
  }

  .datenschutz-wrapper.hero {
    min-height: 590px;
  }

  .language {
    flex-direction: row;
    margin-top: 45px;
  }

  .language.instagram, .language.instagram-copy {
    display: none;
    position: absolute;
    left: auto;
  }

  .language-deutsch {
    margin-top: 45px;
  }

  .language-deutsch.instagram, .language-deutsch.instagram-copy {
    display: none;
    position: absolute;
    left: auto;
  }

  .paragraph-6 {
    flex-direction: column;
    align-items: stretch;
    width: 90%;
    display: block;
  }

  .paragraph-7 {
    width: 90%;
  }

  .gallerie {
    padding-top: 60px;
  }

  .gallerie.double {
    padding-bottom: 60px;
  }

  .vorher-nachher {
    padding-top: 60px;
  }

  .vorher-nachher.double {
    padding-bottom: 60px;
  }

  .centered-container {
    text-align: left;
  }

  .gallery-grid-container, .gallery-grid-container-2, .gallery-grid-container-3 {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-grid-container-4 {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  ._1920x1080-new {
    display: none;
  }

  ._1080x1920-new {
    height: 100vh;
    display: block;
  }

  .image-erfahrung-1 {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-item-3-copy {
    margin-bottom: 3px;
  }

  .footer-bottom-base {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    margin-top: 0;
  }

  .block-quote {
    text-align: left;
  }

  .copyright {
    margin-top: 0;
  }
}

#w-node-e14e321e-eb9c-f8d0-25e6-2b96480bf19d-142b652d, #w-node-e14e321e-eb9c-f8d0-25e6-2b96480bf19d-e72b6533 {
  place-self: stretch stretch;
}


@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mrbedfort';
  src: url('../fonts/MrBedfort-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sedgwickavedisplay';
  src: url('../fonts/SedgwickAveDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}