@charset "UTF-8";
@import "korolev-definition.css";
/* Variables */
:root {
  --tonered: #ed89fb;
  --tonelightpink: #fadbfe;
  --toneblue: #5b6ce0;
  --tonelieghtblue: #c9d1f5;
  --tonelightbluedark: #8c9ac1;
  --tonelightbluedarkbg: #b6bbdb;
  --toneblack: #131217;
  --tonelime: #d1f83f;
  --white: #f6f6f6;
  --font: "korolev";
  --animationtime: 0.7s;
  --card-height: 40vw;
  --card-margin: 4vw;
  --card-top-offset: 1em;
  --numcards: 4;
  --outline-width: 0px;
  --padding-sides: 180px;
}
@media only screen and (min-width: 2000px) {
  :root {
    --padding-sides: 240px;
  }
}
@media only screen and (min-width: 2300px) {
  :root {
    --padding-sides: 340px;
  }
}
@media only screen and (max-width: 1024px) {
  :root {
    --padding-sides: 100px;
  }
}
@media only screen and (max-width: 750px) {
  :root {
    --padding-sides: 20px;
  }
}

* {
  box-sizing: border-box;
  font-family: var(--font), sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  background-color: #fff;
  position: relative;
  overflow-x: clip;
}
body:has(dialog[open]) {
  overflow: hidden;
}

/* Standards */
button {
  background-color: var(--tonelime);
  color: #000;
  border-radius: 43px;
  padding: 15px 33px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.5px;
  border: 0.05rem solid var(--white);
  width: -moz-fit-content;
  width: fit-content;
}
button:hover {
  background-color: var(--toneblack);
  color: var(--tonelime);
  border: 0.05rem solid var(--toneblack);
}

h1 {
  font-weight: 700;
  font-size: clamp(5rem, 8vw, 15rem);
  letter-spacing: 0.4rem;
  line-height: 120%;
  text-transform: uppercase;
}

@media only screen and (max-width: 35rem) {
  h1 {
    font-size: 3.5rem;
  }
}
h2 {
  font-weight: 700;
  font-size: clamp(60px, 4vw, 100px);
  letter-spacing: 2.2px;
  line-height: 1.1em;
  text-transform: uppercase;
}

@media only screen and (max-width: 35rem) {
  h2 {
    font-size: 2.3rem;
  }
}
h3 {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.04rem;
  line-height: 1.375em;
  font-style: italic;
}

@media only screen and (max-width: 35rem) {
  h3 {
    font-size: 1.2rem;
  }
}
h4 {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2.2px;
  line-height: 1.3em;
  text-transform: uppercase;
}

p {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-style: light;
  line-height: 1.5em;
}

@media only screen and (max-width: 35rem) {
  p {
    font-size: 0.8rem;
  }
}
a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--toneblack);
}

span {
  font-size: 1em;
}

.red {
  color: var(--tonered);
}

.lime {
  color: var(--tonelime);
}

.blue {
  color: var(--toneblue);
}

.css-typing div {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: -1em;
}
.css-typing div p {
  border-right: 0.15em solid var(--tonelime);
  font-family: "Korolev";
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  opacity: 0;
}
.css-typing div:nth-child(1) p {
  opacity: 1;
  animation: type 1s steps(40, end);
  animation-fill-mode: forwards;
}
.css-typing div:nth-child(2) p {
  animation: type2 2s steps(40, end);
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.css-typing div:nth-child(3) p {
  animation: type3 2.5s steps(40, end);
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.css-typing div:nth-child(4) p {
  animation: type4 3s steps(20, end), blink 0.5s step-end infinite alternate;
  animation-delay: 5.5s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 50rem) {
  .css-typing div p {
    font-size: clamp(1rem, 6vw, 2.8rem);
  }
}

@media only screen and (max-width: 720px) {
  .css-typing div {
    margin-bottom: 0em;
  }
}
@keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: 0.15em solid var(--tonelime);
  }
  100% {
    border: none;
  }
}
@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 0.15em solid var(--tonelime);
  }
  100% {
    opacity: 1;
    border: none;
  }
}
@keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 0.15em solid var(--tonelime);
  }
  100% {
    opacity: 1;
    border: none;
  }
}
@keyframes type4 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* .hidden {
  opacity: 0;
  filter: blur(.1rem);
  transform: translateY(10%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
} */
.rotate-center {
  animation: rotate-center 2s linear infinite;
}
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes nav-hide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}
@keyframes nav-show {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
.nav {
  display: flex;
  z-index: 1200;
  position: fixed;
  padding: 1rem var(--padding-sides) 0.5rem var(--padding-sides);
  justify-content: end;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  width: 100%;
  margin-top: 1rem;
}
.nav a {
  font-size: clamp(16px, 1vw, 24px);
  color: #000000;
}
@media screen and (max-width: 51.2rem) {
  .nav a {
    font-size: 0.8rem;
  }
}
.nav .header-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 80px;
  width: 100%;
  padding-bottom: 10px;
  margin-left: 170px;
  transition: margin 0.75s;
}
.nav .header-links #menu-header {
  display: flex;
  gap: 80px;
  align-items: center;
}
.nav .header-links #menu-header li {
  line-height: 1.2em;
}
.nav .header-links #menu-header li a {
  line-height: 0.08em;
}
.nav .nav-logo-container {
  display: flex;
  gap: 15px;
  position: absolute;
  align-items: center;
  left: var(--padding-sides);
}
.nav .nav-logo-container .nav-logo-text {
  width: 0;
  opacity: 0;
  font-weight: 400;
}
.nav .nav-logo-container img {
  width: 7.5rem;
  height: 7.5rem;
  transition: width 0.5s, height 0.5s;
}
.nav.nav-small .header-links {
  margin-left: 0;
}
.nav.nav-small .nav-logo-container::after {
  content: url(../img/home/logo-small-nav-b.svg);
  position: absolute;
  width: 100%;
  height: 100%;
  right: -4rem;
  display: flex;
  align-items: center;
  top: 2px;
}
.nav.nav-small .nav-logo-container .nav-logo-text {
  width: unset;
  opacity: 1;
}
.nav.nav-small .nav-logo-container img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: none;
     object-fit: none;
  border-radius: 50%;
}
@media only screen and (max-width: 720px) {
  .nav.nav-small .nav-logo-container::after {
    display: none;
  }
}
.nav.hide {
  animation: nav-hide 0.3s ease-in-out forwards;
}
.nav.show {
  animation: nav-show 0.3s ease-in-out forwards;
}
@media only screen and (max-width: 1024px) {
  .nav .header-links {
    height: 2rem;
    margin-left: 0;
  }
  .nav .header-links .menu-header-container {
    display: none;
  }
  .nav .nav-logo-container .nav-logo-text {
    width: unset;
    opacity: 1;
  }
  .nav .nav-logo-container img {
    width: 0;
    height: 0;
    opacity: 0;
  }
  .nav.nav-small img {
    display: none;
  }
}

.menu-icon {
  position: relative;
  width: 33px;
  height: 18px;
  cursor: pointer;
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}
.menu-icon.active span:first-of-type {
  transform: rotate(45deg);
  top: 7.5px;
}
.menu-icon.active span:last-of-type {
  transform: rotate(-45deg);
  bottom: 7.5px;
}
.menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type {
  width: 33px;
}
.menu-icon:hover span:first-of-type {
  width: 23px;
}
.menu-icon:hover span:last-of-type {
  width: 37px;
}

.menue-wrapper {
  display: none;
  background-color: var(--tonelightpink);
  text-align: left;
  height: 100dvh;
  position: fixed;
  width: 100vw;
  padding: 10rem 4rem 9rem var(--padding-sides);
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.7s;
  background-size: cover;
}
.menue-wrapper .menue-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  z-index: 120;
}
.menue-wrapper .menue-text-wrapper .menu-headerbuerger-container ul > li {
  padding-left: 1rem;
  display: flex;
  gap: 1.5rem;
}
.menue-wrapper .menue-text-wrapper .menu-headerbuerger-container ul > li a {
  font-size: 3rem;
  z-index: 200;
}
.menue-wrapper .menue-text-wrapper .menu-headerbuerger-container ul > li a:hover {
  color: var(--tonered);
}
.menue-wrapper .menue-text-wrapper .menue {
  padding-left: 1rem;
  display: flex;
  gap: 1.5rem;
}
.menue-wrapper .menue-text-wrapper .menue h2 {
  font-size: 4.5rem;
  z-index: 200;
}
.menue-wrapper .menue-text-wrapper .menue:hover h2 {
  color: var(--toneblue);
}
.menue-wrapper .menue-text-wrapper .socials {
  padding-top: 1rem;
}
.menue-wrapper .menue-illu-wrapper .menue-statue {
  position: absolute;
  bottom: -6rem;
  height: 100vh;
  right: 0;
  transition: translate 2s ease-out 1s;
  mix-blend-mode: color-burn;
}
.menue-wrapper .menue-illu-wrapper .floating-stat1 {
  animation: floatAnimStat1 1s ease-in-out;
}
@keyframes floatAnimStat1 {
  0% {
    transform: translate(1.5rem, 1.7rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
.menue-wrapper .menue-illu-wrapper #statue-2 {
  z-index: 100;
}
.menue-wrapper .menue-illu-wrapper .floating-stat2 {
  animation: floatAnimStat2 1s ease-out;
}
@keyframes floatAnimStat2 {
  0% {
    transform: translate(-2rem, -1.8rem);
  }
  100% {
    transform: translate(0rem, 0rem);
  }
}
@media only screen and (max-width: 1024px) {
  .menue-wrapper {
    padding: 10rem 2rem var(--padding-sides) 2rem;
  }
  .menue-wrapper .menue-text-wrapper {
    justify-content: flex-start;
  }
  .menue-wrapper .menue-text-wrapper .menue h2 {
    font-size: 2rem;
    gap: 1rem;
  }
  .menue-wrapper .menue-text-wrapper .menu-headerbuerger-container ul > li {
    padding-left: 0rem;
  }
  .menue-wrapper .menue-text-wrapper .menu-headerbuerger-container ul > li a {
    font-size: 2rem;
    gap: 1rem;
    font-weight: 600;
  }
  .menue-wrapper .menue-text-wrapper .menue:hover h2 {
    color: var(--toneblue);
  }
  .menue-wrapper .menue-text-wrapper .socials {
    padding-top: 1rem;
  }
  .menue-wrapper .menue-illu-wrapper {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .menue-wrapper {
    padding: 5rem 1rem 2rem 1rem;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }
  .menue-wrapper .menue-text-wrapper .socials {
    padding-left: 0rem;
  }
}
.fade-in-fwd {
  animation: fade-in-fwd 1.8s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
.progress-wrapper {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1030;
}
.progress-wrapper .progress-title {
  color: #000;
  writing-mode: sideways-lr;
}
.progress-wrapper .progress-title p {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}
.progress-wrapper .progress-container {
  height: 30vh;
  width: 4px;
  background-color: var(--tonelime);
}
.progress-wrapper .progress-container .progress-bar {
  background-color: var(--toneblack);
  height: 0%;
}
@media only screen and (max-width: 1024px) {
  .progress-wrapper {
    left: 0.5rem;
  }
  .progress-wrapper .progress-title p {
    line-height: 1;
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 375px) {
  .progress-wrapper .progress-title {
    display: none;
  }
}

.floating-img {
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
  0% {
    transform: translate(1rem, 1rem);
  }
  50% {
    transform: translate(1.5rem, 0);
  }
  100% {
    transform: translate(1rem, 1rem);
  }
}
.home-header {
  align-items: center;
  background-color: var(--tonelightpink);
  display: flex;
  width: 100vw;
  height: 100vh;
  padding-top: 180px;
}
.home-header .head-content-wrapper {
  padding: 0rem 0rem 0rem var(--padding-sides);
}
.home-header .head-content-wrapper img {
  display: none;
}
.home-header .head-content-wrapper button {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .home-header .head-content-wrapper {
    padding: 0rem 0rem 0rem var(--padding-sides);
  }
  .home-header .head-content-wrapper img {
    display: block;
    width: 111px;
    height: 111px;
    margin-bottom: 70px;
  }
}
.home-header img {
  position: absolute;
  top: 2rem;
  left: var(--padding-sides);
  z-index: 1500;
}
@media only screen and (max-width: 720px) {
  .home-header img {
    top: 150px;
    width: 110px;
  }
}

.content-wrapper {
  background-color: var(--toneblack);
  padding: 120px var(--padding-sides);
}
@media only screen and (max-width: 51.2rem) {
  .content-wrapper {
    padding: 80px var(--padding-sides);
  }
}

.content-vh-wrapper {
  display: flex;
  gap: 4rem;
  padding: 1rem var(--padding-sides);
  min-height: 100vh;
}

.style-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
}
.style-wrapper h2 {
  font-size: 7.5rem;
  line-height: 1;
  color: var(--tonelime);
  margin: 0;
}
.style-wrapper p {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
}
.style-wrapper p span {
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (max-width: 1200px) {
  .style-wrapper {
    flex-direction: column;
    align-items: start;
    gap: 2rem;
  }
}
@media only screen and (max-width: 36rem) {
  .style-wrapper h2 {
    font-size: 3.5rem;
  }
  .style-wrapper p {
    font-size: 1rem;
  }
}

.reference-wrapper {
  padding: 1.5rem var(--padding-sides);
  background-color: #2c2c2c;
}
.reference-wrapper .refernces {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.reference-wrapper .refernces .ref-title {
  width: 15%;
  color: var(--tonelime);
}
.reference-wrapper .refernces .ref-title strong {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.reference-wrapper .refernces .ref-img {
  padding-left: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.reference-wrapper .refernces .ref-img a {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .reference-wrapper {
    padding: 3rem 2rem;
    overflow-x: scroll;
  }
  .reference-wrapper .refernces .ref-title {
    display: none;
  }
  .reference-wrapper .refernces .ref-img {
    padding-left: 1rem;
    width: 100%;
    gap: 4rem;
    padding-right: 2rem;
  }
}

.leistungen-vh-wrapper {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 8rem;
}
.leistungen-vh-wrapper .leistung-text-wrapper {
  color: var(--tonelime);
  text-align: center;
}
.leistungen-vh-wrapper .leistung-text-wrapper .leistungen-title p {
  font-weight: 300;
  font-size: clamp(1.2rem, 1.6vw, 3rem);
  text-transform: uppercase;
  color: #000;
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.leistungen-vh-wrapper .leistung-text-wrapper .leistungen-title h2 {
  font-size: 7.5rem;
  margin: 0;
}
.leistungen-vh-wrapper .leistung-text-wrapper .leistung-img-scribble {
  position: relative;
  transform: translate(-35%);
  margin-bottom: 0.5rem;
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #b4bbdb;
  width: 580px;
  height: 400px;
  border-radius: 40px;
  padding: 1rem 2.5rem 2rem 2.5rem;
  box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  --distance: -16.9rem;
  color: white;
  /*         cursor: pointer; */
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card h4 {
  padding-bottom: 1.25rem;
  border-bottom: solid 2px #fff;
  margin: 0;
  width: 100%;
  cursor: pointer;
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card p {
  padding-top: 2.75rem;
  font-family: "Fofer";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card button {
  margin-top: auto;
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card:not(:first-child) {
  margin-top: var(--distance);
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card:hover,
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card:focus-within {
  transform: translateY(-1rem);
}
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card:hover ~ .card,
.leistungen-vh-wrapper .leistung-text-wrapper .cards .card:focus-within ~ .card {
  transform: translateY(calc(var(--distance) * -1));
}
.leistungen-vh-wrapper .leistung-text-wrapper img#logo-rund {
  margin: 2rem;
}
@media only screen and (max-width: 51.2rem) {
  .leistungen-vh-wrapper {
    padding-top: 3rem;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .leistungen-title p {
    font-size: 20px;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .leistungen-title h2 {
    font-size: 70px;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .leistung-img-scribble {
    width: 100%;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .cards .card {
    padding: 20px 15px 20px 15px;
    width: 100%;
    max-width: 500px;
    height: 360px;
    --distance: -298px;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .cards .card h4 {
    padding-bottom: 15px;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .cards .card p {
    padding-top: 20px;
  }
  .leistungen-vh-wrapper .leistung-text-wrapper .leistung-img-scribble {
    transform: initial;
    position: static;
    text-align: left;
  }
}

.quote-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0rem;
}
.quote-wrapper .quote {
  padding: 7rem 0rem 7rem var(--padding-sides);
  margin: auto;
}
.quote-wrapper .quote h2 {
  color: var(--tonered);
}
.quote-wrapper .image {
  display: flex;
  height: 100%;
  justify-content: end;
  align-self: end;
}
.quote-wrapper .image #statue {
  width: 40vw;
  right: 0rem;
}

.project-vh-wrapper {
  background: #000;
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
  /********    Animation    ***********/
}
@media screen and (max-width: 1024px) {
  .project-vh-wrapper {
    padding-bottom: 50px;
  }
}
.project-vh-wrapper img#headphone {
  position: absolute;
  top: 400px;
  left: -9%;
}
.project-vh-wrapper img#notes {
  position: absolute;
  bottom: -14px;
  left: -20%;
}
.project-vh-wrapper img#tastatur {
  position: absolute;
  transform: translateX(50%);
  top: 1000px;
  right: 0;
}
.project-vh-wrapper .project-wrapper .project-title {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  padding: 1rem 0rem 5rem 0rem;
  border-bottom: 1.5rem solid var(--tonelime);
}
.project-vh-wrapper .project-wrapper .project-title h1 {
  color: #fff;
  writing-mode: sideways-lr;
  margin: 0px;
  line-height: 1em;
}
.project-vh-wrapper .project-wrapper .project-title p {
  color: var(--tonelime);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  font-weight: 400;
  word-break: break-word;
}
.project-vh-wrapper .project-wrapper .project-content {
  margin-top: 140px;
  padding-left: 30%;
}
.project-vh-wrapper .project-wrapper .project-content h4 {
  color: #fff;
  margin: 0;
}
.project-vh-wrapper .project-wrapper .project-content p {
  color: #fff;
  margin-right: 50%;
  padding-top: 2rem;
  font-weight: 300;
}
.project-vh-wrapper .box-area {
  text-align: center;
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}
.project-vh-wrapper .box-area li {
  position: absolute;
  display: block;
  list-style: none;
  width: 10rem;
  animation: animate 20s linear infinite;
  bottom: 0px;
}
.project-vh-wrapper .box-area li:nth-child(1) {
  left: 50%;
  width: 20rem;
  animation-delay: 0s;
  top: 20px;
}
.project-vh-wrapper .box-area li:nth-child(2) {
  left: 10%;
  width: 26rem;
  animation-delay: 1.5s;
  animation-duration: 10s;
}
.project-vh-wrapper .box-area li:nth-child(3) {
  left: 65%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}
.project-vh-wrapper .box-area li:nth-child(4) {
  left: 30%;
  width: 50px;
  height: 50px;
  animation-delay: 0s;
  animation-duration: 15s;
}
.project-vh-wrapper .box-area li:nth-child(5) {
  left: 50%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}
.project-vh-wrapper .box-area img {
  width: 100%;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-800px) rotate(60deg);
    opacity: 1;
  }
}
#team {
  background-color: var(--tonelieghtblue);
  background-repeat: no-repeat;
  background-size: cover;
}

.team-title-wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 4rem;
  flex-direction: column;
  align-items: center;
}
.team-title-wrapper span {
  font-weight: 300;
  font-size: clamp(1.2rem, 1.6vw, 3rem);
  text-transform: uppercase;
  color: #000;
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.team-title-wrapper h2 {
  color: var(--tonelime);
  font-size: 7.5rem;
  margin: 0;
  margin-bottom: 2rem;
  text-align: center;
}
.team-title-wrapper div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 30rem;
}
.team-title-wrapper div p {
  color: #000;
  font-weight: 600;
  font-style: italic;
}
@media only screen and (max-width: 36rem) {
  .team-title-wrapper h2 {
    font-size: 3.5rem;
  }
  .team-title-wrapper div h3 {
    font-size: 1rem;
  }
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.4rem, 1fr));
  grid-auto-rows: 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 4rem;
  align-items: center;
}
.team-wrapper .team {
  text-align: center;
  color: var(--tonelime);
}
.team-wrapper .team img {
  width: auto;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-wrapper .team p {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.team-wrapper .team h4 {
  color: #000;
  font-size: 1.1rem;
  margin: 0;
}
@media only screen and (min-width: 70rem) {
  .team-wrapper {
    grid-template-columns: repeat(3, minmax(16.4rem, 1fr));
  }
}
@media only screen and (max-width: 45rem) {
  .team-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 1.5rem;
  }
  .team-wrapper .team img {
    width: 12.5rem;
    height: 12.5rem;
  }
}

.sm-feed-content-wrapper {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%);
}
.sm-feed-content-wrapper .sm-feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.sm-feed-content-wrapper #sm-button {
  background-color: #000;
  color: #fff;
  margin-bottom: 2rem;
}

.contact-vh-wrapper {
  background: var(--tonelightpink);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
  padding: 0;
  padding-left: 8rem;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
  position: relative;
}
.contact-vh-wrapper .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 50%;
}
.contact-vh-wrapper .contact-info-wrapper div {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-vh-wrapper .contact-illu {
  display: flex;
  align-self: end;
}
.contact-vh-wrapper .contact-illu img {
  width: 50vw;
}
@media only screen and (max-width: 36rem) {
  .contact-vh-wrapper {
    background: rgb(209, 248, 63);
    background: linear-gradient(1800deg, rgb(209, 248, 63) 0%, rgb(232, 232, 232) 50%);
    padding: 0;
  }
  .contact-vh-wrapper .contact-info-wrapper {
    max-width: 100%;
    padding: 9rem 2rem 4rem 6rem;
    height: 50vh;
  }
  .contact-vh-wrapper .contact-illu {
    align-self: end;
  }
  .contact-vh-wrapper .contact-illu img {
    width: 80vw;
  }
}

.home-social-container {
  position: relative;
  padding: 0 0 211px 0;
  background: transparent linear-gradient(180deg, #ffffff 0%, #f1f3fd 43%, #c9d1f6 90%, #c9d1f6 100%) 0% 0% no-repeat padding-box;
  overflow: hidden;
  padding-top: 3rem;
}
.home-social-container .contact-img {
  width: 610px;
  height: auto;
  position: absolute;
  bottom: -6rem;
  right: 15%;
}
.home-social-container .social-media-container {
  padding-top: 57px;
}
.home-social-container .social-media-container .social-media-headline-container {
  padding: 0 var(--padding-sides);
}
.home-social-container .social-media-container .social-media-headline-container h3 {
  margin: 0;
  margin-bottom: 15px;
  margin-left: 25px;
  letter-spacing: 2.4px;
  font-style: italic;
  font-weight: 300;
}
.home-social-container .social-media-container .social-media-headline-container .headline-underline {
  width: 100%;
  height: 15px;
  border: 2px solid var(--toneblack);
  border-bottom: 0;
}
.home-social-container .social-media-container .social-media-headline-container img {
  display: none;
}
.home-social-container .social-media-container .contact-container {
  padding: 0 var(--padding-sides);
  padding-bottom: 94px;
}
.home-social-container .social-media-container .contact-container .logo-text-container {
  display: flex;
  justify-content: space-between;
}
.home-social-container .social-media-container .contact-container .logo-text-container h2 {
  font-size: 72px;
  letter-spacing: 4.44px;
}
.home-social-container .social-media-container .contact-container .direct-insta {
  background-color: var(--toneblack);
  color: #ffffff;
  font-weight: 500;
  border-radius: 43px;
  cursor: pointer;
  padding: 15px 33px;
}
.home-social-container .social-media-container .contact-container .direct-insta:hover {
  background-color: var(--toneblack);
  color: var(--tonelime);
  border: 0.05rem solid var(--toneblack);
}
.home-social-container .social-media-container .contact-container .social-feed {
  margin-bottom: 165px;
  padding-top: 2.15rem;
}
.home-social-container .social-media-container .contact-container .green-separator {
  width: 100%;
  height: 30px;
  background-color: var(--tonelime);
}
.home-social-container .home-social-contact-container {
  padding: 4rem var(--padding-sides);
  position: relative;
}
.home-social-container .home-social-contact-container .social-contact-wrapper {
  display: flex;
  align-items: start;
  gap: 80px;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .social-contact-content h2 {
  margin: 0;
  font-weight: bold;
  margin-bottom: 26px;
  font-size: 74px;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .social-contact-content .home-contact-text {
  font-size: 36px;
  font-style: italic;
  letter-spacing: 0.04rem;
  max-width: 500px;
  margin-bottom: 24px;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .social-contact-content .home-contact-button-logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .social-contact-content .home-contact-button-logo-container img {
  width: 47px;
  height: 47px;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .fireforks-scrible-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: end;
  right: 0;
  transform: translateX(-80px) rotate(-20deg);
  max-width: 288px;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .fireforks-scrible-container p {
  font-family: "Fofer";
  font-size: 40px;
  line-height: 1;
}
.home-social-container .home-social-contact-container .social-contact-wrapper .fireforks-scrible-container img {
  width: 70px;
  height: 66px;
  transform: scaleX(-1);
}
.home-social-container .contact-overlay-wrapper {
  position: absolute;
  transform: translateX(calc(100% - 3rem));
  top: -160px;
  right: 0;
  transition: transform 0.5s;
  display: flex;
  z-index: 1050;
}
.home-social-container .contact-overlay-wrapper.open {
  transform: translateX(0);
}
.home-social-container .contact-overlay-wrapper .nav-left {
  background-color: var(--tonelime);
  border-radius: 1.5625rem 0px 0px 1.5625rem;
  text-align: center;
  width: 60px;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  flex-shrink: 0;
  cursor: pointer;
}
.home-social-container .contact-overlay-wrapper .nav-left h4 {
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  margin: auto;
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
  text-orientation: mixed;
}
.home-social-container .contact-overlay-wrapper .nav-left .x-button {
  font-weight: bold;
  font-size: 30px;
}
.home-social-container .contact-overlay-wrapper .nav-left .x-button.hidden {
  display: none;
}
.home-social-container .contact-overlay-wrapper .wpcf7 {
  background-color: var(--toneblack);
  padding: 70px 50px 34px 43px;
}
@media screen and (max-width: 768px) {
  .home-social-container .contact-overlay-wrapper .wpcf7 {
    overflow: scroll;
  }
}
.home-social-container .contact-overlay-wrapper .wpcf7 form h3 {
  color: var(--tonered);
  font-weight: bold;
  letter-spacing: 0.18rem;
  font-style: normal;
  font-size: 40px;
  margin: 0 0 30px 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 30px;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label {
  font-size: 24px;
  color: #c9d1f5;
  letter-spacing: 0.108rem;
  font-style: normal;
  font-weight: bold;
  display: block;
  padding-bottom: 10px;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(5) {
  grid-column: 1/3;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(6) {
  grid-column: 1/3;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(6) label {
  color: #fff;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(7) {
  max-width: 6.3rem;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label p {
  margin: 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label p br {
  display: none;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container span:nth-child(6) {
  grid-column: 1/3;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container input:nth-child(7) {
  max-width: 6.3rem;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-submit {
  border-radius: 43px;
  border: 0.1rem solid;
  color: #000;
  background-color: var(--tonelime);
  padding: 12px 30px;
  letter-spacing: 0.6px;
  font-family: "korolev";
  font-size: 20px;
  grid-column: 1/3;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-submit:disabled {
  background-color: gray;
  color: darkgray;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-submit:disabled:hover {
  background-color: gray;
  color: darkgray;
  cursor: not-allowed;
  border: 0.1rem solid;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-submit:hover {
  background-color: #000;
  color: var(--tonelime);
  border: 0.1rem solid var(--tonelime);
  cursor: pointer;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap input[type=text] {
  width: 100%;
  height: 40px;
  border-radius: 0.3rem;
  padding: 10px;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap input[type=email] {
  width: 100%;
  height: 40px;
  border-radius: 0.3rem;
  padding: 10px;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap input:focus {
  outline: 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 100px;
  border-radius: 0.3rem;
  padding: 10px;
  resize: none;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap textarea:focus {
  outline: 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  display: 0;
  width: 0;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  display: block;
  background-image: url(../img/cross-checkbox-lime.svg);
  background-repeat: no-repeat;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  letter-spacing: 0.02rem;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  display: flex;
  gap: 20px;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  font-weight: bold;
  text-transform: capitalize;
  display: contents;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  display: block;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid #fff;
  flex-shrink: 0;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  left: 0;
  transform: translate(-0.25rem, -0.25rem);
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
  padding-top: 10px;
}
.home-social-container .contact-overlay-wrapper .wpcf7 form .wpcf7-response-output {
  color: #fff;
}
.home-social-container .contact-overlay-wrapper canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media only screen and (max-width: 51.2rem) {
  .home-social-container {
    padding-bottom: 0;
  }
  .home-social-container .social-media-container .social-media-headline-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .home-social-container .social-media-container .social-media-headline-container h3 {
    font-size: 20px;
  }
  .home-social-container .social-media-container .social-media-headline-container img {
    width: 60px;
    height: 60px;
    display: block;
    margin-right: 25px;
    margin-bottom: 15px;
  }
  .home-social-container .social-media-container .social-media-headline-container .headline-underline {
    flex: 0 0 100%;
  }
  .home-social-container .social-media-container .contact-container {
    padding-bottom: 100px;
  }
  .home-social-container .social-media-container .contact-container .logo-text-container h2 {
    color: var(--tonelime);
    font-size: 46px;
  }
  .home-social-container .social-media-container .contact-container .logo-text-container img {
    display: none;
  }
  .home-social-container .social-media-container .contact-container .direct-insta {
    display: none;
  }
  .home-social-container .social-media-container .contact-container .green-separator {
    display: none;
  }
  .home-social-container .social-media-container .contact-container .social-feed {
    margin: 0;
    padding-bottom: 5rem;
  }
  .home-social-container .home-social-contact-container {
    padding-top: 170px;
    background-color: var(--tonelightpink);
  }
  .home-social-container .home-social-contact-container .social-contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .home-social-container .home-social-contact-container .social-contact-wrapper .social-contact-content h2 {
    font-size: 50px;
  }
  .home-social-container .home-social-contact-container .social-contact-wrapper .social-contact-content .home-contact-text {
    max-width: unset;
    font-size: 20px;
  }
  .home-social-container .home-social-contact-container .social-contact-wrapper .fireforks-scrible-container {
    transform: translate(-80px, -120px) rotate(-15deg);
  }
  .home-social-container .home-social-contact-container .social-contact-wrapper .fireforks-scrible-container p {
    font-size: 24px;
    max-width: 192px;
  }
  .home-social-container .home-social-contact-container .social-contact-wrapper .fireforks-scrible-container img {
    width: 47px;
    height: 45px;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper {
    top: 2rem;
    transform: translate(calc(100% - 45px));
    max-height: 27.5rem;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper.open {
    transform: translateX(0);
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .nav-left {
    width: 45px;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .nav-left h4 {
    font-size: 16px;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 {
    padding: 40px 30px 14px 30px;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form h3 {
    font-size: 24px;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container {
    display: flex;
    flex-direction: column;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label {
    font-size: 20px;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(5) {
    grid-column: 1;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(6) {
    grid-column: 1;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label:nth-child(7) {
    grid-column: 1;
  }
  .home-social-container .home-social-contact-container .contact-overlay-wrapper .wpcf7 form .contact-overlay-input-container label span:nth-child(6) {
    grid-column: unset;
  }
  .home-social-container .contact-img {
    width: 265px;
    height: 331px;
    bottom: -1rem;
  }
}
@media only screen and (max-width: 36rem) {
  .home-social-container .social-media-container .social-media-headline-container {
    padding: 0 var(--padding-sides);
  }
  .home-social-container .social-media-container .contact-container {
    padding: 0 var(--padding-sides);
  }
  .home-social-container .home-social-contact-container {
    padding-left: var(--padding-sides);
    padding-right: 63px;
    padding-bottom: 15rem;
  }
}

.footer-wrapper {
  background-color: var(--toneblack);
}
.footer-wrapper .footer {
  text-align: center;
  padding: 0 8rem;
}
.footer-wrapper .footer .footer-links {
  padding: 3rem 0rem 1.5rem 0rem;
}
.footer-wrapper .footer .footer-links #menu-footer {
  display: flex;
  justify-content: center;
}
.footer-wrapper .footer .footer-links #menu-footer li {
  border-right: solid #fff 1px;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.footer-wrapper .footer .footer-links #menu-footer li:last-child {
  border-right: 0;
}
.footer-wrapper .footer .footer-links #menu-footer li a {
  display: block;
  font-size: 0.6rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-wrapper .footer .footer-social {
  padding-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.footer-wrapper .footer .footer-social a {
  color: var(--tonelime);
  font-size: 0.8rem;
}
.footer-wrapper .footer-address {
  color: #fff;
  font-size: 0.6rem;
  text-align: center;
  padding-bottom: 2rem;
}
.footer-wrapper .footer-address p {
  font-size: 0.6rem;
}
.footer-wrapper .footer-address p strong {
  font-size: 1em;
}
@media only screen and (max-width: 36rem) {
  .footer-wrapper .footer {
    padding: 0 2rem;
  }
  .footer-wrapper .footer .footer-links {
    padding: 4.55rem 0 1.25rem 0;
  }
  .footer-wrapper .footer .footer-links a {
    font-size: 1.2rem;
  }
  .footer-wrapper .footer .footer-social {
    padding-bottom: 3.5rem;
  }
}

.sub {
  background-color: var(--tonelieghtblue);
}
.sub h1 {
  font-size: 5rem;
  padding-bottom: 1rem;
}
.sub h2 {
  font-size: 2rem;
  padding: 1em 0em 0.5em 0em;
}
.sub h3 {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.sub p {
  font-size: 1.2rem;
  padding-bottom: 1em;
}
.sub p strong {
  font-size: 1.2rem;
}
.sub ul li {
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  list-style-type: circle;
  margin-left: 1.5rem;
  padding-bottom: 1em;
}
.sub .wrapper-text {
  padding: 8rem 4rem 6rem 4rem;
}
.sub .menue-wrapper h2 {
  padding: 0;
}
.sub .contact-sub-wrapper {
  padding: 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
}
.sub .contact-sub-wrapper .adress-container {
  padding: 9rem 4rem 4rem 4rem;
}
.sub .contact-sub-wrapper .adress-container a {
  text-transform: none;
  font-size: 1.2rem;
}
.sub .contact-sub-wrapper img {
  align-self: end;
  width: auto;
  height: 90vh;
}

.slide-in-right {
  animation: slide-in-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-left {
  animation: slide-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-12-21 11:35:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
@keyframes slide-in-right {
  0% {
    transform: translateX(50rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-50rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/************** Landingpage Kunden **********/
#playbtn {
  position: absolute;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transform: translateX(-50%);
  left: 50%;
  align-self: center;
}

.kunden-hero {
  background-color: var(--tonelieghtblue);
  padding: 9.5rem var(--padding-sides) 0rem var(--padding-sides);
}
.kunden-hero .kunden-title {
  display: flex;
  align-items: end;
}
.kunden-hero .kunden-title img {
  width: 280px;
}
.kunden-hero .scribble-text {
  font-family: "Fofer";
  position: relative;
}
.kunden-hero .scribble-text::before {
  content: url(../img/arrow-s-down.svg);
  display: block;
  width: 100%;
  height: 0.75rem;
  border-bottom: none;
  position: relative;
  left: 100px;
  top: -35px;
}
.kunden-hero .scribble-text p {
  font-family: "Fofer";
  font-size: 2rem;
  transform: matrix(0.98, -0.22, 0.22, 0.98, 0, 0);
  position: absolute;
}
.kunden-hero .kunden-hero-video-wrapper {
  justify-content: center;
  padding-top: 83px;
  position: relative;
  display: flex;
}
.kunden-hero .kunden-hero-video-wrapper video {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .kunden-hero .scribble-text::before {
    left: 0;
    top: 0;
  }
  .kunden-hero .kunden-hero-video-wrapper {
    padding-top: 173px;
  }
}
@media screen and (max-width: 1024px) {
  .kunden-hero video {
    width: 100%;
    height: 244px;
  }
}

.refernces-kunden-wrapper {
  background-color: var(--tonelieghtblue);
  padding: 8rem var(--padding-sides) 0rem var(--padding-sides);
}
.refernces-kunden-wrapper .clamp-start {
  width: 100%;
  border: #fff 0.15rem solid;
  height: 0.75rem;
  border-bottom: none;
}
@media screen and (max-width: 720px) {
  .refernces-kunden-wrapper .clamp-start {
    border: #fff 0.1rem solid;
    border-bottom: none;
  }
}
.refernces-kunden-wrapper .keywords-wrapper {
  display: flex;
  justify-content: end;
  gap: 15px;
  padding: 20px 20px;
}
.refernces-kunden-wrapper .keywords-wrapper p {
  background-color: var(--toneblack);
  border-radius: 1rem;
  color: #fff;
  padding: 0.4rem 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
@media screen and (max-width: 45rem) {
  .refernces-kunden-wrapper .keywords-wrapper p {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }
}
.refernces-kunden-wrapper .introducion {
  padding-bottom: 3rem;
  margin: 1rem 1rem 0rem 1rem;
  position: relative;
}
.refernces-kunden-wrapper .introducion .div {
  width: 100%;
}
.refernces-kunden-wrapper .introducion h2 {
  font-size: 40px;
}
.refernces-kunden-wrapper .introducion .introducion-content {
  display: grid;
  grid-template-columns: auto auto;
  gap: 6rem;
}
.refernces-kunden-wrapper .introducion .introducion-content .keywords-wrapper {
  position: absolute;
  right: -20px;
  top: -20px;
}
.refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups {
  display: flex;
  gap: 1rem;
  top: 4rem;
  width: 50%;
  padding-right: 0.5rem;
}
.refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups #kunde-logo-small {
  position: absolute;
  margin-left: -3rem;
  top: 0rem;
  width: 6rem;
}
.refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups img {
  height: -moz-fit-content;
  height: fit-content;
}

.half-wrapper-kunden {
  display: grid;
  background-color: var(--tonelieghtblue);
  grid-template-columns: auto auto;
  padding: 0rem 8rem;
  gap: 20px;
}
.half-wrapper-kunden .wrapper-half .colors-container {
  margin: 0.5rem;
  display: flex;
  gap: 0.6rem;
}
.half-wrapper-kunden .wrapper-half .colors-container .color-wrapper div {
  width: 9.4rem;
  height: 7.75rem;
  margin-bottom: 0.5rem;
}
.half-wrapper-kunden .wrapper-half .colors-container .color-wrapper p {
  font: italic normal 300 16px/30px Korolev;
}

@media screen and (max-width: 1024px) {
  .half-wrapper-kunden {
    grid-template-columns: auto;
    padding: 1rem;
  }
  .half-wrapper-kunden .wrapper-half {
    padding-bottom: 80px;
  }
  .half-wrapper-kunden .wrapper-half .colors-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }
  .half-wrapper-kunden .wrapper-half .colors-container .color-wrapper div {
    width: auto;
  }
  .half-wrapper-kunden .wrapper-half .image-wrapper {
    width: 100%;
  }
  .half-wrapper-kunden .wrapper-half .image-wrapper img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.full-wrapper-kunden {
  background-color: var(--tonelieghtblue);
  /*   margin: 1rem; */
  padding: 2rem 8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.full-wrapper-kunden .elements-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 160px;
  padding: 20px;
  position: relative;
}
.full-wrapper-kunden .elements-content-wrapper div {
  display: flex;
}
.full-wrapper-kunden .elements-content-wrapper .image-wrapper {
  max-width: 50%;
}
.full-wrapper-kunden .elements-content-wrapper .image-wrapper img {
  width: 100%;
}
.full-wrapper-kunden .elements-content-wrapper .full-image-wrapper {
  position: absolute;
  width: 100vw;
}
.full-wrapper-kunden .elements-content-wrapper .background-color {
  position: absolute;
  background-color: var(--tonelightbluedark);
  height: 27.2rem;
  width: 100vw;
  z-index: -1;
  top: 20px;
}
.full-wrapper-kunden .full-elements-content-wrapper {
  min-height: 100vh;
}
.full-wrapper-kunden .full-elements-content-wrapper .elements-wrapper {
  display: flex;
  height: 140vh;
  align-items: end;
  flex-direction: column;
  justify-content: end;
}
.full-wrapper-kunden .full-elements-content-wrapper .elements-wrapper .element-1 {
  width: 40%;
}
.full-wrapper-kunden .full-elements-content-wrapper .elements-wrapper .element-2 {
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .full-wrapper-kunden {
    padding: 1rem;
  }
  .full-wrapper-kunden .elements-content-wrapper {
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 10px;
  }
  .full-wrapper-kunden .elements-content-wrapper .image-big {
    grid-column: span 3;
    max-width: initial;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .full-wrapper-kunden .elements-content-wrapper .image-wrapper {
    width: auto;
    max-width: none;
  }
}
.clamp-three-close {
  justify-items: center;
}
.clamp-three-close .clamp-close {
  width: 50% !important;
}

.full-wrapper-kunden-three {
  background-color: var(--tonelieghtblue);
  /*   margin: 1rem; */
  position: relative;
}
.full-wrapper-kunden-three .clamp-wrapper {
  padding: 0rem 8rem;
}
.full-wrapper-kunden-three p:last-of-type {
  padding-right: 1rem;
  font-weight: 400;
}
.full-wrapper-kunden-three .wrapper-content-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-three .wrapper-content-full {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    margin: 1rem 1rem 0rem 1rem;
  }
  .full-wrapper-kunden-three .wrapper-content-full .clamp-wrapper {
    display: none;
  }
}
.full-wrapper-kunden-three .elements-content-wrapper-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-three .elements-content-wrapper-mobile {
    display: grid;
    grid-template-columns: 1fr;
  }
  .full-wrapper-kunden-three .elements-content-wrapper-mobile .full-image-wrapper {
    justify-self: center;
    position: relative;
  }
  .full-wrapper-kunden-three .elements-content-wrapper-mobile .full-image-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 744px;
  }
  .full-wrapper-kunden-three .elements-content-wrapper-mobile .clamp-three-close {
    padding-top: 18px;
  }
  .full-wrapper-kunden-three .elements-content-wrapper-mobile .clamp-three-close .clamp-close {
    transform: translateX(-70%);
    left: 50%;
    position: relative;
    width: 75% !important;
  }
}
.full-wrapper-kunden-three .elements-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-around;
  gap: 160px;
  padding: 20px;
  position: relative;
  background-color: var(--tonelightbluedark);
  min-height: 544px;
  padding: 1rem;
}
.full-wrapper-kunden-three .elements-content-wrapper .image-wrapper {
  max-width: 50%;
}
.full-wrapper-kunden-three .elements-content-wrapper .image-wrapper img {
  width: 100%;
}
.full-wrapper-kunden-three .elements-content-wrapper .full-image-wrapper {
  /*       position: absolute;
  width: 100vw; */
  justify-self: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-three .elements-content-wrapper .full-image-wrapper {
    display: none;
  }
}
.full-wrapper-kunden-three .elements-content-wrapper .full-image-wrapper::after {
  background: transparent linear-gradient(180deg, rgba(200, 209, 245, 0) 0%, #c8d1f5 100%) 0% 0% no-repeat padding-box;
  content: "";
  width: 342px;
  height: 75px;
  bottom: -410px;
  position: absolute;
  transform: translateY(-50%) translateX(-45%);
}
.full-wrapper-kunden-three .elements-content-wrapper .full-image-wrapper img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 744px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-45%);
}
.full-wrapper-kunden-three .elements-content-wrapper .background-color {
  position: absolute;
  background-color: var(--tonelightbluedark);
  height: 27.2rem;
  width: 100vw;
  z-index: -1;
  top: 20px;
}
.full-wrapper-kunden-three .full-elements-content-wrapper {
  /*     min-height: 100vh; */
}
.full-wrapper-kunden-three .full-elements-content-wrapper .elements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*       height: 140vh; */
  /*       align-items: end;
  flex-direction: column;
  justify-content: end; */
}
.full-wrapper-kunden-three .full-elements-content-wrapper .elements-wrapper .element-1 {
  width: 40%;
}
.full-wrapper-kunden-three .full-elements-content-wrapper .elements-wrapper .element-2 {
  width: 60%;
}

.phone-content-wrapper {
  padding: 20px 160px 20px 80px;
  gap: 20px;
}
.phone-content-wrapper .image-big {
  width: 40%;
}

.clamp-wrapper {
  padding-top: 120px;
}
.clamp-wrapper .clamp {
  width: 100%;
  border: #fff solid 0.15rem;
  height: 0.75rem;
  border-bottom: none;
}
.clamp-wrapper .clamp-close {
  width: 100%;
  border: #fff solid 0.15rem;
  height: 0.75rem;
  border-top: none;
}
.clamp-wrapper h4 {
  font-size: 24px;
  margin: 10px;
  width: auto;
  padding-bottom: 40px;
  color: #fff;
}

.small-clamp-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.small-clamp-wrapper .small-clamp {
  width: 70%;
  border: #fff solid 0.1rem;
  border-top: none;
  height: 10px;
}
.small-clamp-wrapper span {
  font-weight: 300;
  font-size: 0.8rem;
  text-align: center;
  padding-top: 20px;
}

.scribble-phone {
  position: absolute;
  right: 20%;
  transform: matrix(0.99, 0.16, -0.16, 0.99, 0, 0);
  top: 0;
}
@media screen and (max-width: 1024px) {
  .scribble-phone {
    display: none;
  }
}
.scribble-phone p {
  font-family: "Fofer";
  font-size: 50px;
}

.counter-wrapper {
  background-color: var(--tonelieghtblue);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}
.counter-wrapper .counter-pattern {
  position: absolute;
  width: 100%;
}
.counter-wrapper .counter-pattern img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.counter-wrapper .counter {
  align-items: center;
  color: var(--tonelightbluedark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  text-align: center;
  padding: 80px;
  height: 23.5rem;
}
.counter-wrapper .counter p {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .counter-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .counter-wrapper .counter {
    padding: 70px;
  }
}
.full-wrapper-kunden-center {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-center {
    padding: 1rem;
  }
}
.full-wrapper-kunden-center .content-wrapper-center {
  width: 75%;
  justify-self: center;
  padding-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-center .content-wrapper-center {
    width: 100%;
  }
}
.full-wrapper-kunden-center .content-wrapper-center .content-text-wrapper {
  margin: 1rem 1rem 0rem 1rem;
}
.full-wrapper-kunden-center p {
  font-weight: 500;
}

.cta-bottom-wrapper {
  background-color: var(--tonelightpink);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 70px;
  right: 5%;
}
.cta-bottom-wrapper h3 {
  color: var(--toneblack);
  position: relative;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
}
.cta-bottom-wrapper h3::after {
  background: url("../img/callus-scribble.svg") no-repeat;
  content: "";
  position: absolute;
  width: 10rem;
  height: 3rem;
  top: 60px;
  background-size: contain;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .cta-bottom-wrapper {
    gap: 50px;
    /* disabled */
  }
  .cta-bottom-wrapper h3 {
    padding-bottom: 20px;
  }
  .cta-bottom-wrapper h3::after {
    /*         left: 40%;
    transform: rotate(-35deg);
    height: 2.25rem;
    top: 80px; */
    left: 50%;
    transform: rotate(-30deg);
    height: 2.25rem;
    top: 8rem;
  }
}
/************** Landingpage Branding **********/
.leistungen-hero-wrapper {
  background-color: #b6bbdb;
  padding: 80px var(--padding-sides);
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("../img/bg-color-lime-hero.webp");
  background-position: top left;
  background-repeat: no-repeat;
}
.leistungen-hero-wrapper .title-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*     h1::after {
       background: url("../img/scribble+arrow.svg") no-repeat;
       content: "";
       position: absolute;
       width: 100%;
       height: 7rem;
       top: 1em;
       left: 65%;
       background-size: contain;
     }
  */
}
.leistungen-hero-wrapper .title-hero h1 {
  color: var(--tonelime);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  /*       &::after {
    content: url(../img/arrow-s-down.svg);
    display: block;
    border-bottom: none;
    position: absolute;
    width: 100%;
    height: 7rem;
    top: 1em;
    left: 65%;
  }
  &::before {
    content: "hallo";
    display: block;
    font-family: "Fofer";
    border-bottom: none;
    position: absolute;
    width: 100%;
    height: 7rem;
    top: 1em;
    left: 65%;
    transform: matrix(0.98, -0.22, 0.22, 0.98, 0, 0);
    color: var(--toneblack);
    font-size: 2rem;
  } */
}
.leistungen-hero-wrapper .title-hero .scribbleel {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: 5rem;
  top: 0.8em;
  right: 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
}
.leistungen-hero-wrapper .title-hero .scribbleel img {
  height: 1em;
  align-items: unset;
  width: unset;
}
@media screen and (max-width: 768px) {
  .leistungen-hero-wrapper .title-hero .scribbleel img {
    height: 0.5em;
  }
}
.leistungen-hero-wrapper .title-hero .scribbleel p {
  font-family: "Fofer";
  font-size: 2rem;
  color: var(--toneblack);
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .leistungen-hero-wrapper .title-hero h1::after {
    height: 80px;
    top: 100%;
    left: 0%;
  }
}
@media screen and (max-width: 25rem) {
  .leistungen-hero-wrapper .title-hero h1::after {
    top: 2em;
  }
}
.leistungen-hero-wrapper .title-hero img {
  align-items: end;
  width: 30%;
}
.leistungen-hero-wrapper .text-hero {
  max-width: 70%;
}
.leistungen-hero-wrapper .text-hero p {
  font-weight: 500;
  font-style: italic;
}
.leistungen-hero-wrapper .text-hero button {
  margin-top: 40px;
}
.leistungen-hero-wrapper .scrolldown-hero {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .leistungen-hero-wrapper {
    padding: 80px var(--padding-sides) 40px var(--padding-sides);
    background-size: 1600px;
    justify-content: normal;
    gap: 5rem;
    min-height: 100vh;
    height: auto;
  }
  .leistungen-hero-wrapper .title-hero {
    padding-top: 1rem;
  }
  .leistungen-hero-wrapper .title-hero h1 {
    font-size: 70px;
  }
  .leistungen-hero-wrapper .title-hero .scribbleel {
    position: absolute;
    left: 30px;
    top: 100%;
    transform: translateX(0%);
    padding-left: 20%;
  }
  .leistungen-hero-wrapper .title-hero .scribbleel p {
    font-size: 25px;
    transform: translateX(-30%);
  }
  .leistungen-hero-wrapper .text-hero {
    max-width: 100%;
  }
  .leistungen-hero-wrapper .text-hero h4 {
    font-size: 30px;
    letter-spacing: 0.01em;
  }
  .leistungen-hero-wrapper .text-hero button {
    margin-top: 80px;
  }
  .leistungen-hero-wrapper .scrolldown-hero {
    left: 80%;
  }
  .leistungen-hero-wrapper .scrolldown-hero img {
    width: 5.25rem;
  }
}
.newsticker-wrapper {
  background-color: var(--tonelime);
  width: 100%;
  padding: 16px 0px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  bottom: 0;
}
.newsticker-wrapper .ticker {
  display: inline-block;
  animation: marquee 20s linear infinite;
  width: 200%;
}
.newsticker-wrapper .ticker .item-collection-1,
.newsticker-wrapper .ticker .item-collection-2 {
  position: relative;
  left: 0%;
  animation: swap 40s linear infinite;
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
}

/* Transition */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%, 100% {
    left: 100%;
  }
}
.services-diclaimer-wrapper {
  background-color: var(--tonelightbluedarkbg);
  padding: 6rem var(--padding-sides);
  background-image: url("../img/bg-color-lime-b.webp");
  background-position: top right;
  background-repeat: no-repeat;
}
.services-diclaimer-wrapper .disclaimer-title {
  color: var(--tonelime);
  padding-bottom: 90px;
}
.services-diclaimer-wrapper .disclaimer-title h2 {
  text-align: center;
  font-weight: 300;
}
.services-diclaimer-wrapper .disclaimer-title h2 span {
  font-weight: 600;
  font-style: italic;
}
.services-diclaimer-wrapper .disclaimer-title hr {
  border: 20px solid #d1f83e;
  opacity: 1;
}
.services-diclaimer-wrapper .disclaimer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}
.services-diclaimer-wrapper .disclaimer-content #logo-c {
  width: clamp(90px, 8vw, var(--padding-sides));
}
.services-diclaimer-wrapper .disclaimer-content img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .disclaimer-title {
    padding: 0rem var(--padding-sides) 1rem var(--padding-sides);
  }
  .services-diclaimer-wrapper .disclaimer-title h2 {
    font-size: 46px;
  }
  .services-diclaimer-wrapper .disclaimer-title hr {
    border: 10px solid #d1f83e;
  }
  .services-diclaimer-wrapper img {
    width: 100%;
    height: inherit;
  }
}
.services-diclaimer-wrapper .parts-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
}
.services-diclaimer-wrapper .parts-wrapper .parts-title {
  text-align: center;
}
.services-diclaimer-wrapper .parts-wrapper .parts-title h3 {
  font-weight: 600;
  font-size: 70px;
  font-style: normal;
  position: relative;
}
.services-diclaimer-wrapper .parts-wrapper .parts-title h3 #lines {
  position: relative;
}
.services-diclaimer-wrapper .parts-wrapper .parts-title h3 #lines::after {
  background: url("../img/two-lines.svg") no-repeat;
  content: "";
  position: absolute;
  width: 10rem;
  height: 3rem;
  top: 60px;
  left: 0px;
  background-size: contain;
}
.services-diclaimer-wrapper .parts-wrapper .parts-title h3::after {
  background: url("../img/arrow-lime-s-down.svg") no-repeat;
  content: "";
  position: absolute;
  height: 2rem;
  width: 1.2rem;
  top: 3rem;
  left: -2rem;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .parts-wrapper .parts-title {
    padding: 0rem var(--padding-sides) 0rem var(--padding-sides);
  }
  .services-diclaimer-wrapper .parts-wrapper .parts-title h3 {
    text-align: center;
    font-size: 46px;
    line-height: 1.1em;
  }
  .services-diclaimer-wrapper .parts-wrapper .parts-title h3::after {
    left: 0rem;
  }
  .services-diclaimer-wrapper .parts-wrapper .parts-title #lines::after {
    display: none;
  }
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper {
  width: 100%;
  padding: 60px 100px;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category {
  align-items: end;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category div {
  background-color: var(--toneblack);
  border-radius: 1.25rem 1.25rem 0rem 0rem;
  box-shadow: 1rem 0.65rem 0.8rem rgba(96, 92, 128, 0.2509803922);
  padding: 0.6rem 0rem;
  width: 15rem;
  height: 2.51;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category.webdesign div {
  height: 3rem;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category.webdesign .active {
  height: 4rem;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category.webdesign .active::after {
  top: 2.2rem;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category .active {
  background-color: var(--tonelime);
  color: var(--toneblack);
  height: 70px;
  position: relative;
}
.services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category .active::after {
  content: "";
  display: block;
  background: url("../img/arrow-down.svg") no-repeat center;
  width: 1.5rem;
  height: 1.2rem;
  left: 50%;
  top: 40px;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category .active {
    height: 3rem;
  }
  .services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category .active::after {
    width: 12px;
    height: 23px;
    top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .parts-wrapper .accordion-wrapper {
    padding: 2rem 0rem;
  }
  .services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category {
    gap: 4px;
  }
  .services-diclaimer-wrapper .parts-wrapper .accordion-wrapper .ref-category div {
    font-size: 0.8rem;
    padding: 1em;
  }
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description {
  background: transparent linear-gradient(270deg, #b6bbdb 0%, #d3d7ef 50%, #b6bbdb 100%) 0% 0% no-repeat padding-box;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .clamp-wrapper {
  padding-top: 0rem;
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .clamp-wrapper .clamp {
    height: 0px;
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .clamp-wrapper .clamp-close {
    height: 0px;
  }
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  margin: 10px;
  padding-bottom: 30px;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content span {
  font-size: 0.5rem;
  padding-top: 10px;
  font-style: italic;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .big-part {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper {
  width: auto;
  display: flex;
  gap: 40px;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-big {
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-big img {
  height: 300px;
  border-top: solid var(--toneblack) 0.0125rem;
  border-bottom: solid var(--toneblack) 0.0125rem;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-three {
  display: flex;
  flex-direction: column;
  height: 300px;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-three img {
  height: 33.3%;
  border-bottom: solid var(--toneblack) 0.0125rem;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-three #logo-three-first {
  border-top: solid var(--toneblack) 0.0125rem;
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper {
    justify-content: center;
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-big img {
    height: 200px;
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .logos-wrapper .logo-three {
    height: 200px;
  }
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .text-wrapper p {
  font-weight: 300;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .text-wrapper h4 {
  margin: 0px;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .text-wrapper img {
  max-width: 13.5rem;
}
@media screen and (max-width: 1400px) {
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content {
    flex-direction: column;
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .text-wrapper {
    gap: 2rem;
    width: 100%;
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content .text-wrapper img {
    align-items: start;
    width: 50%;
  }
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content-web {
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  align-items: center;
}
.services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content-web p {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content {
    margin: 10px var(--padding-sides) 10px var(--padding-sides);
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content-web {
    margin: 10px var(--padding-sides) 10px var(--padding-sides);
  }
  .services-diclaimer-wrapper .parts-wrapper .ref-description .description .parts-content-web p {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .services-diclaimer-wrapper {
    padding: 1.25rem 0rem;
  }
  .services-diclaimer-wrapper img {
    width: auto;
  }
}
.process-wrapper {
  padding: 120px clamp(120px, 22vw, 600px);
  position: relative;
}
.process-wrapper #logo-icon {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
}
.process-wrapper .process-title {
  color: var(--tonelime);
  display: flex;
  text-align: center;
  justify-content: center;
}
.process-wrapper .process-title h2 {
  position: relative;
}
.process-wrapper .process-title h2::before {
  content: "";
  display: block;
  background: url("../img/process-img.svg") no-repeat center;
  width: 336px;
  height: 68px;
  top: -80px;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .process-wrapper .process-title h2::before {
    height: 60px;
    left: 50%;
  }
}
.process-wrapper .timeline-wrapper {
  display: flex;
  position: relative;
}
.process-wrapper .timeline-wrapper .process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: none;
  align-items: center;
}
.process-wrapper .timeline-wrapper .process-timeline img {
  width: 40%;
}
.process-wrapper .timeline-wrapper .process-content {
  display: flex;
  padding: 6px 24px;
  gap: 40px;
  flex-direction: column;
  margin-left: 39px;
}
.process-wrapper .timeline-wrapper .process-content .process {
  position: relative;
}
.process-wrapper .timeline-wrapper .process-content .process h3 {
  color: var(--tonelime);
  font-weight: 300;
  margin: 10px 0px;
}
.process-wrapper .timeline-wrapper .process-content .process h3 strong {
  font-size: 1em;
  position: relative;
  padding-right: 30px;
}
.process-wrapper .timeline-wrapper .process-content .process h3 strong::before {
  content: "";
  display: block;
  background: url("../img/circle.svg") no-repeat center;
  width: 64px;
  height: 64px;
  top: -14px;
  position: absolute;
  left: -26px;
}
.process-wrapper .timeline-wrapper .process-content .process p {
  color: #fff;
  margin-left: 50px;
  font-weight: 300;
}
.process-wrapper .timeline-wrapper .process-content .process::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  top: 20px;
  position: absolute;
  left: -70px;
  background-color: var(--tonelime);
  border-radius: 1rem;
}
.process-wrapper .timeline-wrapper .process-content .end::before {
  content: "";
  background: url("../img/timeline-end.svg") no-repeat;
  width: 64px;
  height: 84px;
  display: block;
  bottom: -80px;
  position: absolute;
  left: -28px;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .process-wrapper .timeline-wrapper .process-content {
    padding: 20px 0px 0px 0.4rem;
  }
  .process-wrapper .timeline-wrapper .process-content .process::before {
    left: -54px;
  }
  .process-wrapper .timeline-wrapper .process-content .end::before {
    width: 3rem;
    height: 3.75rem;
    bottom: -3.5rem;
    left: -1.4rem;
    border-radius: 1rem;
  }
}
.process-wrapper .timeline-wrapper::before {
  content: "";
  background: var(--tonelime);
  position: absolute;
  width: 0.1rem;
  top: 40px;
  bottom: 0;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .process-wrapper {
    padding: 120px 1rem 160px 2rem;
  }
}
.latest-works-wrapper {
  background-color: var(--tonelightbluedarkbg);
  padding: 6rem 0rem 2rem 0rem;
  background-image: url("../img/latest-work-color.webp");
  background-position: top right;
  background-repeat: no-repeat;
}
.latest-works-wrapper .title {
  text-align: center;
}
.latest-works-wrapper .introducion-lw {
  margin: 1rem 1rem 3rem 1rem;
  height: 750px;
  position: relative;
}
.latest-works-wrapper .introducion-lw .div {
  width: 100%;
}
.latest-works-wrapper .introducion-lw h2 {
  font-size: 2rem;
}
.latest-works-wrapper .introducion-lw .introducion-content-lw {
  display: grid;
  grid-template-columns: auto auto;
  gap: 6rem;
  position: absolute;
  align-items: flex-start;
  padding-top: 3rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--animationtime) linear;
}
.latest-works-wrapper .introducion-lw .introducion-content-lw .keywords-wrapper {
  position: absolute;
  right: -1rem;
  top: -1rem;
}
@media screen and (max-width: 750px) {
  .latest-works-wrapper .introducion-lw .introducion-content-lw .keywords-wrapper {
    right: 0rem;
  }
}
.latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-text {
  position: relative;
  left: -150%;
  transition: left var(--animationtime) ease-in;
}
.latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  position: relative;
  right: -150%;
  transition: right var(--animationtime) ease-in;
  top: 3rem;
}
.latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups #kunde-logo-small {
  position: absolute;
  left: -3rem;
  top: -2rem;
  width: 134px;
}
@media screen and (max-width: 1440px) {
  .latest-works-wrapper .introducion-lw .introducion-content-lw {
    gap: 2rem;
    display: none;
    flex-direction: column;
  }
  .latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-text {
    width: 100%;
  }
  .latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups {
    width: 100%;
  }
  .latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups div img {
    width: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
  .latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups div #kunde-logo-small {
    width: 110px;
  }
  .latest-works-wrapper .introducion-lw .active {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups div img {
    width: auto;
    height: 150px;
  }
  .latest-works-wrapper .introducion-lw .introducion-content-lw .introducion-mockups div #kunde-logo-small {
    left: 7rem;
    top: -3rem;
    height: 100px;
  }
}
.latest-works-wrapper .introducion-lw .project-next-wrapper {
  position: absolute;
  width: 100%;
  bottom: -8rem;
}
.latest-works-wrapper .introducion-lw .active {
  opacity: 1;
  width: 100%;
  overflow: visible;
}
.latest-works-wrapper .introducion-lw .active .introducion-text {
  left: 0%;
  transition: left var(--animationtime) ease-out 0.2s;
  width: calc(100% - 40px);
  margin-top: -60px;
}
.latest-works-wrapper .introducion-lw .active .introducion-mockups {
  right: 0%;
  transition: right var(--animationtime) ease-out 0.2s;
}
@media screen and (max-width: 1440px) {
  .latest-works-wrapper .introducion-lw .active .introducion-text {
    margin-top: -30px;
  }
  .latest-works-wrapper .introducion-lw .active .introducion-mockups {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .latest-works-wrapper .introducion-lw .introducion-content {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 1450px) {
  .latest-works-wrapper .introducion-lw {
    height: 100vh;
    padding-bottom: 1rem;
  }
}
.latest-works-wrapper .refernces-kunden-wrapper {
  padding-top: 2.5rem;
  background-color: transparent;
}
.latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups {
  display: flex;
  flex-direction: column;
}
.latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups div {
  display: flex;
  gap: 10px;
}
.latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-style: italic;
  font-weight: 300;
}
.latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups a strong {
  font-style: normal;
  font-size: 1em;
}
.latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups a #arrow {
  background-color: var(--tonelime);
  border-radius: 1rem;
  border: solid #fff 0.05rem;
  height: 40px;
  width: 40px;
  padding: 10px;
  transform: rotate(-90deg);
  padding: 5px 10px 10px 10px;
}
.latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups a:hover {
  color: var(--tonelime);
}
@media screen and (max-width: 768px) {
  .latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups #kunde-logo-small {
    width: 4.5rem;
    left: -80px;
    top: -80px;
  }
  .latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups div img {
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups a {
    font-size: 0.75rem;
    width: 100vw;
  }
  .latest-works-wrapper .refernces-kunden-wrapper .introducion-mockups a #arrow {
    height: 2rem;
    width: 2rem;
    padding: 12px;
  }
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav {
  padding-top: 40px;
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav .project-name {
  font-size: 25px;
  text-transform: uppercase;
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav .line-long {
  position: relative;
  border: 0.075rem solid #fff;
  opacity: 1;
  margin: 10px 0;
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav .line-long #short {
  position: absolute;
  border: 0.15rem solid var(--toneblack);
  opacity: 1;
  width: 20%;
  top: -0.15rem;
  left: -0.1rem;
  border-radius: 1rem;
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav div .nav-direc {
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  z-index: 5;
}
.latest-works-wrapper .refernces-kunden-wrapper .gallery-nav div .nav-direc:hover {
  color: var(--tonelime);
}
@media screen and (max-width: 768px) {
  .latest-works-wrapper .refernces-kunden-wrapper .gallery-nav {
    padding-top: 80px;
  }
  .latest-works-wrapper .refernces-kunden-wrapper .gallery-nav .project-name {
    font-size: 1rem;
  }
  .latest-works-wrapper .refernces-kunden-wrapper .gallery-nav .line-long {
    margin: 20px 0;
  }
  .latest-works-wrapper .refernces-kunden-wrapper div img {
    height: 0.5rem;
  }
  .latest-works-wrapper .refernces-kunden-wrapper div .nav-direc {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 768px) {
  .latest-works-wrapper {
    padding: 40px var(--padding-sides) 40px var(--padding-sides);
  }
  .latest-works-wrapper .refernces-kunden-wrapper {
    padding-top: 20px;
    padding: 1rem 0rem 0rem 0rem;
  }
}
.sm-disclaimer-wrapper {
  background-position-y: 50%;
  background-color: var(--tonelightbluedarkbg);
}
.sm-disclaimer-wrapper .sm-diclaimer-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0rem 20px 0rem 20px;
}
.sm-disclaimer-wrapper .sm-diclaimer-intro img {
  width: 1.5rem;
}
.sm-disclaimer-wrapper .sm-diclaimer-intro p {
  width: 50%;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .sm-disclaimer-wrapper .sm-diclaimer-intro p {
    width: 100%;
  }
}
.sm-disclaimer-wrapper .disclaimer-content {
  padding-top: 70px;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper {
  background-color: var(--toneblack);
  width: 800px;
  border: solid 0.75rem var(--tonelightbluedark);
  border-radius: 4.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper #icon {
  position: absolute;
  top: -1.5rem;
  left: calc(50% - 0.75rem);
  width: 2rem;
  height: 2rem;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-name {
  padding: 70px 20px 40px 20px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-name {
    font-size: 1rem;
  }
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight {
  display: flex;
  gap: 40px;
  padding-bottom: 50px;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 0.6rem;
  gap: 20px;
  text-transform: uppercase;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight div {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: #fff solid 0.1rem;
  background-color: var(--tonelime);
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight div img {
  width: 100%;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight #plus {
  padding: 24px;
  border: #fff solid 0.2rem;
}
@media screen and (max-width: 768px) {
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight {
    gap: 30px;
    justify-content: space-between;
    padding: 0rem 20px 40px 20px;
  }
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight {
    gap: 30px;
  }
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight div {
    height: 60px;
    width: 60px;
  }
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight div img {
    height: 100%;
  }
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-highlight .highlight #plus {
    padding: 0px 17px;
  }
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-categ {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-categ div {
  display: flex;
  justify-content: center;
  width: 60px;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-categ div img {
  padding-bottom: 10px;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-categ #feed {
  border-bottom: var(--tonelime) solid 0.2rem;
}
@media screen and (max-width: 768px) {
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-categ div {
    width: 1rem;
  }
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-categ div img {
    padding-bottom: 20px;
  }
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-feed {
  display: grid;
  grid-template-columns: auto auto auto;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-feed a img {
  width: 100%;
  height: 100%;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-link {
  padding: 50px 20px;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-link a {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 20px;
  font-style: italic;
  font-weight: 300;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-link a strong {
  font-style: normal;
  font-size: 1em;
}
.sm-disclaimer-wrapper .disclaimer-content .phone-wrapper .sm-link a #arrow {
  background-color: var(--tonelime);
  border-radius: 1rem;
  border: solid #fff 0.05rem;
  height: 40px;
  width: 40px;
  padding: 10px;
  transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .sm-disclaimer-wrapper {
    padding: 4rem 0rem;
    background-image: none;
  }
  .sm-disclaimer-wrapper .disclaimer-content .phone-wrapper {
    width: 100%;
    border: none;
    border-radius: 0%;
    border-top: solid 0.75rem var(--tonelightbluedark);
    border-bottom: solid 0.75rem var(--tonelightbluedark);
  }
}
.print-disclaimer-wrapper {
  background-color: var(--tonelieghtblue);
}
.print-disclaimer-wrapper #collage {
  width: 100%;
}
.print-disclaimer-wrapper #logo {
  margin-top: -3rem;
  width: 6rem;
  transform: translateX(-50%);
  margin-left: 50%;
}
.print-disclaimer-wrapper .content-wrapper {
  background-color: var(--tonelieghtbluedark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  overflow: hidden;
}
.print-disclaimer-wrapper .content-wrapper .title {
  display: flex;
  justify-content: center;
  position: relative;
}
.print-disclaimer-wrapper .content-wrapper .title h2 {
  position: relative;
  text-align: center;
  z-index: 20;
}
.print-disclaimer-wrapper .content-wrapper .title h2::after {
  background: url("../img/arrow-lime-s-down.svg") no-repeat;
  content: "";
  position: absolute;
  height: 2rem;
  width: 1.2rem;
  top: 3rem;
  left: -2rem;
  background-size: contain;
}
.print-disclaimer-wrapper .content-wrapper .title #lines {
  position: relative;
}
.print-disclaimer-wrapper .content-wrapper .title #lines::after {
  background: url("../img/two-lines.svg") no-repeat;
  content: "";
  position: absolute;
  width: 10rem;
  height: 3rem;
  top: 2.25rem;
  left: -0.75rem;
  background-size: contain;
}
.print-disclaimer-wrapper .content-wrapper .title::before {
  background: url("../img/hand-print-2.webp") no-repeat;
  content: "";
  position: absolute;
  width: 8rem;
  height: 7rem;
  top: 0;
  right: 0;
  background-size: contain;
}
.print-disclaimer-wrapper .content-wrapper .title::after {
  background: url("../img/hand-print.webp") no-repeat;
  content: "";
  position: absolute;
  width: 10rem;
  height: 7.5rem;
  top: 2.25rem;
  left: -0.75rem;
  background-size: contain;
}
.print-disclaimer-wrapper .content-wrapper p {
  align-self: center;
  text-align: center;
  width: 50%;
  font-style: italic;
  padding-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 35rem) {
  .print-disclaimer-wrapper .content-wrapper .title::before {
    right: -4rem;
  }
  .print-disclaimer-wrapper .content-wrapper .title::after {
    top: -2.75rem;
    left: -3.5rem;
  }
  .print-disclaimer-wrapper .content-wrapper p {
    padding-top: 100px;
    width: 100%;
  }
}

.impressum {
  padding: 180px var(--padding-sides) 80px 180px;
}
.impressum p {
  padding-bottom: 1em;
  font-weight: 300;
}

body {
  background-color: var(--toneblack);
  background-image: url("../img/wellen-boldcrew.svg");
  background-repeat: no-repeat;
  background-position: center 150px;
  background-size: cover;
}

.hero-container {
  display: flex;
  align-items: center;
  height: 100vh;
  margin-left: var(--padding-sides);
}
.hero-container .whatwedid-text-container h1 {
  color: #d1f83f;
  line-height: 110px;
}
.hero-container .whatwedid-text-container h3 {
  font-style: medium;
  line-height: 40px;
}
.hero-container .whatwedid-text-container p {
  font-size: 20px;
  margin-top: 40px;
}

.hero-container-whatwedid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  padding-left: var(--padding-sides);
  width: 100%;
  height: 100vh;
}
.hero-container-whatwedid .whatwedid-text-container h1 {
  color: #d1f83f;
  line-height: 1em;
}
.hero-container-whatwedid .whatwedid-text-container h3 {
  font-weight: bold;
  color: white;
  line-height: 40px;
}
.hero-container-whatwedid .whatwedid-text-container p {
  font-size: 20px;
  margin-top: 40px;
  font-weight: 300;
  color: white;
}
.hero-container-whatwedid .images-container {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hero-container-whatwedid .images-container::-webkit-scrollbar {
  display: none;
}
.hero-container-whatwedid .images-container .image-stack {
  user-select: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.hero-container-whatwedid .images-container .image-stack img {
  position: sticky;
  top: 0;
  display: block;
  margin: 0 auto;
  width: 100vmin;
  height: 100vmin;
  border-radius: 3px;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

@media screen and (max-width: 1024px) {
  .hero-container-whatwedid {
    grid-template-columns: 1fr;
    margin-left: 0px;
    padding-top: 210px;
  }
  .hero-container-whatwedid .whatwedid-text-container {
    padding: 0rem 20px;
  }
  .hero-container-whatwedid .whatwedid-text-container h1 {
    line-height: 85px;
  }
  .hero-container-whatwedid .images-container {
    height: 500px;
  }
  .hero-container-whatwedid .images-container .image-stack {
    position: relative;
  }
  .hero-container-whatwedid .images-container .image-stack img:nth-child(1) {
    transform: scale(0.6) rotate(-12.5deg);
  }
  .hero-container-whatwedid .images-container .image-stack img:nth-child(2) {
    transform: scale(0.6) rotate(-7.5deg);
  }
  .hero-container-whatwedid .images-container .image-stack img:nth-child(3) {
    transform: scale(0.6) rotate(-2.5deg);
  }
  .hero-container-whatwedid .images-container .image-stack img:nth-child(4) {
    transform: scale(0.6) rotate(2.5deg);
  }
  .hero-container-whatwedid .images-container .image-stack img:nth-child(5) {
    transform: scale(0.6) rotate(7.5deg);
  }
  .hero-container-whatwedid .images-container .image-stack img:nth-child(6) {
    transform: scale(0.6) rotate(12.5deg);
  }
  .hero-container-whatwedid .images-container .image-stack img {
    position: absolute;
  }
}
.projects-container {
  background-color: var(--toneblack);
  /*   height: 896px; */
  padding: 130px var(--padding-sides);
  /*   .project {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 10px;
    position: relative;
  }
  .project img {
    width: 100%;
    filter: grayscale(80%);
    transition: filter 0.3s;
  }
  .project.active img {
    filter: grayscale(0%);
  }
  .project-title {
    margin-top: 10px;
    font-size: 16px;
  } */
}
.projects-container .swiper {
  /*     width: 600px; */
  height: auto;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.projects-container .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-bottom: 25px;
}
.projects-container .swiper .swiper-slide img {
  filter: brightness(0.5);
  cursor: pointer;
}
.projects-container .swiper .swiper-slide .project-title {
  color: white;
  cursor: pointer;
  font-size: 16px;
  filter: brightness(0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
.projects-container .swiper .swiper-slide .project-title::after {
  content: attr(data-subtitle);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  text-align: center;
}
.projects-container .swiper .swiper-slide-active .project-title {
  filter: brightness(1);
}
.projects-container .swiper .swiper-slide-active img {
  filter: brightness(1);
}
.projects-container .swiper .swiper-button-next,
.projects-container .swiper .swiper-button-prev {
  bottom: 0;
  top: unset;
  color: white;
  transform: scale(0.4);
}
.projects-container .swiper .swiper-button-next:hover,
.projects-container .swiper .swiper-button-prev:hover {
  opacity: 1;
  color: #d1f83f;
}
.projects-container .swiper .swiper-button-next {
  display: flex;
  gap: 20px;
  padding-right: 34px;
}
.projects-container .swiper .swiper-button-next p {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.projects-container .swiper .swiper-scrollbar {
  position: relative;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  background-color: gray;
  margin-top: 70px;
  margin-bottom: 40px;
}
.projects-container .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #d1f83f;
  /*         width: 20% !important;
  height: 5px; */
}
.projects-container .swiper .swiper-scrollbar .currentactive {
  position: absolute;
  left: 0;
  color: white;
  top: -30px;
  opacity: 0.67;
  text-transform: uppercase;
  /*         &::after {
    content: "Click here";
    background: transparent
      linear-gradient(270deg, #131217 0%, rgba(19, 18, 23, 0) 100%) 0% 0%
      no-repeat padding-box;
    height: 48px;
    width: 48px;
    position: absolute;
    right: 0;
    top: 0;
  } */
}
.projects-container .swiper .swiper-scrollbar .countmax {
  position: absolute;
  left: 28px;
  color: white;
  top: 11px;
  opacity: 1;
  text-transform: uppercase;
}
.projects-container .swiper .swiper-scrollbar .nextactive {
  position: absolute;
  right: 0;
  color: white;
  top: -30px;
  opacity: 0.67;
  text-transform: uppercase;
}
.projects-container .swiper .swiper-scrollbar .nextactive::after {
  content: "";
  background: transparent linear-gradient(270deg, #131217 0%, rgba(19, 18, 23, 0) 100%) 0% 0% no-repeat padding-box;
  height: 48px;
  width: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
.projects-container .scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none;
  text-align: center;
  padding: 150px 0px 70px 200px;
}
.projects-container .scroll-container::-webkit-scrollbar {
  display: none;
}
.projects-container .projectname-container p {
  margin-left: 220px;
}
.projects-container .scrollbar {
  width: 70%;
  height: 5px;
  background: #ffffff;
  margin: 10px auto;
  position: relative;
  border-radius: 5px;
}
.projects-container .scrollbar-thumb {
  width: 20%;
  height: 5px;
  background: #d1f83f;
  position: absolute;
  border-radius: 5px;
}

@media screen and (max-width: 1024px) {
  .projects-container {
    padding: 70px 20px;
  }
}
.logo-container {
  text-align: center;
  margin: 40px 0px 80px 0px;
}
.logo-container img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.container-dreambrand {
  background-color: #fadbfe;
  color: #000;
  left: 0px;
  width: auto;
  text-align: center;
  padding-bottom: 78px;
}
.container-dreambrand h5 {
  font-size: 55px;
  font-style: medium;
  text-align: center;
  padding-top: 60px;
}
.container-dreambrand button {
  background-color: var(--tonelime);
  color: #000;
  border-radius: 43px;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.container-dreambrand button:hover {
  background-color: var(--fff);
}

@media only screen and (max-width: 375px) {
  * {
    font-size: 16px;
  }
  .hero-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    margin-left: 0;
  }
  .hero-container .whatwedid-text-container {
    position: static;
  }
  .hero-container .whatwedid-text-container h1 {
    position: static;
    transform: none;
    line-height: 70px;
    font-size: 70px;
  }
  .hero-container .whatwedid-text-container h3 {
    margin-top: 20px;
    line-height: 40px;
  }
  .hero-container .whatwedid-text-container p {
    font-size: 16px;
    margin-top: 20px;
  }
  .hero-container .image-stack {
    width: 150px;
    height: 150px;
    margin-top: 230px;
  }
  .container-dreambrand h5 {
    font-size: 30px;
    margin: 0px 25px 25px 25px;
  }
}
/* TODO Björn test */
.hidden {
  display: none;
}

.project-modal {
  background-color: var(--tonelightpink);
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
}
.project-modal .content {
  background-color: #000;
  text-align: center;
  max-width: 47.1rem;
  border-radius: 1.75rem;
  padding: 3rem 5rem;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.project-modal .content .form-x-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.project-modal .content .boldcrew-logo {
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}
.project-modal .content h3 {
  color: var(--tonered);
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
}
.project-modal .content p {
  color: var(--white);
  padding-bottom: 2rem;
}
.project-modal .content .button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.project-modal .content .button-container button {
  max-width: 15.8rem;
  width: 100%;
  background-color: var(--tonered);
  color: var(--white);
}
@media only screen and (max-width: 1024px) {
  .project-modal .content {
    padding: 2rem 1rem;
  }
}

/************** Landingpage Kunden-Unterseite **********/
.kunden-underpage-hero {
  background-color: var(--background-underpage-color);
  padding: 8rem var(--padding-sides) 2rem var(--padding-sides);
  background-size: 110vw;
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: -30px;
}
.kunden-underpage-hero .kunden-underpage-title {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.kunden-underpage-hero .kunden-underpage-title .subtitle {
  color: var(--font-underpage-color);
  font-weight: 300;
  letter-spacing: 0.41px;
  font-size: 27px;
}
.kunden-underpage-hero .kunden-underpage-title h1 {
  color: var(--font-underpage-color);
  letter-spacing: 4.44px;
  font-size: 74px;
  margin-top: 6px;
}
.kunden-underpage-hero .kunden-underpage-title .the-line {
  border: 15px solid #d5f952;
}
.kunden-underpage-hero .kunden-underpage-title img {
  width: 280px;
}
.kunden-underpage-hero .scribble-text {
  font-family: "Fofer";
  position: relative;
}
.kunden-underpage-hero .scribble-text::before {
  content: url(../img/arrow-s-down.svg);
  display: block;
  width: 100%;
  height: 0.75rem;
  border-bottom: none;
  position: relative;
  left: 100px;
  top: -35px;
}
.kunden-underpage-hero .scribble-text p {
  font-family: "Fofer";
  font-size: 2rem;
  transform: matrix(0.98, -0.22, 0.22, 0.98, 0, 0);
  position: absolute;
}
.kunden-underpage-hero .kunden-underpage-hero-video-wrapper {
  justify-self: center;
  position: relative;
  display: flex;
}
.kunden-underpage-hero .kunden-underpage-hero-video-wrapper video {
  width: 100%;
}
.kunden-underpage-hero .website-page-wrapper {
  display: flex;
  gap: 12px;
  width: calc(100% - 5rem);
  justify-content: flex-end;
}
.kunden-underpage-hero .website-page-wrapper .website-page {
  width: 40px;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kunden-underpage-hero .website-page-wrapper .website-page img {
  transform: rotate(-90deg);
}
.kunden-underpage-hero .website-page-wrapper .website-page:hover ~ .website-page-text {
  color: var(--tonelime);
}
.kunden-underpage-hero .website-page-wrapper .website-page:hover {
  background-color: var(--tonelime);
}
.kunden-underpage-hero .website-page-wrapper .website-page-text {
  letter-spacing: 1.6px;
  color: #fff;
  text-transform: uppercase;
}
.kunden-underpage-hero .website-page-wrapper .website-page-text p {
  color: inherit;
}
.kunden-underpage-hero .website-page-wrapper .website-page-text a {
  color: inherit;
  font-weight: 300;
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .kunden-underpage-hero .scribble-text::before {
    left: 0;
    top: 0;
  }
  .kunden-underpage-hero .kunden-underpage-hero-video-wrapper {
    padding-top: 173px;
  }
}

.kunden-back-overview {
  background-color: var(--tonelime);
  padding: 5px 64px 10px 64px;
  position: fixed;
  top: calc(35vh + 78px);
  border-radius: 0px 0px 25px 25px;
  transform: matrix(0, -1, 1, 0, -91, 0);
  left: 0;
  width: 222px;
  height: 40px;
  z-index: 99;
  cursor: pointer;
}
.kunden-back-overview .kunden-back-overview-text {
  overflow: visible;
  color: black;
  white-space: nowrap;
  cursor: pointer;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.056rem;
  line-height: 1.5rem;
}

.kunden-back-overview:hover {
  background-color: var(--tonered);
}

.scribble-text-overview {
  font-family: "Fofer";
  position: fixed;
  top: 2rem;
  left: 16rem;
  z-index: 99;
  rotate: 100deg;
}
.scribble-text-overview::after {
  content: url(../img/arrow-left.svg);
  display: block;
  width: 100%;
  height: 0.75rem;
  border-bottom: none;
  position: relative;
  left: 2.5rem;
  top: 5rem;
}
.scribble-text-overview p {
  font-family: "Fofer";
  font-size: 1.5rem;
  transform: matrix(0.98, -0.22, 0.22, 0.98, 0, 0);
  position: absolute;
  color: var(--font-underpage-color);
  line-height: 30px;
}

.kunden-back-overview-Mobile {
  display: none;
}
.half-wrapper-kunden-underpage {
  display: grid;
  background-color: var(--background-underpage-color);
  grid-template-columns: 1fr 1fr;
  padding: 160px;
  padding: 7rem var(--padding-sides) 4rem var(--padding-sides);
  gap: 20px;
}
.half-wrapper-kunden-underpage .wrapper-half .colors-container {
  margin: 0.5rem;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
}
@media screen and (min-width: 1800px) {
  .half-wrapper-kunden-underpage .wrapper-half .colors-container {
    height: 285px;
  }
}
.half-wrapper-kunden-underpage .wrapper-half .colors-container .color-wrapper {
  min-height: 188px;
}
.half-wrapper-kunden-underpage .wrapper-half .colors-container .color-wrapper div {
  width: 100%;
  height: 100%;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: end;
  padding-left: 17px;
  padding-right: 12px;
  padding-bottom: 20px;
  align-items: end;
}
.half-wrapper-kunden-underpage .wrapper-half .colors-container .color-wrapper div p {
  /*             font: italic normal 300 16px/30px Korolev; */
  font-size: 18px;
  font-weight: normal;
  /*             transform: matrix(0, -1, 1, 0, 0, 0) translateX(-25px)
    translateY(20px); */
  writing-mode: sideways-lr;
}
.half-wrapper-kunden-underpage .wrapper-half .colors-container .color-wrapper div p:last-of-type {
  /*               transform: matrix(0, -1, 1, 0, 0, 0) translateY(45px); */
  font-weight: 300;
  font-size: 17px;
  font-style: italic;
  writing-mode: sideways-lr;
}
.half-wrapper-kunden-underpage .wrapper-half .colors-container .color-wrapper div:last-child {
  font-size: 17px;
  font-weight: 300;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0.5rem 2rem;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper .clamp-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper .clamp-container .clamp-wrapper {
  visibility: hidden;
  padding-top: 0px;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper .clamp-container-second {
  display: flex;
  flex-direction: column;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper .clamp-container-second .clamp-wrapper {
  padding-top: 0px;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper .clamp-container-second .clamp-wrapper h4 {
  text-align: center;
  font-weight: 300;
  font-style: italic;
  text-transform: unset;
  font-size: 16px;
}
.half-wrapper-kunden-underpage .wrapper-half .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.half-wrapper-kunden-underpage .wrapper-half .clamp-wrapper {
  padding-top: 0px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.full-wrapper-kunden-underpage {
  background-color: var(--background-underpage-color);
  padding: 4rem var(--padding-sides) 4rem var(--padding-sides);
  position: relative;
  display: flex;
  flex-direction: column;
}
.full-wrapper-kunden-underpage .elements-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 20px;
  position: relative;
  /* line border after element  */
}
.full-wrapper-kunden-underpage .elements-content-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-wrapper {
  width: 100%;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-wrapper img {
  width: 100%;
  max-height: 508px;
  -o-object-fit: contain;
     object-fit: contain;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .full-image-wrapper {
  position: absolute;
  width: 100vw;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-three-wrapper-underpage {
  display: flex;
  flex-direction: column;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-three-wrapper-underpage .image-three-content-underpage {
  display: grid;
  justify-items: center;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-three-wrapper-underpage .image-three-content-underpage.one {
  grid-template-columns: 1fr;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-three-wrapper-underpage .image-three-content-underpage.two {
  grid-template-columns: 1fr 1fr;
}
.full-wrapper-kunden-underpage .elements-content-wrapper .image-three-wrapper-underpage .image-three-content-underpage.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.full-wrapper-kunden-underpage .full-elements-content-wrapper {
  min-height: 100vh;
}
.full-wrapper-kunden-underpage .full-elements-content-wrapper .elements-wrapper {
  display: flex;
  height: 140vh;
  align-items: end;
  flex-direction: column;
  justify-content: end;
}
.full-wrapper-kunden-underpage .full-elements-content-wrapper .elements-wrapper .element-1 {
  width: 40%;
}
.full-wrapper-kunden-underpage .full-elements-content-wrapper .elements-wrapper .element-2 {
  width: 60%;
}

.clamp-three-close {
  justify-items: center;
}
.clamp-three-close .clamp-close {
  width: 50% !important;
}

.full-wrapper-kunden-underpage-three {
  background-color: var(--tonelieghtblue);
  /*   margin: 1rem; */
  position: relative;
}
.full-wrapper-kunden-underpage-three .clamp-wrapper {
  padding-left: 1rem;
}
.full-wrapper-kunden-underpage-three p:last-of-type {
  padding-right: 1rem;
  font-weight: 600;
}
.full-wrapper-kunden-underpage-three .wrapper-content-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-three .wrapper-content-full {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .full-wrapper-kunden-underpage-three .wrapper-content-full .clamp-wrapper {
    display: none;
  }
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-three .elements-content-wrapper-mobile {
    display: grid;
    grid-template-columns: 1fr;
  }
  .full-wrapper-kunden-underpage-three .elements-content-wrapper-mobile .full-image-wrapper {
    justify-self: center;
    position: relative;
  }
  .full-wrapper-kunden-underpage-three .elements-content-wrapper-mobile .full-image-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 744px;
  }
  .full-wrapper-kunden-underpage-three .elements-content-wrapper-mobile .clamp-three-close {
    padding-top: 18px;
  }
  .full-wrapper-kunden-underpage-three .elements-content-wrapper-mobile .clamp-three-close .clamp-close {
    transform: translateX(-70%);
    left: 50%;
    position: relative;
    width: 75% !important;
  }
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-around;
  gap: 160px;
  padding: 20px;
  position: relative;
  background-color: var(--tonelightbluedark);
  min-height: 544px;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-three .elements-content-wrapper .elements-wrapper {
    gap: 30px;
  }
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper .image-wrapper {
  max-width: 50%;
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper .image-wrapper img {
  width: 100%;
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper .full-image-wrapper {
  /*       position: absolute;
  width: 100vw; */
  justify-self: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-three .elements-content-wrapper .full-image-wrapper {
    display: none;
  }
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper .full-image-wrapper::after {
  background: transparent linear-gradient(180deg, rgba(200, 209, 245, 0) 0%, #c8d1f5 100%) 0% 0% no-repeat padding-box;
  content: "";
  width: 342px;
  height: 75px;
  bottom: -410px;
  position: absolute;
  transform: translateY(-50%) translateX(-45%);
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper .full-image-wrapper img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 744px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-45%);
}
.full-wrapper-kunden-underpage-three .elements-content-wrapper .background-color {
  position: absolute;
  background-color: var(--tonelightbluedark);
  height: 27.2rem;
  width: 100vw;
  z-index: -1;
  top: 20px;
}
.full-wrapper-kunden-underpage-three .full-elements-content-wrapper {
  /*     min-height: 100vh; */
}
.full-wrapper-kunden-underpage-three .full-elements-content-wrapper .elements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*       height: 140vh; */
  /*       align-items: end;
  flex-direction: column;
  justify-content: end; */
}
.full-wrapper-kunden-underpage-three .full-elements-content-wrapper .elements-wrapper .element-1 {
  width: 40%;
}
.full-wrapper-kunden-underpage-three .full-elements-content-wrapper .elements-wrapper .element-2 {
  width: 60%;
}

.phone-content-wrapper {
  padding: 20px 160px 20px 80px;
  gap: 20px;
}
.phone-content-wrapper .image-big {
  width: 40%;
}

.clamp-wrapper {
  padding-top: 120px;
}
.clamp-wrapper .clamp {
  width: 100%;
  border: #fff solid 0.15rem;
  height: 0.75rem;
  border-bottom: none;
}
.clamp-wrapper .clamp-close {
  width: 100%;
  border: #fff solid 0.15rem;
  height: 0.75rem;
  border-top: none;
}
.clamp-wrapper h4 {
  padding-left: 6px;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .clamp-wrapper h4 {
    padding-left: 6px;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 0px;
  }
}
.small-clamp-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.small-clamp-wrapper .small-clamp {
  width: 70%;
  border: #fff solid 0.1rem;
  border-top: none;
  height: 10px;
}
.small-clamp-wrapper span {
  font-weight: 300;
  font-size: 0.8rem;
  text-align: center;
  padding-top: 20px;
}

.scribble-phone {
  position: absolute;
  right: 20%;
  transform: matrix(0.99, 0.16, -0.16, 0.99, 0, 0);
  top: -50px;
}
@media screen and (max-width: 1024px) {
  .scribble-phone {
    display: none;
  }
}
.scribble-phone p {
  font-family: "Fofer";
  font-size: 50px;
}

.counter-wrapper {
  background-color: var(--tonelieghtblue);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}
.counter-wrapper .counter-pattern {
  position: absolute;
  width: 100%;
}
.counter-wrapper .counter-pattern img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.counter-wrapper .counter {
  align-items: center;
  color: var(--tonelightbluedark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  text-align: center;
  padding: 80px;
  height: 23.5rem;
}
.counter-wrapper .counter p {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .counter-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .counter-wrapper .counter {
    padding: 70px;
  }
}
.full-wrapper-kunden-underpage-center {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-center {
    padding: 1rem;
  }
}
.full-wrapper-kunden-underpage-center .content-wrapper-center {
  width: 70%;
  justify-self: center;
  padding-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-center .content-wrapper-center {
    width: 100%;
  }
}
.full-wrapper-kunden-underpage-center .content-wrapper-center .content-text-wrapper {
  margin: 1rem 1rem 0rem 1rem;
}
.full-wrapper-kunden-underpage-center p {
  font-weight: 500;
}

.cta-bottom-wrapper {
  background-color: var(--tonelightpink);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 70px;
}
.cta-bottom-wrapper h3 {
  color: var(--toneblack);
  position: relative;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
}
.cta-bottom-wrapper h3::after {
  background: url("../img/callus-scribble.svg") no-repeat;
  content: "";
  position: absolute;
  width: 10rem;
  height: 3rem;
  top: 60px;
  background-size: contain;
  left: 65%;
}

@media screen and (max-width: 768px) {
  .cta-bottom-wrapper {
    gap: 50px;
    padding: 3rem 2rem;
  }
  .cta-bottom-wrapper h3 {
    padding-bottom: 20px;
  }
  .cta-bottom-wrapper h3::after {
    /*         left: 40%;
    transform: rotate(-35deg);
    height: 2.25rem;
    top: 80px; */
    background: url("../img/arrow-cta-mobil.svg") no-repeat;
    left: 40%;
    transform: rotate(-30deg);
    height: 3rem;
    top: 90%;
  }
}
.full-wrapper-kunden-three-underpage {
  background-color: var(--background-underpage-color);
  /*   margin: 1rem; */
  position: relative;
}
.full-wrapper-kunden-three-underpage .clamp-wrapper {
  padding-left: var(--padding-sides);
  padding-right: var(--padding-sides);
  /*     padding-top: 90px; */
  padding-top: 0;
}
@media screen and (max-width: 750px) {
  .full-wrapper-kunden-three-underpage .clamp-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.full-wrapper-kunden-three-underpage p:last-of-type {
  padding-right: 1rem;
  font-weight: 400;
}
.full-wrapper-kunden-three-underpage .wrapper-content-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-three-underpage .wrapper-content-full {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .full-wrapper-kunden-three-underpage .wrapper-content-full .clamp-wrapper {
    display: none;
  }
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-three-underpage .elements-content-wrapper-mobile {
    display: grid;
    grid-template-columns: 1fr;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper-mobile .full-image-wrapper {
    justify-self: center;
    position: relative;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper-mobile .full-image-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 744px;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper-mobile .clamp-three-close {
    padding-top: 18px;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper-mobile .clamp-three-close .clamp-close {
    transform: translateX(-70%);
    left: 50%;
    position: relative;
    width: 75% !important;
  }
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper {
  display: grid;
  grid-template-columns: minmax(180px, 200px) minmax(200px, 300px) minmax(395px, 1fr);
  align-items: start;
  gap: 70px;
  padding: 20px var(--padding-sides) 20px var(--padding-sides);
  position: relative;
  background-color: var(--background-underpage-color);
  min-height: 544px;
  justify-items: center;
  margin: 0px 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .full-wrapper-kunden-three-underpage .elements-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .typo-wrapper {
  display: flex;
  align-items: flex-start;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .font-letters {
  width: 100%;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .font-letters img {
  width: 100%;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .font-letters p {
  color: var(--site_underpage_typograpy);
  font-size: 156px;
  padding: 0;
  position: relative;
  font-family: var(--fontfamilycustom);
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .font-letters p::before {
  content: attr(data-font-letters);
  position: absolute;
  width: 50px;
  height: 30px;
  color: var(--site_underpage_typograpy);
  font-size: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content {
  width: 100%;
  text-align: center;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content img {
  width: 90%;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p {
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 0.8px;
  color: var(--font-underpage-color);
  font-family: var(--fontfamilycustom);
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p:nth-child(1) {
  font-weight: 100;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p:nth-child(2) {
  font-weight: 300;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p:nth-child(3) {
  font-weight: normal;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p:nth-child(4) {
  font-weight: 500;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p:nth-child(5) {
  font-weight: 600;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p:nth-child(6) {
  font-weight: bold;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .clamp-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-top: 17px;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .clamp-wrapper .clamp-close {
  min-width: 265px;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .clamp-wrapper h4 {
  padding: 0;
  font-weight: 300;
  font-style: italic;
  color: var(--font-underpage-color);
  font-size: 16px;
  text-align: center;
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers {
  display: flex;
  flex-direction: column;
  gap: 37px;
  width: 100%;
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers {
    grid-column: 1/3;
  }
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers p {
  color: var(--font-underpage-color);
  padding: 0;
  /*         &:nth-child(1) {
    font-size: 28px;
    text-transform: uppercase;

    letter-spacing: 0.56px;
  } */
  /*         &:nth-child(2) {
    font-size: 35px;
    font-style: italic;
    font-weight: 200;
    letter-spacing: 0.7px;
    text-transform: lowercase;
    padding-bottom: 37px;
  } */
}
.full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers p:nth-child(2) {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.full-wrapper-kunden-underpage-desktop {
  /*   margin: 1rem; */
  position: relative;
  background-color: var(--background-underpage-color);
}
.full-wrapper-kunden-underpage-desktop .clamp-wrapper {
  padding-left: var(--padding-sides);
  padding-right: var(--padding-sides);
}
.full-wrapper-kunden-underpage-desktop p:last-of-type {
  padding-right: 1rem;
  font-weight: 600;
}
.full-wrapper-kunden-underpage-desktop .elements-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: 70px;
  padding: 20px var(--padding-sides) 20px var(--padding-sides);
  position: relative;
  min-height: 544px;
  justify-items: center;
}
.full-wrapper-kunden-underpage-desktop .elements-content-wrapper > div {
  justify-items: center;
  text-align: center;
  width: 85%;
  height: 100%;
}
.full-wrapper-kunden-underpage-desktop .elements-content-wrapper > div .clamp-three-close {
  padding: 0;
  width: 100%;
}
.full-wrapper-kunden-underpage-desktop .elements-content-wrapper > div .clamp-three-close .clamp-close {
  width: 100% !important;
}
.full-wrapper-kunden-underpage-desktop .elements-content-wrapper > div img {
  -o-object-fit: inherit;
     object-fit: inherit;
  /* min-height: 793px; */
  padding-bottom: 40px;
  width: auto;
  height: 80vh;
}

.refernces-kunden-underpage-wrapper {
  background-color: var(--background-underpage-color);
  padding-top: 8rem;
  padding-right: var(--padding-sides);
  padding-left: var(--padding-sides);
}
.refernces-kunden-underpage-wrapper .clamp-start {
  width: 100%;
  border: #fff 0.15rem solid;
  height: 0.75rem;
  border-bottom: none;
}
@media screen and (max-width: 720px) {
  .refernces-kunden-underpage-wrapper .clamp-start {
    border: #fff 0.1rem solid;
    border-bottom: none;
  }
}
.refernces-kunden-underpage-wrapper .keywords-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 20px;
}
.refernces-kunden-underpage-wrapper .keywords-wrapper > div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.refernces-kunden-underpage-wrapper .keywords-wrapper > div p:first-child {
  height: -moz-min-content;
  height: min-content;
}
.refernces-kunden-underpage-wrapper .keywords-wrapper > div > div {
  display: flex;
  gap: 10px;
}
.refernces-kunden-underpage-wrapper .keywords-wrapper h4 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0rem;
}
.refernces-kunden-underpage-wrapper .keywords-wrapper p {
  background-color: var(--white);
  border-radius: 1rem;
  color: var(--toneblack);
  padding: 0.4rem 20px;
  font-size: 0.8rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 45rem) {
  .refernces-kunden-underpage-wrapper .keywords-wrapper p {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }
}
.refernces-kunden-underpage-wrapper .introducion {
  padding-bottom: 3rem;
  margin: 1rem 1rem 0rem 1rem;
  position: relative;
}
.refernces-kunden-underpage-wrapper .introducion .div {
  width: 100%;
}
.refernces-kunden-underpage-wrapper .introducion h2 {
  font-size: 40px;
  color: #d1f83f;
  font-style: italic;
  margin: 0;
  font-weight: 400;
  text-transform: unset;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15rem;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content .keywords-wrapper {
  position: absolute;
  right: -20px;
  top: -20px;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-text p {
  font-size: 20px;
  color: var(--font-underpage-color);
  font-weight: 300;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-text p:first-child {
  padding-bottom: 1.6875rem;
  padding-top: 10px;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups {
  display: flex;
  gap: 1rem;
  top: 4rem;
  width: 50%;
  padding-right: 0.5rem;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups #kunde-logo-small {
  position: absolute;
  margin-left: -3rem;
  top: 0rem;
}
.refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups img {
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .refernces-kunden-underpage-wrapper .introducion .introducion-content {
    grid-template-columns: auto;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups {
    position: relative;
    height: 333px;
    justify-self: end;
    right: -33px;
    width: 357px;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups #kunde-logo-small {
    position: absolute;
    z-index: 99;
    top: -85px;
    left: 20px;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups img {
    height: -moz-fit-content;
    height: fit-content;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups img:nth-child(2) {
    position: absolute;
    right: 20px;
    z-index: 1;
    top: -50px;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-mockups img:nth-child(3) {
    position: absolute;
    right: 0;
  }
}
.refernces-kunden-underpage-wrapper .swiper {
  /*     width: 600px; */
  height: auto;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-bottom: 25px;
  height: auto;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-slide .project-title {
  color: white;
  font-size: 16px;
  filter: brightness(0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-slide .project-title::after {
  content: attr(data-subtitle);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  text-align: center;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-slide-active .project-title {
  filter: brightness(1);
}
.refernces-kunden-underpage-wrapper .swiper .swiper-slide-active img {
  filter: brightness(1);
}
.refernces-kunden-underpage-wrapper .swiper .swiper-button-next,
.refernces-kunden-underpage-wrapper .swiper .swiper-button-prev {
  bottom: 0;
  top: unset;
  color: white;
  transform: scale(0.4);
}
.refernces-kunden-underpage-wrapper .swiper .swiper-button-next:hover,
.refernces-kunden-underpage-wrapper .swiper .swiper-button-prev:hover {
  opacity: 1;
  color: #d1f83f;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-scrollbar {
  position: relative;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  background-color: #fff;
  margin-top: 70px;
  margin-bottom: 40px;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #d1f83f;
  /*         width: 20% !important;
  height: 5px; */
}
.refernces-kunden-underpage-wrapper .swiper .swiper-scrollbar .currentactive {
  position: absolute;
  left: 0;
  color: white;
  top: -40px;
  opacity: 1;
  text-transform: uppercase;
  font-size: 25px;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-scrollbar .nextactive {
  position: absolute;
  right: 0;
  color: white;
  top: -40px;
  opacity: 0.67;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 200;
}
.refernces-kunden-underpage-wrapper .swiper .swiper-scrollbar .nextactive::after {
  content: "";
  background: transparent linear-gradient(270deg, #131217 0%, rgba(19, 18, 23, 0) 100%) 0% 0% no-repeat padding-box;
  height: 36px;
  width: 270px;
  position: absolute;
  right: 0;
  top: 0;
}

.fake-scroll-gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding-bottom: 6.9rem;
  padding: 5rem var(--padding-sides);
  background-color: var(--background-underpage-color);
}
.fake-scroll-gallery .scroll-btn {
  /*     background-color: #0073aa; */
  background-color: unset;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 5px;
  position: absolute;
}
.fake-scroll-gallery .scroll-btn:hover {
  color: var(--tonelime);
}
.fake-scroll-gallery .scroll-btn a {
  color: #fff;
  text-decoration: none;
}
.fake-scroll-gallery .scroll-btn-left {
  left: -19px;
  font-size: 20px;
  font-weight: 400;
  padding-top: 30px;
  display: flex;
  align-items: center;
}
.fake-scroll-gallery .scroll-btn-right {
  right: -19px;
  font-size: 20px;
  font-weight: 400;
  padding-top: 30px;
  display: flex;
  align-items: center;
}
.fake-scroll-gallery .scroll-line {
  flex-grow: 1;
  height: 4px;
  background-color: #ddd;
  position: relative;
  margin: 0 10px;
}
.fake-scroll-gallery .scroll-text-left,
.fake-scroll-gallery .scroll-text-right {
  position: absolute;
  top: -2.5rem;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.fake-scroll-gallery .scroll-text-left a,
.fake-scroll-gallery .scroll-text-right a {
  color: #fff;
  text-decoration: none;
}
.fake-scroll-gallery .scroll-text-left {
  left: 0;
}
.fake-scroll-gallery .scroll-text-right {
  right: 0;
  opacity: 0.67;
  font-weight: 100;
}

/* TODO Björn */
.dialog-form {
  color: var(--toneblue);
  background-color: #fadbfe;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 0 4rem;
  border: 0;
}
.dialog-form h2 {
  text-align: center;
  margin-top: 0;
}
.dialog-form .brief-description {
  text-align: center;
  max-width: 41rem;
  margin: 0 auto 9.5rem auto;
  color: var(--toneblue) !important;
}
.dialog-form h3 {
  color: #ffffff;
  background-color: var(--toneblue);
  padding: 0.4375rem 1.25rem;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
.dialog-form .headline-container {
  grid-column: 1/3;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 4.25rem 0;
  position: relative;
}
.dialog-form .form-logo-top {
  display: block;
  width: 5.8rem;
  height: 4.4rem;
  margin: 0 auto 4.65rem auto;
}
.dialog-form .form-x-icon {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  background-color: transparent;
  top: 1.25rem;
  left: 1.25rem;
  cursor: pointer;
}
.dialog-form .grafitti-background-1 {
  position: absolute;
  top: -240px;
  left: -218px;
  z-index: -100;
}
@media screen and (max-width: 728px) {
  .dialog-form .grafitti-background-1 {
    left: -429px;
  }
}
.dialog-form .grafitti-background-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -100;
}
.dialog-form .input-head {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--toneblue);
  margin-top: 1.25rem;
}
.dialog-form .form-headline-arrow-container {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  grid-column: 1/3;
  margin-bottom: 4.25rem;
}
.dialog-form .form-headline-arrow-container .form-arrow-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: -50%;
  top: -5rem;
  transform: translateX(50%);
}
@media screen and (max-width: 728px) {
  .dialog-form .form-headline-arrow-container .form-arrow-container {
    left: 50%;
    right: unset;
    transform: translateX(-50%);
    top: -7rem;
  }
}
.dialog-form .form-headline-arrow-container .form-arrow-container p {
  font-family: "Fofer";
  color: var(--toneblack);
  font-size: 2rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.dialog-form .form-headline-arrow-container .form-arrow-container .form-arrow {
  width: 2.25rem;
  height: 3.35rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/arrow.svg);
}
.dialog-form .form-headline-arrow-container h3 {
  height: -moz-fit-content;
  height: fit-content;
}
.dialog-form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  background-image: url(../img/cross-checkbox.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  display: block;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid var(--toneblue);
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  left: 0;
  transform: translateX(-0.25rem);
}
.dialog-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.dialog-form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dialog-form .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.dialog-form .wpcf7-radio .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dialog-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::after {
  background-image: url(../img/cross-checkbox.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.dialog-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  display: flex;
  gap: 1rem;
  position: relative;
  align-items: center;
}
.dialog-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  display: block;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid var(--toneblue);
  border-radius: 50%;
  flex-shrink: 0;
}
.dialog-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  left: 0;
  transform: translateX(-0.25rem);
}
.dialog-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  background-image: url(../img/cross-checkbox.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid var(--toneblue);
  margin-right: 1.25rem;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  left: 0;
  transform: translateX(-0.25rem);
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
  display: contents;
  color: var(--toneblue);
  font-weight: bold;
}
.dialog-form .wpcf7-submit {
  background-color: var(--toneblue);
  padding: 0.5rem 1.5rem;
  border-radius: 2.15rem;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 5rem;
  border: 0;
}
.dialog-form .wpcf7-submit:hover {
  cursor: pointer;
}
.dialog-form input[type=text],
.dialog-form input[type=url],
.dialog-form input[type=tel],
.dialog-form input[type=email] {
  border: 0;
  border-bottom: 0.1rem var(--toneblue) solid;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  font-family: "Fofer";
  font-size: 1.5rem;
  font-weight: medium;
}
.dialog-form input[type=text]:focus,
.dialog-form input[type=url]:focus,
.dialog-form input[type=tel]:focus,
.dialog-form input[type=email]:focus {
  outline: none;
}
.dialog-form p:has(.wpcf7-text):not(:has(.wpcf7-radio, .wpcf7-checkbox)):not(:last-child) {
  margin-bottom: 2.7rem;
}
.dialog-form p:has(.wpcf7-text):not(:has(.wpcf7-radio, .wpcf7-checkbox)) label {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}
.dialog-form p:has(.wpcf7-text):not(:has(.wpcf7-radio, .wpcf7-checkbox)) label input {
  margin-top: 0.5rem;
}
.dialog-form .form-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  margin-bottom: 5rem;
}
.dialog-form .form-details .details-container-2 div:first-child {
  margin-bottom: 2rem;
}
.dialog-form .form-details .wpcf7-form-control-wrap {
  margin-bottom: 2rem;
}
.dialog-form .form-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin-bottom: 5rem;
}
.dialog-form .form-goals div:nth-child(2) {
  grid-column: 1/3;
  margin-bottom: 1.75rem;
}
.dialog-form .form-website-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  margin-bottom: 5rem;
}
.dialog-form .form-website-details .marketingareainput {
  border-bottom: 2px solid #5b6ce0;
  display: flex;
}
.dialog-form .form-website-details .marketingareainput .wpcf7-form-control-wrap {
  width: 100%;
}
.dialog-form .form-website-details .marketingareainput.spinp input {
  text-indent: 20px;
}
.dialog-form .form-website-details .marketingareainput .marketingnumber {
  font-size: 1rem;
  color: var(--toneblue);
  bottom: -10px;
  width: 20px;
}
.dialog-form .form-website-details .marketingareainput input {
  border-bottom: unset;
  width: 100%;
}
.dialog-form .form-website-details div:first-of-type {
  /*       p:not(:has(input)) {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.0375rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  } */
}
.dialog-form .form-website-details div:first-of-type span {
  /*         &:nth-child(1) {
    &::before {
      content: "1.";
      font-size: 1rem;
      letter-spacing: 0.8rem;
      color: var(--toneblue);
      bottom: -10px;
      position: absolute;
    }
  }
  &:nth-child(3) {
    &::before {
      content: "2.";
      font-size: 1rem;
      letter-spacing: 0.8rem;
      color: var(--toneblue);
      bottom: -10px;
      position: absolute;
    }
  } */
  /*         input {
    text-indent: 30px;
  } */
}
.dialog-form .form-website-details div:first-of-type p:not(:has(input)) {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.dialog-form .form-website-details .form-list-input-text.hidden {
  display: none;
}
.dialog-form .form-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  margin-bottom: 5rem;
  margin-top: 8rem;
}
.dialog-form .form-description .form-headline-arrow-container .form-arrow-container {
  display: flex;
  top: -7rem;
}
.dialog-form .form-description .form-headline-arrow-container .form-arrow-container p {
  text-align: center;
  white-space: unset;
}
@media only screen and (max-width: 1400px) {
  .dialog-form {
    padding: 0 1rem;
  }
  .dialog-form .brief-description {
    margin: 0 0 9.5rem 0;
    max-width: unset;
  }
  .dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
    flex-shrink: 0;
  }
  .dialog-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
    font-size: 1rem;
  }
  .dialog-form .form-headline-arrow-container {
    grid-column: 1;
  }
  .dialog-form .headline-container {
    grid-column: 1;
    margin: 0;
  }
  .dialog-form .form-details {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
  .dialog-form .form-details .details-container-1 {
    margin-bottom: 1.5rem;
  }
  .dialog-form .form-goals {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
  .dialog-form .form-goals div:nth-child(2) {
    grid-column: 1;
  }
  .dialog-form .form-website-details {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
  .dialog-form .form-description {
    grid-template-columns: 1fr;
  }
  .dialog-form .form-description .form-headline-arrow-container .form-arrow-container {
    display: none;
  }
}

/* Datenschutzerklärung */
.privacy-wrapper {
  background-color: var(--tonelightbluedark);
  padding: 8rem var(--padding-sides);
  padding-bottom: 2rem;
  margin-bottom: 0;
}
.privacy-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.privacy-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.privacy-wrapper ul {
  margin-bottom: 2rem;
  padding-left: 1rem;
  list-style-type: disc;
}
.privacy-wrapper ul li {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 720px) {
  .privacy-wrapper h1 {
    font-size: 2.5rem;
  }
  .privacy-wrapper h2 {
    font-size: 1.6rem;
  }
}

/* impressum */
.impressum {
  background-color: var(--tonelightbluedark);
  padding: 8rem var(--padding-sides);
  padding-bottom: 2rem;
  margin-bottom: 0;
}
.impressum h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.impressum h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.impressum p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* kontakt seite */
.contactus-page-wrapper {
  background-color: var(--tonelightbluedark);
  padding: 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
}
.contactus-page-wrapper .adress-container {
  padding: 9rem var(--padding-sides) 4rem var(--padding-sides);
}
.contactus-page-wrapper h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
}
.contactus-page-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contactus-page-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contactus-page-wrapper img {
  align-self: end;
  width: auto;
  height: 90vh;
}

.introducion-lw-swiper .div {
  width: 100%;
}
.introducion-lw-swiper h2 {
  font-size: 2rem;
}
.introducion-lw-swiper .introducion-content-lw {
  display: grid;
  grid-template-columns: auto auto;
  gap: 6rem;
  align-items: flex-start;
  padding-top: 3rem;
}
.introducion-lw-swiper .introducion-content-lw .keywords-wrapper {
  position: absolute;
  right: -1rem;
  top: -1rem;
}
@media screen and (max-width: 750px) {
  .introducion-lw-swiper .introducion-content-lw .keywords-wrapper {
    right: 0rem;
  }
}
.introducion-lw-swiper .introducion-content-lw .introducion-text {
  position: relative;
  height: 295px;
}
.introducion-lw-swiper .introducion-content-lw .introducion-mockups {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  position: relative;
  /*         right: -150%;
    transition: right var(--animationtime) ease-in; */
  top: 3rem;
  height: 390px;
}
.introducion-lw-swiper .introducion-content-lw .introducion-mockups #kunde-logo-small {
  position: absolute;
  left: -3rem;
  top: -2rem;
  width: 134px;
}
@media screen and (max-width: 1440px) {
  .introducion-lw-swiper .introducion-content-lw {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  .introducion-lw-swiper .introducion-content-lw .introducion-text {
    width: 100%;
    height: unset;
  }
  .introducion-lw-swiper .introducion-content-lw .introducion-mockups {
    width: 100%;
    height: unset;
  }
  .introducion-lw-swiper .introducion-content-lw .introducion-mockups div img {
    width: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
  .introducion-lw-swiper .introducion-content-lw .introducion-mockups div #kunde-logo-small {
    width: 110px;
  }
  .introducion-lw-swiper .active {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .introducion-lw-swiper .introducion-content-lw .introducion-mockups div img {
    width: auto;
    height: 150px;
  }
  .introducion-lw-swiper .introducion-content-lw .introducion-mockups div #kunde-logo-small {
    left: 7rem;
    top: -3rem;
    height: 100px;
  }
}
.introducion-lw-swiper .project-next-wrapper {
  width: 100%;
  grid-column: 1/3;
}
.introducion-lw-swiper .active {
  opacity: 1;
  width: 100%;
  overflow: visible;
}
.introducion-lw-swiper .active .introducion-text {
  left: 0%;
  transition: left var(--animationtime) ease-out 0.2s;
  width: calc(100% - 40px);
  margin-top: -60px;
}
.introducion-lw-swiper .active .introducion-mockups {
  right: 0%;
  transition: right var(--animationtime) ease-out 0.2s;
}
@media screen and (max-width: 1440px) {
  .introducion-lw-swiper .active .introducion-text {
    margin-top: -30px;
  }
  .introducion-lw-swiper .active .introducion-mockups {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .introducion-lw-swiper .introducion-content {
    grid-template-columns: auto;
  }
}

/* Mobile */
@media screen and (max-width: 1024px) {
  .kunden-underpage-hero {
    padding: 14.875rem 1rem 16.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .kunden-underpage-hero .kunden-underpage-title {
    margin-inline-start: 0;
    width: 100%;
  }
  .kunden-underpage-hero .kunden-underpage-title h1 {
    font-size: 40px;
    letter-spacing: 2.4px;
  }
  .refernces-kunden-underpage-wrapper {
    padding-top: 8rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /************** Landingpage Kunden **********/
  /* Kontakt seite Mobile */
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .refernces-kunden-underpage-wrapper .introducion-mockups {
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .refernces-kunden-underpage-wrapper .clamp-start {
    width: 100%;
    border: #fff 0.15rem solid;
    height: 0.75rem;
    border-bottom: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 720px) {
  .refernces-kunden-underpage-wrapper .clamp-start {
    border: #fff 0.1rem solid;
    border-bottom: none;
  }
}
@media screen and (max-width: 1024px) {
  .refernces-kunden-underpage-wrapper .keywords-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 15px;
    padding: 10px 20px;
  }
  .refernces-kunden-underpage-wrapper .keywords-wrapper > div {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
  }
  .refernces-kunden-underpage-wrapper .keywords-wrapper > div p:first-child {
    height: -moz-min-content;
    height: min-content;
  }
  .refernces-kunden-underpage-wrapper .keywords-wrapper > div > div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .refernces-kunden-underpage-wrapper .keywords-wrapper h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.2rem;
  }
  .refernces-kunden-underpage-wrapper .keywords-wrapper p {
    background-color: unset;
    color: var(--white);
  }
}
@media screen and (max-width: 1024px) and (max-width: 45rem) {
  .refernces-kunden-underpage-wrapper .keywords-wrapper p {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .refernces-kunden-underpage-wrapper .introducion {
    padding-bottom: 3rem;
    margin: 1rem 1rem 0rem 1rem;
    position: relative;
  }
  .refernces-kunden-underpage-wrapper .introducion .div {
    width: 100%;
  }
  .refernces-kunden-underpage-wrapper .introducion h2 {
    font-size: 30px;
    letter-spacing: 0.6px;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content {
    grid-template-columns: auto;
    gap: 6rem;
  }
  .refernces-kunden-underpage-wrapper .introducion .introducion-content .introducion-text p {
    width: 90%;
  }
  .half-wrapper-kunden-underpage {
    grid-template-columns: auto;
    padding: 2rem 1rem 2rem 1rem;
  }
  .half-wrapper-kunden-underpage .wrapper-half {
    padding-bottom: 80px;
  }
  .half-wrapper-kunden-underpage .wrapper-half .colors-container {
    display: grid;
    gap: 5px;
  }
  .half-wrapper-kunden-underpage .wrapper-half .colors-container .color-wrapper div {
    width: auto;
    padding-left: 15px;
  }
  .half-wrapper-kunden-underpage .wrapper-half .image-wrapper {
    width: 100%;
  }
  .half-wrapper-kunden-underpage .wrapper-half .image-wrapper img {
    width: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .full-wrapper-kunden-three-underpage .clamp-wrapper {
    padding: 2rem 1rem 2rem 1rem;
  }
  .full-wrapper-kunden-three-underpage .wrapper-content-full {
    grid-template-columns: 1fr;
    gap: 120px;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem var(--padding-sides) 2rem var(--padding-sides);
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper .typo-wrapper {
    flex-direction: column;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper .text-weight-wrapper .content p {
    font-size: 40px;
    letter-spacing: 0.8px;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers {
    grid-column: 1/3;
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers p {
    /*           &:nth-child(2) {
      font-size: 0.95rem;
    }
    &:nth-child(2) {
      font-size: 1.35rem;
      letter-spacing: 0.027rem;
    } */
  }
  .full-wrapper-kunden-three-underpage .elements-content-wrapper .text-letters-wrappers p:nth-child(2) {
    letter-spacing: 0.008rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .full-wrapper-kunden-underpage-desktop .clamp-wrapper {
    padding: 2rem 1rem 2rem 1rem;
  }
  .full-wrapper-kunden-underpage-desktop .elements-content-wrapper {
    gap: 3.5rem;
    padding: 1rem 1rem 1rem 1rem;
  }
  .full-wrapper-kunden-underpage {
    padding: 0.5rem 0.5rem 6.65rem 0.5rem;
  }
  .full-wrapper-kunden-underpage .elements-content-wrapper {
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 10px;
  }
  .full-wrapper-kunden-underpage .elements-content-wrapper .image-big {
    grid-column: span 3;
    max-width: initial;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .full-wrapper-kunden-underpage .elements-content-wrapper .image-wrapper {
    width: auto;
    max-width: none;
  }
  .clamp-wrapper {
    /*     padding-left: 1rem !important;
    padding-right: 1rem !important; */
  }
  .fake-scroll-gallery {
    padding: 1rem;
    padding-bottom: 2rem;
    margin: 0;
  }
  .fake-scroll-gallery .scroll-btn {
    font-size: 1.2rem;
    padding: 5px 10px;
  }
  .fake-scroll-gallery .scroll-text-left,
  .fake-scroll-gallery .scroll-text-right {
    font-size: 0.7rem;
    top: -1.5rem;
  }
  .kunden-back-overview {
    display: none;
  }
  .scribble-text-overview {
    display: none;
  }
  .kunden-back-overview-Mobile {
    display: none;
    flex-direction: column;
    background-color: var(--tonelime);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0.5rem;
  }
  .full-wrapper-kunden-three .clamp-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .full-wrapper-kunden-three .full-elements-content-wrapper {
    grid-template-columns: 1fr;
  }
  .full-wrapper-kunden-three .full-elements-content-wrapper .elements-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .full-wrapper-kunden-three .full-elements-content-wrapper .elements-wrapper .full-image-wrapper {
    display: none;
  }
  .refernces-kunden-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .refernces-kunden-wrapper .introducion-mockups {
    flex-direction: column;
    gap: 1rem;
  }
  .refernces-kunden-wrapper .introducion .introducion-content {
    grid-template-columns: auto;
  }
  .refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups {
    position: relative;
    height: 333px;
    justify-self: end;
    right: -1.65rem;
    width: 357px;
  }
  .refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups #kunde-logo-small {
    position: absolute;
    z-index: 99;
    top: -85px;
    left: 20px;
  }
  .refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups img {
    height: -moz-fit-content;
    height: fit-content;
  }
  .refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups img:nth-child(2) {
    position: absolute;
    right: 20px;
    z-index: 1;
    top: -50px;
  }
  .refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups img:nth-child(3) {
    position: absolute;
    right: 0;
  }
  .refernces-kunden-wrapper .introducion .introducion-content .introducion-mockups img:hover {
    z-index: 10;
  }
  .kunden-hero {
    padding: 9.5rem 1.5rem 0rem 1.5rem;
  }
  .project-vh-wrapper {
    /********    Animation    ***********/
  }
  .project-vh-wrapper img#headphone {
    width: 226px;
    left: -17vw;
    top: 70vh;
  }
  .project-vh-wrapper img#notes {
    display: none;
  }
  .project-vh-wrapper img#tastatur {
    display: none;
  }
  .project-vh-wrapper .project-wrapper .project-title {
    flex-direction: column;
    align-items: unset;
    gap: 1rem;
    padding-bottom: 2rem;
  }
  .project-vh-wrapper .project-wrapper .project-title p {
    font-weight: 300;
  }
  .project-vh-wrapper .project-wrapper .project-content {
    padding-left: 0px;
  }
  .project-vh-wrapper .project-wrapper .project-content p {
    margin-right: 0px;
    padding-top: 1rem;
  }
  .contactus-page-wrapper {
    padding: 0rem;
    flex-direction: column;
    align-items: start;
  }
  .contactus-page-wrapper .adress-container {
    padding: 10rem 2rem 4rem 2rem;
  }
  .contactus-page-wrapper h1 {
    font-size: 3rem;
  }
  .contactus-page-wrapper img {
    height: auto;
    width: 80vw;
    margin-top: -10rem;
    bottom: 0;
  }
}
@media screen and (max-width: 720px) {
  .project-vh-wrapper img#headphone {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */