@font-face {
  font-family: "Patrick Hand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./PatrcikHand-Regular.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

body {
  background: url("../img/Hintergrund9.jpg");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.header {
  z-index: 100;
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 4rem;
  padding: 0.5rem 3rem;
  border-bottom: 5px solid lightgrey;
  background-color: #1c318c;
  box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.342);
  transition: height 0.4s ease;
}

.header .container {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .container .logo {
  height: 100%;
}

.header .container .logo img {
  -webkit-filter: brightness(1.7);
  filter: brightness(1.7);
  height: 100%;
}

.header .container button:hover {
  cursor: pointer;
  border: solid transparent;
  background-color: whitesmoke;
  color: #333;
}

#open-cta-header {
  z-index: 200;
  position: fixed;
  top: -4rem;
  right: 1rem;
  height: 4rem;
  width: 4rem;
  animation-name: pulse;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.5, 0, 0.5, 0);
  animation-fill-mode: forwards;
}

.open-cta {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  font-size: 3rem;
  text-align: center;
  text-decoration: none;
  color: #d71820;
  background-color: white;
  transition: all 0.4s ease;
  border-radius: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.open-cta .svg-finger,
.open-cta .svg-times {
  height: 100%;
  width: 100%;
  border-radius: 100%;
}

.open-cta .svg-finger {
  background: url("../svg/fingerprint-button-4.svg"), linear-gradient(#a03138, #a03138);
  background-repeat: no-repeat;
  background-position: center center;
}

.open-cta .svg-times {
  background: url("../svg/times.svg"), linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: center center;
}

.open-cta:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.527);
  transition: all 0.4s ease;
  transform: scale(1.05);
}

.open-cta:hover:active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.747);
  transform: scale(1);
  transition: all 0.4s ease;
}

.open-cta .sofort-kontakt {
  top: 0;
  left: -4rem;
  position: absolute;
  font-size: 1rem;
  color: white;
}

.footer {
  z-index: 100;
  position: fixed;
  display: flex;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 25px;
  border-top: 1px solid lightgrey;
  background-color: #1c318c;
}

@media (max-width: 24.9375em) {
  .footer {
    position: static;
    flex-direction: column;
    height: unset;
    padding: 0.5rem 0;
  }
}

.footer div {
  display: flex;
}

@media (max-width: 24.9375em) {
  .footer div {
    flex-direction: column;
    padding: 0.3rem 0;
  }
}

.footer div p {
  padding: 0 1rem;
}

.footer p,
.footer a {
  text-align: center;
  justify-content: space-around;
  font-size: min(1.5vw, 0.8rem);
  color: lightgrey;
  text-decoration: none;
}

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

.footer .sitemap a,
.footer .sitemap p {
  padding: 0 1rem;
}

.footer #contact-footer,
.footer #impressum-footer {
  cursor: pointer;
}

.footer #datenschutz-footer {
  cursor: pointer;
}

.svg-times {
  height: 1rem;
  width: 1rem;
  background: url("../svg/times.svg"), linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: center center;
}

#cta {
  z-index: 50;
  position: fixed;
  margin-top: 0rem;
  overflow-y: scroll;
  height: 100vh;
  width: 100vw;
  background: #e9f0ff;
  top: 100vh;
  transition: top 0.8s ease-in;
}

#cta .main {
  display: flex;
  flex: 1 1;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #333;
  top: 0%;
  left: 0%;
  padding: 0 1rem;
  width: 63.9375em;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 6rem;
  padding-top: 2rem;
  padding-bottom: 6rem;
  border-radius: 0.4rem;
}

#cta .main img {
  max-width: 100%;
  width: 100%;
  align-self: center;
  padding-bottom: 2rem;
}

@media (max-width: 63.9375em) {
  #cta .main img {
    width: 500px;
  }
}

@media (max-width: 39.9375em) {
  #cta .main img {
    width: 100%;
  }
}

#cta .main .content {
  max-width: 100%;
  align-self: center;
  display: flex;
}

@media (max-width: 63.9375em) {
  #cta .main .content {
    width: 500px;
    flex-direction: column;
  }
}

@media (max-width: 39.9375em) {
  #cta .main .content {
    width: 100%;
    flex-direction: column;
  }
}

#cta .main .contact-form-header {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

#cta .main .address {
  padding-right: 2rem;
  font-weight: 300;
}

#cta .text {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 63.9375em) {
  #cta .text {
    padding-right: 0;
  }
}

#cta .text h1 {
  font-size: 2.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 63.9375em) {
  #cta .text h1 {
    font-size: 2rem;
  }
}

#cta .text p {
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (max-width: 39.9375em) {
  #cta .text p {
    line-height: 1rem;
    font-size: 0.8rem;
  }
}

#cta .text .contact-info {
  max-width: 100%;
  display: flex;
  align-self: center;
  justify-content: flex-start;
  width: 100%;
  padding: 2rem 0;
}

@media (max-width: 63.9375em) {
  #cta .text .contact-info {
    width: 500px;
  }
}

@media (max-width: 39.9375em) {
  #cta .text .contact-info {
    width: 100%;
  }
}

@media (max-width: 24.9375em) {
  #cta .text .contact-info {
    width: 100%;
    justify-content: space-between;
  }
}

#cta .text .contact-info p {
  font-size: 1rem;
}

@media (max-width: 39.9375em) {
  #cta .text .contact-info p {
    font-size: 0.75rem;
  }
}

@media (max-width: 24.9375em) {
  #cta .text .contact-info p {
    font-size: 0.75rem;
    padding-right: 0;
  }
}

#cta hr {
  border: 1px solid #c7c7c7;
  margin: 1rem 0;
}

#cta h3 {
  margin-bottom: 0.5rem;
}

#cta input,
#cta textarea {
  font-size: 1rem;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  padding: 0.6rem 0.3rem;
  background-color: transparent;
  border: 1px solid #c3c3c3;
  border-radius: 0.3rem;
  width: 100%;
}

#cta textarea {
  height: 120px;
  border: 1px solid #c3c3c3;
}

#cta button {
  margin-bottom: 1rem;
  cursor: pointer;
  outline: none;
  width: 100%;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 0rem;
  color: #d71820;
  background-color: transparent;
  border: 2px solid #d71820;
  padding: 0.7rem 1.4rem;
  border-radius: 0.5rem;
}

#cta button:hover .paper-plane {
  background: url("../svg/paper-plane-white.svg");
}

#cta button .paper-plane {
  margin-left: 1rem;
  height: 1.3rem;
  width: 1.3rem;
  background: url("../svg/paper-plane.svg");
}

#cta button:hover {
  color: #f4f4f4;
  border: 3px solid #f4f4f4;
  background-color: #d71820;
}

#cta .contact-form {
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 100%;
  align-self: center;
  width: 500px;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(51, 51, 51, 0.473);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 4rem;
}

#cta .contact-form hr {
  margin: 2rem -2rem;
  border: none;
  border-bottom: 1px solid #cbcbcb;
}

#cta ::placeholder {
  color: #d0d0d0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.1);
  }
  90% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#impressum,
#datenschutz {
  position: fixed;
  top: 50vh;
  left: 50vw;
  width: 300px;
  transform: translate(-50%, -50%);
  box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.331);
  padding-top: 6rem;
  padding-left: 2rem;
  background-color: #fff;
  z-index: 1000;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #fff;
  color: black;
}

#impressum #close-impressum,
#impressum #close-datenschutz,
#datenschutz #close-impressum,
#datenschutz #close-datenschutz {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#impressum h2,
#datenschutz h2 {
  padding-bottom: 0.5rem;
}

#impressum h3,
#datenschutz h3 {
  padding-bottom: 0.3rem;
}

#impressum p,
#datenschutz p {
  padding-bottom: 1rem;
}

#datenschutz {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
}

.photo-strip {
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  margin: 0 auto;
  padding: 2rem 0rem 0 0rem;
  min-height: 0;
  max-width: 1300px;
}

@media (max-width: 39.9375em) {
  .photo-strip {
    padding: 2rem 0 0 0;
  }
}

.photo-strip__strip {
  padding: 1rem 0;
  -webkit-filter: drop-shadow(-10px 15px 12px rgba(0, 0, 0, 0.815));
  filter: drop-shadow(-10px 15px 5px rgba(0, 0, 0, 0.4));
  display: grid;
  grid-auto-rows: min-content;
  gap: 1rem 0;
  align-items: start;
  justify-items: center;
  background: url("../svg/stripe-long.svg");
  background-position: center;
}

.photo-strip__image {
  position: relative;
  width: 85%;
}

.photo-strip__image .overlay {
  position: absolute;
  display: flex;
  align-items: flex-end;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.photo-strip__image .overlay:hover {
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 39.9375em) {
  .photo-strip__image .overlay {
    opacity: 1;
  }
}

.photo-strip__image .overlay .text {
  padding: 1rem;
  position: absolute;
  width: 100%;
  align-items: end;
  justify-content: start;
  color: whitesmoke;
  background: linear-gradient(to top, #000000, #00000000);
}

.photo-strip__image .overlay .text>div {
  display: inline-block;
}

.photo-strip__image .overlay .text>div p {
  display: inline-block;
  font-size: 2vw;
}

.photo-strip__image .overlay .text>div .line {
  height: 5px;
  margin: 0.2rem 0;
  border-bottom: 3px solid #d71820;
}

.photo-strip__image .overlay .text h2 {
  display: block;
  font-size: 4vw;
}

.photo-strip__image .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 0.2rem;
}

.photo-strip .first-strip,
.photo-strip .last-strip {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  background: linear-gradient(to top right, #d3c396, #f7eac9);
  padding: 1.5vw 3vw;
  border-radius: 5px;
  color: #333;
}

.photo-strip .first-strip .logo,
.photo-strip .last-strip .logo {
  width: 80%;
  margin-bottom: 2vw;
  filter: drop-shadow(-2px 2px 3px rgba(255, 255, 255, 0.438));
}

.photo-strip .first-strip>p,
.photo-strip .last-strip>p {
  padding: 1rem 0;
  text-transform: uppercase;
  font-size: 1rem;
  color: #666;
  font-weight: 300;
}

.photo-strip .first-strip .sign-till,
.photo-strip .last-strip .sign-till {
  width: 80%;
}

.photo-strip .first-strip .sign,
.photo-strip .last-strip .sign {
  position: relative;
  color: #393939;
  padding: 1.75vw 8vw;
  border-right: 4px solid #e8f0f2;
  border-bottom: 4px solid #6799a7;
  border-top: 4px solid #e8f0f2;
  border-left: 4px solid #6799a7;
  background: url("../svg/screw.svg"), url("../svg/screw.svg"), url("../svg/screw.svg"), url("../svg/screw.svg"), linear-gradient(to bottom left, #e8f0f2, #88afb9);
  background-repeat: no-repeat;
  background-position: left 0.5vw top 0.5vw, right 0.5vw top 0.5vw, left 0.5vw bottom 0.5vw, right 0.5vw bottom 0.5vw, center;
  background-size: 1.5vw 1.5vw, 1.5vw 1.5vw, 1.5vw 1.5vw, 1.5vw 1.5vw, contain;
  box-shadow: 0 2px 5px 0 #666;
  margin-bottom: 1vw;
}

.photo-strip .first-strip .sign .logo,
.photo-strip .last-strip .sign .logo {
  position: absolute;
  width: 10vw;
}

.photo-strip .first-strip .sign h2,
.photo-strip .last-strip .sign h2 {
  font-size: min(3rem, 3.75vw);
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0vh;
}

.photo-strip .first-strip .sign h3,
.photo-strip .last-strip .sign h3 {
  font-size: min(2rem, 2vw);
  font-weight: 300;
}

.photo-strip .first-strip .get-in-touch,
.photo-strip .last-strip .get-in-touch {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vw;
  color: #00000010;
}

.photo-strip .first-strip .get-in-touch h2,
.photo-strip .last-strip .get-in-touch h2 {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: min(3rem, 3.75vw);
  font-weight: 900;
  text-transform: uppercase;
}

.photo-strip .first-strip .get-in-touch i,
.photo-strip .last-strip .get-in-touch i {
  margin: 0 min(1.5rem, 1.875vw);
  font-size: min(6rem, 7.5vw);
}

.photo-strip .first-strip .get-in-touch #open-cta-first-strip,
.photo-strip .first-strip .get-in-touch #open-cta-last-strip,
.photo-strip .last-strip .get-in-touch #open-cta-first-strip,
.photo-strip .last-strip .get-in-touch #open-cta-last-strip {
  margin: 0 1rem;
  justify-self: center;
  background-color: #fff;
  transition: all 0.4s ease;
}

.photo-strip .first-strip .get-in-touch #open-cta-first-strip .svg-finger,
.photo-strip .first-strip .get-in-touch #open-cta-last-strip .svg-finger,
.photo-strip .last-strip .get-in-touch #open-cta-first-strip .svg-finger,
.photo-strip .last-strip .get-in-touch #open-cta-last-strip .svg-finger {
  flex-grow: 0;
  flex-shrink: 0;
  width: min(8.125rem, 10vw);
  height: min(8.125rem, 10vw);
}

.photo-strip .first-strip .get-in-touch .fixed,
.photo-strip .last-strip .get-in-touch .fixed {
  z-index: 1000;
  position: fixed;
  top: 500px;
  display: unset;
  right: 0;
}

.photo-strip .last-strip .logo {
  width: 60%;
}

.photo-strip .last-strip #phone {
  width: 80%;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.4s ease-in-out;
}

.photo-strip .last-strip #phone:hover {
  transition: transform 0.4s ease-in-out;
  transform: rotate(-2deg);
}

.photo-strip .saying-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 5px;
  color: #333;
  justify-content: space-around;
  height: 100%;
  width: 100%;
}

@media (max-width: 39.9375em) {
  .photo-strip .saying-wrapper {
    padding: 1rem;
  }
}

.photo-strip .saying-wrapper .saying {
  font-family: "Patrick Hand", cursive;
  font-size: min(6vw, 4.8rem);
}

.photo-strip .saying-wrapper .author {
  text-align: end;
  font-style: italic;
  font-size: 1.5rem;
}

@media (max-width: 39.9375em) {
  .photo-strip .saying-wrapper .author {
    font-size: 3vw;
  }
}

.photo-strip .saying-wrapper--color-pink {
  background: radial-gradient(ellipse at bottom left, pink 15%, #fff3f5);
}

.photo-strip .saying-wrapper--color-purple {
  color: #f4f4f4;
  background: radial-gradient(ellipse at bottom left, purple 15%, #b300b3);
}

.photo-strip .saying-wrapper--color-petrol {
  color: #f4f4f4;
  background: radial-gradient(ellipse at bottom left, steelblue 15%, #699bc4);
}

.photo-strip .saying-wrapper--color-orange {
  background: radial-gradient(ellipse at bottom left, orange 15%, #ffb733);
}

.photo-strip .saying-wrapper--color-goldbrown {
  color: #f4f4f4;
  background: radial-gradient(ellipse at bottom left, #7e590b 15%, #df9e15);
}

.photo-strip .saying-wrapper--color-lightblue {
  background: radial-gradient(ellipse at bottom left, lightblue 15%, #d4ebf2);
}

.photo-strip .saying-wrapper--color-lightgreen {
  background: radial-gradient(ellipse at bottom left, lightgreen 15%, #e8fce8);
}

.hidden {
  display: none;
}


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