@font-face {
  font-family: "Cormorant Garamond";
  src: local("Cormorant Garamond"), url("fonts/CormorantGaramond-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: local("Cormorant Garamond"),
    url("fonts/CormorantGaramond-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Source Sans";
  src: local("Source Sans"), url("fonts/SourceSans3-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Source Sans";
  src: local("Source Sans"), url("fonts/SourceSans3-Italic.ttf");
  font-weight: normal;
  font-style: italic;
}

::selection {
  background: #977daa;
}

.page-interactive-design ::selection {
  background: #65aca6;
}

.page-graphic-design ::selection {
  background: #eb5374;
}

.page-brand-design ::selection {
  background: #cca4f6;
}

.page-ui-ux ::selection {
  background: #0e50fc;
}

.page-flow-fever ::selection {
  background: #9f9cfb;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: "Source Sans", sans-serif;
  margin: 0;
}

.header-background {
  top: 0;
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: white;
}

.header-title {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-weight: 500;
  font-size: 28px;
  position: fixed;
  z-index: 55;
  top: 14px;
  left: 30px;
  color: black;
}

img.header-title {
  display: none;
  width: inherit;
}

div.header-title {
  display: block;
}

@media screen and (min-width: 500px) {
  img.header-title {
    display: block;
    top: 20px;
  }

  div.header-title {
    display: none;
  }
}

.header-menu {
  top: 14px;
  right: 30px;
  position: fixed;
  z-index: 56;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: "Cormorant Garamond";
  font-weight: 600;
}

.header-menu li {
  display: inline;
  font-size: 28px;
  margin-left: 30px;
}

.header-menu li a {
  text-decoration: none;
  color: black;
}

/* Style The Dropdown Button */

.menu-dropbtn {
  color: white;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */

.menu-dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */

.menu-dropdown-content {
  display: none;
  position: fixed;
  z-index: 55;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  margin-left: -45px;
}

/* Links inside the dropdown */

.menu-dropdown-content a {
  text-align: center;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 20px;
}

/* Change color of dropdown links on hover */

.menu-dropdown-content a:hover,
.menu-dropdown-content a:active {
  background-color: #dddddd;
}

/* Show the dropdown menu on hover */

.menu-dropdown:hover .menu-dropdown-content,
.menu-dropdown:active .menu-dropdown-content {
  display: block;
}

.big-logo {
  z-index: 31;
  width: 85vw;
  height: initial;
  filter: opacity(0%) blur(0px);
  animation: fadein ease-in-out 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  /*-webkit-filter: blur(0px);
-webkit-animation: fadein linear 1s;*/
}

@media only screen and (min-width: 650px) {
  .big-logo {
    width: 60vw;
  }
}

@media only screen and (min-width: 1050px) {
  .big-logo {
    width: 60vw;
    max-width: 60rem;
  }
}

@keyframes fadein {
  0% {
    filter: opacity(0%) blur(10px);
  }
  100% {
    filter: opacity(100%) blur(0px);
  }
}

.content {
  width: 100%;
  z-index: 0;
  padding-top: 60px;
}

.content h1 {
  color: rgb(0, 0, 0);
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

.hero-container {
  margin-top: calc(7rem + 60px);
  margin-bottom: 7rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .hero-container {
    margin-top: calc(10rem + 60px);
    margin-bottom: 10rem;
  }
}

.hero-text {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: italic;
  font-size: 2.5rem;
  margin: 2rem;
}

@media screen and (min-width: 992px) {
  .hero-text {
    font-size: 4.5rem;
    margin: 3rem;
  }
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  max-width: 92rem;
  margin-bottom: 60px;
}

.subpage-container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.ui-ux-background {
  background-color: #0e50fc;
  margin-top: 40px;
  margin-bottom: 20px;
}

.ff-white-background {
  background-color: white;
  margin-bottom: 20px;
  padding: 40px;
  padding-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .ff-white-background .subpage-container {
    max-width: 800px;
    padding-block: 40px;
  }
}

.ff-background {
  background-color: #9f9cfb;
  margin-top: 40px;
  padding: 20px;
}

@media screen and (min-width: 992px) {
  .ff-background .subpage-container {
    max-width: 800px;
    padding-block: 40px;
  }
}

h1.subpage-content {
  display: block;
  font-family: "Cormorant Garamond";
  text-align: center;
  font-weight: 600;
  font-size: 4rem;
  margin-top: 4rem;
  margin-bottom: 0;
  line-height: 70%;
}

.page-interactive-design h1 {
  font-size: 3rem;
}

h2.subpage-content {
  display: block;
  font-family: "Source Sans";
  font-style: italic;
  text-align: center;
  font-size: 1rem;
  margin-top: 50px;
  margin-bottom: 0px;
}

p.subpage-content {
  display: block;
  font-size: 1.3rem;
  padding-top: 0;
  line-height: 130%;
}

.subpage-content span {
  display: block;
  text-align: center;
  margin-top: 2rem;
}

.button-subpage {
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 0.7rem;
  padding-inline: 2.1rem;
  font-size: 1.4rem;
  border-radius: 8px;
}

.button-interactive-design {
  background-color: #42807b;
}

.button-interactive-design:hover {
  background-color: #3a716d;
}

.button-brand-design {
  background-color: #a65eef;
}

.button-brand-design:hover {
  background-color: #8e50cc;
}

.button-flow-fever {
  color: black;
  margin-inline: auto;
  background-color: #9f9cfb;
}

.button-flow-fever:hover {
  background-color: #8481d0;
}

.wrapper.subpage-content {
  margin-top: 40px;
  margin-bottom: 20px;
}

.subpage-footer {
  margin-top: 120px;
}

.subpage-hero-with-text {
  display: flex;
  flex-direction: column;
}

.subpage-two-column .picture {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.subpage-two-column .picture img {
  display: block;
}

.desktop-only {
  display: none;
}

@media screen and (min-width: 768px) {
  h1.subpage-content {
    font-size: 6rem;
  }

  h2.subpage-content {
    font-size: 1.25rem;
  }

  p.subpage-content {
    font-size: 1.4rem;
  }

  .page-interactive-design .subpage-content a,
  .page-brand-design .subpage-content a {
    padding: 0.85rem;
    padding-inline: 2.55rem;
    font-size: 1.7rem;
    border-radius: 8px;
  }

  .subpage-two-column {
    display: flex;
    flex-direction: row;
  }

  .subpage-two-column > div {
    width: 50%;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .subpage-container {
    max-width: 1400px;
  }

  h1.subpage-content {
    font-size: 8rem;
  }

  h2.subpage-content {
    font-size: 1.5rem;
  }

  p.subpage-content {
    font-size: 1.5rem;
    max-width: 755px;
    margin-top: 40px;
  }

  .subpage-hero-with-text {
    flex-direction: column-reverse;
  }

  .page-interactive-design .subpage-content a,
  .page-brand-design .subpage-content a {
    padding: 1rem;
    padding-inline: 3rem;
    font-size: 2rem;
    border-radius: 8px;
  }
}

.text-page-content {
  margin-top: 92px;
  margin-bottom: 92px;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  max-width: calc(100% - 60px);
  width: 600px;
  min-width: 60%;
  font-size: 22px;
}

.text-page-content p {
  padding: initial !important;
  text-align: initial !important;
}

.text-page-content li {
  font-family: "Source Sans", sans-serif;
  font-style: normal;
  color: black;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  /*width: 1200px;*/
}

.text-page-content a {
  line-break: anywhere;
}

.position_anchor {
  width: 100%;
}

img,
video {
  width: 100%;
}

.photo {
  width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  /* min-width: 30vw; */
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff00;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: background-color 0.5s, opacity 0.5s;
}

.photo img {
  transition: transform 0.5s ease, 0.5s filter ease;
  filter: grayscale(100%);
}

@media (hover: hover) {
  .photo:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
}

@media (hover: none) and (max-width: 768px) {
  .photo.viewport-visible-mobile img {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
}

@media (hover: none) and (min-width: 768px) {
  .photo img {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
}

.picture {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

p {
  font-family: "Source Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
  hyphens: auto;
  font-size: 20px;
}

h1,
p {
  color: black;
  padding-top: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  margin-top: 60px;
  width: 100%;
}

.contact-left {
  width: 100%;
}

.contact-left .column {
  float: left;
}

.contact-left .cl-0 {
  width: calc(50%);
}

.contact-left .cl-1 {
  width: calc(50%);
  margin-bottom: 32px;
}

.contact-message {
  /* font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal; */
  text-align: justify;
  color: black;
  font-size: 16px;
  padding-left: 75px;
  padding-bottom: 30px;
  display: block;
  text-align: left;
}

.contact-left img {
  overflow: visible;
  width: calc(100% + 24px);
}

.contact-left .cl-0 {
  position: relative;
  margin-right: -12px;
  z-index: -1;
}

.contact-left .cl-1 {
  position: relative;
  margin-left: -12px;
  z-index: -2;
}

.contact-right {
  text-align: right;
}

.contact-right span,
.contact-social-icons {
  display: block;
  margin-right: 30px;
}

.contact-right .contact-info {
  font-size: 24px;
  margin-bottom: 32px;
}

.contact-right .contact-info a {
  text-decoration: none;
  color: black;
}

.contact-right .contact-call-to-action {
  margin-bottom: 24px;
}

.contact-social-icons {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
  float: none;
}

@media only screen and (min-width: 1050px) {
  .contact-social-icons {
    font-size: 24px;
    float: none;
  }
}

.contact-social-icons ul {
  height: 24px;
  margin: 0;
  padding: 0;
}

.contact-social-icons li {
  display: inline-block;
  padding-left: 8px;
  line-height: 0;
  height: 24px;
}

.contact-social-icons a {
  display: inline-block;
  text-decoration: none;
  color: black;
  height: 24px;
}

.contact-social-icons a img {
  height: 24px;
  width: 24px;
}

@media only screen and (min-width: 1050px) {
  .contact-content > div {
    float: left;
  }
  .contact-left {
    width: 50%;
    max-width: 700px;
  }
  .contact-right {
    width: 50%;
    float: right !important;
  }
  .contact-right {
    margin-top: 30.9%;
  }
  .contact-message,
  .contact-call-to-action {
    font-size: 20px;
  }
  .contact-right .contact-info {
    font-size: 32px;
  }
  .contact-left .cl-1 {
    margin-bottom: 0;
  }
}

footer {
  height: auto;
  background-color: #bfbfbf;
  vertical-align: middle;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}

@media only screen and (min-width: 650px) {
  footer {
    flex-direction: row;
  }
}

footer > div {
  margin-top: 30px;
  margin-bottom: 30px;
  display: inline-block;
  min-width: 160px;
  text-align: center;
  font-size: 16px;
  flex: 1 1 0px;
}

footer > div > img {
  height: 20px;
  width: auto;
}

@media only screen and (min-width: 1050px) {
  footer > div {
    font-size: 20px;
  }
}

footer ul {
  padding: 0;
  margin: 0;
  height: 16px;
}

footer li {
  display: inline-block;
  padding-left: 8px;
  line-height: 0;
  height: 16px;
}

footer a {
  display: inline-block;
  text-decoration: none;
  color: black;
  height: 16px;
  line-break: loose;
}

footer a img {
  height: 16px;
  width: 16px;
}

.impressum-datenschutz-trennstrich {
  display: none;
}

@media only screen and (min-width: 900px) {
  .impressum-datenschutz-trennstrich {
    display: inline;
  }
  .impressum-datenschutz-linebreak {
    display: none;
  }
}

.figma-prototype {
  width: 450px;
  max-width: 70%;
  aspect-ratio: 428 / 1000;
}

@media only screen and (min-width: 992px) {
  .figma-prototype {
    max-width: 100%;
    aspect-ratio: 428 / 900;
  }
}

iframe {
  overflow: hidden;
}
