@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-SemiBold.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-Regular.woff2') format("woff2"), url('../fonts/BDA-IDEA-SemiLight.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-Bold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-Thin.woff2') format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-ExtraBold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-Black.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-Medium.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-ExtraLight.woff2') format("woff2"), url('../fonts/BDA-IDEA-Light.woff2') format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BDA Idea;
  src: url('../fonts/BDA-IDEA-ExtraBlack.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --max-width: 1600px;
  --bda-silver: #6b6a6b;
  --white: #fff;
  --bda-yellow: yellow;
  --project-gryphon-blue: #040e23;
  --bda-pink: #ffbfff;
}

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

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

body {
  color: #fff;
  background-color: #181818;
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 7rem;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 60px;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 44px;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
}

p {
  letter-spacing: .3px;
  margin-bottom: 10px;
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}

a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: color .325s;
}

a:hover {
  color: #a8a8a8;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border: 2px solid #e8e8e8;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.navbar {
  background-color: #181818;
  width: 100%;
  height: 5.6rem;
  position: sticky;
  top: 0;
}

.nav-link {
  color: var(--black);
  letter-spacing: .075rem;
  white-space: nowrap;
  cursor: pointer;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.nav-link:hover {
  color: #000;
}

.nav-link.w--current {
  color: var(--black);
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.container.nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-height: 100%;
  display: flex;
  position: relative;
}

.container._4ems {
  padding-top: 4em;
  padding-bottom: 4em;
}

.container.hero-container {
  z-index: 1;
  position: relative;
}

.container.work-container {
  padding-bottom: 0;
  position: relative;
}

.brand {
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.section.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-text {
  font-family: Manrope;
  font-size: 192px;
  font-weight: 500;
}

.fade-in-on-scroll {
  width: 100%;
  position: relative;
}

._6-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._5-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._8-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.center-top {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._100width {
  width: 100%;
}

.footer {
  background-color: #0f0f0f;
  align-items: flex-start;
  padding-top: 40px;
}

.footer-flex-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.footer-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Inter;
  font-size: 18px;
  line-height: 1.5;
}

.email-me-footer-container {
  margin-bottom: 40px;
}

.white-text {
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.footer-link-holder {
  grid-column-gap: 5px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.copy-right-section {
  color: #7d7d7d;
  text-align: left;
  border-top: 1px solid #2b2b2b;
  justify-content: flex-start;
  width: 100%;
  margin-top: 60px;
  padding-top: 22px;
  font-family: Inter;
  font-weight: 400;
  display: flex;
}

.field-label {
  color: #fff;
  font-family: Inter;
  font-weight: 500;
  line-height: 1.5;
}

.div-block {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.text-field {
  border: 1px solid var(--bda-silver);
  background-color: #0000;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
}

.text-field::placeholder {
  color: #7d7d7d;
}

.button {
  color: #000;
  background-color: #fff;
  padding: 1rem;
  font-weight: 600;
}

.button.b_job {
  text-align: center;
  background-color: #ff0;
  margin-top: 2rem;
  margin-right: 2rem;
  padding: .625rem 1.6rem;
  position: absolute;
  inset: auto 0% 2rem auto;
}

.button.b_job:hover {
  color: #000;
}

.relative {
  z-index: 1;
  width: 100%;
  position: relative;
}

.hero-text-container {
  color: #fff;
  flex-direction: row;
  flex: none;
  width: 100%;
  font-weight: 400;
  display: flex;
}

.hero-link-container {
  grid-column-gap: 8px;
  align-items: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.hero-link-container:hover {
  color: #eaeaea;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.project-list-wrapper {
  margin-top: 75px;
}

.project-link {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 4rem;
  display: block;
  position: relative;
}

.project-link:hover {
  color: #e8e8e8;
}

.project-thumbanil-container {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.project-thumbnail {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.top-margin-s {
  margin-top: 1.2em;
}

.top-margin-m {
  margin-top: 2.3em;
}

.illustation-image {
  height: 100%;
}

.scroll-down-tag-container {
  cursor: auto;
  width: 10rem;
  min-width: 10rem;
  height: 10rem;
  min-height: 10rem;
  position: absolute;
  inset: auto -12% -7% auto;
}

.scroll-down-tag-container.work {
  z-index: 10;
  position: static;
  bottom: 0%;
  right: 0%;
}

.scroll-down-tag-container.pos-neu {
  z-index: 10;
  position: relative;
  top: auto;
  bottom: auto;
  right: auto;
  transform: translate(0, -90px);
}

.scroll-down-text-image {
  width: 100%;
}

.scroll-down-arrow-holder {
  z-index: 0;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: translate(0);
}

.scroll-down-arrow {
  width: 1rem;
}

.animate-on-load-image-1st._100w-h {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.animate-on-load-image-1st._100w-h.video-mobile {
  display: none;
}

.hero-image-holder {
  aspect-ratio: 1;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.success-message {
  background-color: var(--white);
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.date {
  opacity: .5;
  font-weight: 300;
}

.social-media-container {
  grid-column-gap: 10px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.social-media-holder {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.social-media {
  width: 24px;
}

.social-media-image {
  filter: invert();
  width: 100%;
}

.blog-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-item-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-details-container {
  padding-top: 20px;
}

.blog-name {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
}

.blog-thumbnail {
  width: 100%;
}

.blog-hover-state {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.book-icon {
  width: 33px;
}

.blog-details-holder {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.blog-main-image-holder {
  width: 100%;
  height: 100%;
  margin-top: 50px;
  margin-bottom: 60px;
}

.blog-main-imag {
  width: 100%;
}

.blog-sticky-share-buttons {
  position: sticky;
  top: 20%;
}

.utility-page-wrap {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100dvh;
  max-height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 25rem;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hide {
  display: none;
}

.hero-block-container {
  grid-row-gap: 9px;
  flex-direction: column;
  padding: 30px;
  display: flex;
}

.hero-block-container.change-log {
  flex-direction: row;
  justify-content: space-between;
}

.licensing-container {
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.center-text {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.black-overlay {
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.back-button-holder {
  grid-column-gap: 14px;
  color: #000;
  align-items: center;
  margin-bottom: 48px;
  font-size: 14px;
  transition: all .4s;
  display: flex;
}

.back-button-holder:hover {
  grid-column-gap: 20px;
}

.back-button-icon-holder {
  width: 26px;
}

.error {
  color: #000;
  background-color: #ff4242;
}

._8-col {
  width: 100%;
  max-width: var(--max-width);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
  display: grid;
  position: relative;
}

.bda-title {
  text-align: left;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8rem;
  padding-left: 2.5rem;
  padding-right: 4rem;
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1.3;
}

.bda-title.t-nomargin {
  padding-top: 0;
}

._100-width {
  width: 100%;
}

._100-width._130-width {
  width: 115%;
  max-width: 115%;
  overflow: visible;
  transform: translate(0, -10%);
}

.bda-yellow-square {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  aspect-ratio: 21 / 9;
  background-color: var(--bda-yellow);
  width: 100%;
  color: var(--black);
  letter-spacing: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display: grid;
  transform: translate(0);
}

.bda-yellow-square.black-square {
  background-color: var(--black);
  color: var(--white);
}

.bda-project-teaser {
  font-size: 22px;
  font-weight: 700;
}

.bda-project-subtitle {
  margin-top: .3rem;
  font-size: 1rem;
  font-weight: 200;
}

.bda-project-title {
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
}

.bda-project-title.bpt-client {
  margin-top: 0;
}

.link-block {
  background-image: url('../images/ig.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.1rem;
  height: 3.1rem;
}

.link-block.lb-linkedin {
  background-image: url('../images/link.svg');
}

.link-block.lb-facebook {
  background-image: url('../images/face.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-2 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: .625rem;
  display: flex;
}

.know-more-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 8rem;
  display: flex;
  position: relative;
}

.text-block-4 {
  color: var(--bda-yellow);
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 200;
}

.hero-visual-wrapper {
  z-index: 0;
  width: 100%;
  height: auto;
  max-width: var(--max-width);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  aspect-ratio: 16 / 9;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end start;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.hero-title-wrapper {
  z-index: 1;
  aspect-ratio: 1;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background-color: #01061a80;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 2.5rem;
  font-weight: 300;
  display: flex;
  position: relative;
}

.text-block-5 {
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  display: block;
}

.text-block-5.bold {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.1;
}

.text-block-5.bold.cap {
  text-transform: uppercase;
  font-weight: 300;
}

.text-block-5.bold.cap.client-top {
  line-height: 1.1;
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
}

.text-block-5.tb-cat {
  color: var(--bda-yellow);
  margin-top: 1rem;
  font-size: 1rem;
}

.text-copy-text {
  letter-spacing: 0;
  width: 90%;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}

.text-copy-text.pd-left {
  margin-top: 0;
  padding-left: 2.5rem;
}

.text-copy-text.pd-right {
  margin-top: 0;
}

.bda-full-width-image {
  width: 100%;
}

.text-block-6 {
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 200;
}

._9-col-grid {
  width: 100%;
  max-width: var(--max-width);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: grid;
  position: relative;
}

._9-col-grid._9-col-absolute {
  z-index: 2;
  padding-bottom: 0;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bda-image-head-und-sub {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.burger-wrapper {
  z-index: 1;
  cursor: pointer;
  background-color: #0000;
  width: 4.3rem;
  height: 4.3rem;
  transition: color .2s, background-color .2s;
  display: block;
  position: relative;
}

.burger-wrapper:hover {
  color: var(--black);
}

.burger-dropdown-menu {
  z-index: 0;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  aspect-ratio: 21 / 9;
  background-color: var(--bda-yellow);
  perspective-origin: 100% 0;
  transform-origin: 95% 7%;
  cursor: auto;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  margin-left: auto;
  padding: 3rem 7rem 3rem 2.5rem;
  font-size: 3rem;
  font-weight: 400;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.scrolldown {
  z-index: 30;
  pointer-events: auto;
  justify-content: center;
  align-items: center;
  height: 0;
  display: flex;
  position: absolute;
  bottom: -3.5rem;
  left: -6rem;
  right: auto;
}

.scrolldown.sd-mobile {
  display: none;
  bottom: 4rem;
  left: -5rem;
  right: auto;
}

.scrolldown.sd-project {
  inset: auto 0% -1.5rem;
}

.scrolldown.sd-work {
  inset: auto 1.5rem -5rem auto;
}

.video-embed {
  z-index: 1;
  pointer-events: auto;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

.video-embed.ar-1-1 {
  aspect-ratio: 1;
  min-width: auto;
  height: auto;
}

.video-embed.ar-1-1.video-mobile {
  display: none;
}

.video-embed.ve-absolute {
  position: absolute;
  inset: 0%;
}

.background-video-wrapper {
  aspect-ratio: 2.39;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.background-video-wrapper.ar-21-9 {
  aspect-ratio: auto;
  padding-bottom: 42.86%;
  position: relative;
}

.skew-in-view {
  z-index: 1;
  max-width: 100%;
  position: relative;
}

.div-block-9 {
  color: #fff;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  height: 46px;
  transition: color .2s;
  display: flex;
  position: relative;
}

.div-block-9:hover {
  color: var(--bda-yellow);
}

.about-team-border {
  background-color: #353535;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.preloader {
  z-index: 9999;
  background-color: var(--black);
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.avatar-type {
  color: var(--white);
  white-space: nowrap;
  cursor: default;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color .4s;
  display: inline-block;
}

.avatar-type:hover {
  color: var(--bda-silver);
}

.avatar-type.at-nh:hover {
  color: var(--white);
}

.name-container {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.avatar {
  min-width: 150px;
  min-height: 150px;
}

.avatar-center {
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.name-wrapper {
  margin-right: 15px;
  display: inline-block;
  position: relative;
}

.client-grid {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  filter: invert();
  mix-blend-mode: screen;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

._4-col-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  justify-content: stretch;
  display: grid;
}

._3-col-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: minmax(auto, auto);
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row dense;
  place-content: start;
  place-items: start stretch;
  width: 100%;
  display: grid;
}

.filter-group {
  min-height: 100vh;
  padding-bottom: 5rem;
}

.filter-buttons {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: wrap;
  justify-content: flex-start;
  padding-top: 1rem;
  padding-bottom: 3rem;
  padding-right: 1rem;
  font-size: 1rem;
  display: flex;
}

.filter-btn {
  color: #474747;
  cursor: pointer;
  background-color: #0000;
  border-bottom: 1px solid #0000;
  padding: .5rem .3rem;
  font-family: BDA Idea, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 200;
  transition: background-color .2s, color .2s;
}

.filter-btn:hover {
  color: #fff;
}

.filter-btn.active {
  color: #fff;
  background-image: url('../images/line3.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 500px;
}

.content-item__nr {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  margin-top: .2em;
  font-size: .75em;
  font-weight: 400;
  transition: transform .4s cubic-bezier(.625, .05, 0, 1);
  display: none;
}

.tab-content__wrap {
  width: 100%;
  max-width: 36em;
  height: 100%;
  margin-right: 0;
}

.content-item__heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.tab-content__item-main {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.tab-content__inner {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100%;
  padding-top: 1em;
  padding-bottom: 0;
  padding-right: 2.5em;
  display: flex;
}

.tab-content__bottom {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 30em;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.tab-content__item-bottom {
  background-color: #fff3;
  width: 100%;
  height: 1px;
  transition: background-color .2s;
  position: absolute;
  inset: auto 0% 0%;
}

.tab-description__spacer {
  padding-top: 1em;
}

.tab-layout__col {
  width: 100%;
}

.tab-image {
  filter: saturate(0%);
  object-fit: contain;
  object-position: 50% 50%;
  background-color: #0000;
  max-width: none;
  height: 100%;
  position: relative;
}

.tab-content__item-detail {
  width: 100%;
  height: 0;
  overflow: hidden;
}

.tab-progress {
  background-color: var(--bda-yellow);
  transform-origin: 0%;
  width: 100%;
  height: 1px;
  transform-style: preserve-3d;
  transform: scale3d(0, 1, 1);
}

.tab-content__item {
  color: #dbdbdb;
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  text-decoration: none;
  transition: opacity .25s;
  position: relative;
}

.tab-description {
  margin-bottom: 0;
  font-size: .8rem;
  font-weight: 300;
}

.tab-content__top {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.marquee-advanced__scroll {
  will-change: transform;
  width: 100%;
  display: flex;
  position: relative;
}

.osmo-icon-svg {
  width: 30%;
  color: var(--bda-yellow);
  margin-bottom: -10%;
}

.marquee-advanced__item-width {
  background-color: #131313;
  border-radius: 1vw;
  justify-content: center;
  align-items: center;
  width: 18vw;
  height: 18vw;
  margin: 1vw;
  display: flex;
}

.marquee-section {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 100%;
  height: 11vw;
  display: flex;
  overflow: hidden;
}

.marquee-section.hide {
  display: none;
}

.marquee-advanced__collection {
  will-change: transform;
  display: flex;
  position: relative;
}

.marquee-advanced {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.burger-boil {
  z-index: 3;
  pointer-events: none;
  width: 100%;
  padding: 16px;
  display: block;
  position: absolute;
  inset: 0%;
}

._2-col-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: minmax(auto, auto);
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row dense;
  place-content: start;
  align-items: start;
  width: 100%;
  display: grid;
}

.collection-list-wrapper {
  width: 100%;
}

.legal-link-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--bda-silver);
  font-size: .62rem;
  display: flex;
  position: absolute;
  bottom: 2rem;
}

.legal-link {
  color: #505050;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: .625rem;
  font-weight: 600;
}

.legal-link:hover {
  color: #fff;
}

.legal-link.ll-nohover {
  cursor: auto;
}

.legal-link.ll-nohover:hover {
  color: #505050;
}

.yellow-link {
  color: var(--bda-yellow);
  font-size: 1rem;
}

.data-link {
  color: var(--bda-silver);
  font-size: 1rem;
  font-weight: 300;
}

.huge-text {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: 300;
}

.vimeo {
  z-index: 0;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.vimeo-consent-image {
  z-index: -1;
  pointer-events: none;
  cursor: auto;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  display: block;
  position: relative;
}

.ar-1-1 {
  aspect-ratio: 1;
}

.item-100 {
  flex: auto;
  width: 100%;
  height: 100%;
}

.page-max-width {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.swiper {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}

.swiper.is-gallery {
  width: 100%;
  overflow: hidden;
}

.swiper.work-swiper {
  height: 24rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.swiper-wrapper {
  display: flex;
}

.swiper-wrapper.is-gallery {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.swiper-wrapper.work-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.swiper-slide.is-gallery {
  width: 50vw;
}

.gallery-img__wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 66.7%;
  transition: transform .8s cubic-bezier(.77, 0, .175, 1), opacity .8s cubic-bezier(.77, 0, .175, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  object-fit: cover;
  width: 130%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
}

.modules-container {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-start;
  place-items: center;
  width: 100%;
}

.parallax-image-wrapper {
  aspect-ratio: 16 / 9;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fullscreen-video-1, .fullscreen-image-1, .slideshow-1 {
  width: 100%;
}

.additional-text-1 {
  width: 100%;
  font-size: 3rem;
}

.padding-vertical {
  width: 100%;
  margin-top: 8rem;
  margin-bottom: 8rem;
  position: relative;
}

.two-column-grid-1, .three-column-grid-1, .slideshow-2, .fullscreen-image-2 {
  width: 100%;
}

.credits {
  width: 100%;
  font-size: 3rem;
}

.credits-text {
  border-top: 1px solid #6b6a6b80;
  padding: 1rem;
}

.hero-text-bold {
  text-transform: uppercase;
  padding-top: 19rem;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.1;
}

.right-col {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.left-col {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.all-projects {
  display: none;
}

.fullscreen-video-2 {
  width: 100%;
}

.headline-wrapper {
  display: block;
}

.headline-wrapper.hw-only-mobile {
  display: none;
}

.lottie-animation-2 {
  width: 6rem;
}

.divider-text {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.div-block-13 {
  grid-column-gap: 4.8rem;
  grid-row-gap: 4.8rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-13.btw-link {
  color: #333;
  transition: color .2s;
}

.div-block-13.btw-link:hover {
  opacity: 100;
  color: #fff;
}

.svg_white {
  width: 1.1rem;
  transform: rotate(90deg);
}

.svg_white.svg_rotate180 {
  transform: rotate(-90deg);
}

.slideshow-arrows {
  z-index: 999;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 20vw;
  transition: transform .2s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.slideshow-arrows:active {
  transform: scale(.9)translate(1rem);
}

.slideshow-arrows.sa-left {
  inset: 0% auto 0% 0;
}

.slideshow-arrows.sa-left:active {
  transform: scale(.9)translate(-1rem);
}

.burger-to-x {
  z-index: 2;
  pointer-events: none;
  width: 130%;
  height: 130%;
  display: block;
  position: absolute;
  inset: -14% 0% 0% -15%;
}

.hero-image {
  aspect-ratio: 16 / 9;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.video-player-1, .two-column-grid-2, .three-column-grid-2, .video-player-2, .video-player-3, .video-player-4, .video-player-5, .fullscreen-image-3, .fullscreen-image-4, .three-column-grid-3, .three-column-grid-4, .fullscreen-video-3, .fullscreen-video-4 {
  width: 100%;
}

.additional-text-2, .additional-text-3, .additional-text-4 {
  width: 100%;
  font-size: 3rem;
}

.hero-text-bold-about {
  text-transform: uppercase;
  width: 57rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
}

.about-us-hero-wrapper {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
  inset: 0% auto 2rem 0%;
}

.us-yellow-text {
  color: var(--bda-yellow);
  padding-right: 2vw;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}

.arrow {
  width: 1.2rem;
}

.arrow.arrow-next {
  transform: rotate(-90deg);
}

.arrow.arrow-prev {
  transform: rotate(90deg);
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  position: relative;
}

.text-block-11 {
  font-size: 2.4rem;
}

.text-block-11.tb-bold {
  font-weight: 600;
}

.contact-wrapper-about {
  flex-flow: column;
  margin-top: 1.3rem;
  line-height: 1.4;
  display: flex;
}

.div-block-14 {
  aspect-ratio: 1;
  background-color: #0000;
  background-image: url('../images/box_thinner.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  padding: 2rem;
  transition: background-color .2s;
  position: relative;
}

.collection-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 0;
  display: block;
}

.text-block-12 {
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: 1.4rem;
  font-weight: 300;
}

.empty-state {
  background-color: #0000;
}

.div-block-15 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.collection-item-2 {
  min-width: 5rem;
}

.collection-list-wrapper-2 {
  width: 100%;
}

.link {
  cursor: pointer;
  font-weight: 200;
}

.div-block-17 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
}

.collection-list-wrapper-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  transition: transform .2s cubic-bezier(.25, .1, .608, 1.346);
  display: block;
}

.collection-list-wrapper-3.thumbnails-hide {
  display: none;
}

.collection-list-3 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start space-between;
  place-items: center;
  width: 100%;
  display: grid;
}

.collection-item-3 {
  z-index: 0;
  aspect-ratio: 16 / 9;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  transition: transform .2s cubic-bezier(.25, .1, .433, 1.755);
  display: flex;
  position: relative;
}

.collection-item-3:hover {
  transform: scale(1.075);
}

.darken-project {
  z-index: 0;
  background-color: #00000096;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 200;
  display: flex;
  position: absolute;
}

.darken-project:hover {
  color: #fff;
}

.bold {
  font-weight: 600;
}

.div-block-18 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: 1rem;
  margin-bottom: -2rem;
  display: flex;
}

.swiper-pagination {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.custom-bullet {
  background-image: url('../images/bullet_empty.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
}

.pos-paginierung {
  z-index: 1;
  width: 100%;
  height: 2rem;
  position: absolute;
  inset: auto 0% -3rem;
}

.contact-3col {
  grid-column-gap: 4rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-19 {
  aspect-ratio: 16 / 9;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.image-copy {
  width: 100%;
  transform: scale(1.3);
}

.collection-list-wrapper-4 {
  margin-top: 3rem;
}

.div-block-20 {
  background-image: url('../images/BDA_Contact_Ben_Anne-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 42.86%;
  display: flex;
  overflow: hidden;
}

.text-image-1, .text-image-2 {
  width: 100%;
}

.work-slide-image {
  height: 100%;
}

.swiper-gradient-wrapper {
  position: relative;
}

.div-block-21 {
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(90deg, #181818, #18181800);
  width: 20vw;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.div-block-21.grad-right {
  background-image: linear-gradient(270deg, #181818, #18181800);
  inset: 0% 0% 0% auto;
}

.script-about {
  display: block;
}

.title_wrap {
  margin-top: 1.2rem;
  line-height: 1;
}

.flipbook {
  width: 100%;
  height: 100vh;
}

.heading {
  font-size: 2rem;
}

.herosub {
  width: 100%;
  color: var(--bda-yellow);
  text-transform: none;
  margin-top: 3rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  display: block;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 90px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 25px;
  }

  .hero-text {
    font-size: 70px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-flex-container {
    grid-row-gap: 80px;
    flex-direction: column;
    display: flex;
  }

  .text-field-holder {
    grid-column-gap: 50px;
    flex-direction: row;
    align-items: center;
  }

  .project-link {
    padding-top: 0;
  }

  .illustation-image {
    width: 70%;
  }

  .scroll-down-tag-container {
    width: 7rem;
    min-width: 7rem;
    height: 7rem;
    min-height: 7rem;
  }

  .social-media-container.blog {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .social-media-holder.blog {
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .blog-hover-state {
    display: none;
  }

  ._8-col {
    max-width: 100%;
  }

  .bda-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-title-wrapper {
    aspect-ratio: 2;
    display: block;
  }

  .text-block-5 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .text-block-5.bold {
    font-size: 2.2rem;
  }

  .text-block-5.bold.cap.client-top {
    position: relative;
    inset: auto;
  }

  .text-copy-text.pd-left {
    padding-bottom: 0;
    padding-left: 0;
  }

  ._9-col-grid {
    width: 100%;
    max-width: 100%;
  }

  .burger-dropdown-menu {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    padding-right: 5.3em;
    display: none;
  }

  .scrolldown.sd-project {
    display: none;
  }

  .video-embed {
    height: 270px;
  }

  .avatar-type {
    font-size: 2rem;
  }

  .name-wrapper {
    white-space: nowrap;
  }

  .client-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  ._4-col-grid.jobs-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._3-col-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .filter-group {
    padding-bottom: 2rem;
  }

  .content-item__nr {
    font-size: .5rem;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .tab-content__wrap {
    max-width: none;
    margin-left: 0;
  }

  .content-item__heading {
    font-size: 1.2rem;
  }

  .tab-content__inner {
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
  }

  .tab-content__bottom {
    max-width: 100%;
  }

  .tab-layout__col {
    z-index: 1;
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
  }

  .tab-image {
    transform: none;
  }

  .tab-content__top {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  ._2-col-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .yellow-link {
    font-size: .8rem;
  }

  .huge-text {
    font-size: 2rem;
  }

  .page-max-width {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .swiper.is-gallery {
    width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
  }

  .slideshow-1 {
    margin-bottom: 5rem;
  }

  .padding-vertical {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .padding-vertical.pd-divider {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .padding-vertical.pv-more {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .slideshow-2 {
    margin-bottom: 5rem;
  }

  .hero-text-bold {
    padding-left: 0;
    font-size: 2rem;
    line-height: 1.2;
  }

  .headline-wrapper.hw-only-mobile {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: none;
  }

  .slideshow-arrows {
    width: 10rem;
    right: 0;
  }

  .slideshow-arrows.sa-left {
    left: 0;
  }

  .hero-text-bold-about {
    width: 60vw;
    font-size: 2rem;
    line-height: 1.2;
  }

  .arrow.arrow-next, .arrow.arrow-prev {
    width: .9rem;
  }

  .arrow-wrapper {
    display: none;
  }

  .text-block-11 {
    font-size: 2rem;
  }

  .collection-item-2 {
    min-width: auto;
  }

  .div-block-17 {
    width: 70vw;
  }

  .div-block-18 {
    margin-bottom: -5rem;
  }

  .pos-paginierung {
    bottom: -3rem;
  }

  .contact-3col {
    grid-column-gap: 2rem;
    grid-row-gap: 6rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 1fr) 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-19 {
    margin-bottom: -4.5rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-color: #000;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 35px;
  }

  p {
    font-size: 16px;
  }

  .navbar {
    background-color: #000;
  }

  .container._4ems {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .brand.w--current {
    padding-left: 0;
  }

  .section {
    max-width: 100%;
  }

  .hero-text {
    font-size: 50px;
  }

  .fade-in-on-scroll.margin-mobile {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  ._6-col-grid, ._6-col-grid.relative {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer {
    padding: 40px 20px;
  }

  .button.b_job {
    bottom: 3rem;
    right: 1rem;
  }

  .relative.hide-mobile {
    display: none;
  }

  .hero-text-container {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .illustation-image {
    width: 80%;
  }

  .scroll-down-tag-container {
    inset: 0% -16% auto auto;
  }

  .scroll-down-tag-container.work {
    width: 140px;
    min-width: 140px;
    height: 140px;
    min-height: 140px;
  }

  .animate-on-load-image-1st._100w-h.video-mobile {
    display: block;
  }

  .hero-image-holder {
    height: 500px;
    min-height: 500px;
  }

  .social-media-holder.blog {
    flex-direction: row;
  }

  .bda-title {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .know-more-wrapper {
    padding-top: 4em;
    padding-bottom: 6em;
  }

  .text-block-5.bold {
    font-size: 1.8rem;
  }

  .text-copy-text.pd-left {
    padding-left: 0;
  }

  ._9-col-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .scrolldown.sd-mobile {
    display: block;
    position: relative;
    bottom: -2rem;
    left: 0;
  }

  .scrolldown.sd-work {
    bottom: -3rem;
  }

  .video-embed {
    height: 310px;
  }

  .video-embed.ar-1-1.video-desktop-tablet {
    display: none;
  }

  .video-embed.ar-1-1.video-mobile {
    display: block;
  }

  .client-grid {
    grid-column-gap: 3.3rem;
    grid-row-gap: 3.3rem;
    grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
  }

  ._4-col-grid.jobs-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  ._3-col-grid {
    grid-template-columns: 1fr;
  }

  .content-item__nr {
    margin-top: -.2em;
  }

  .content-item__heading {
    font-size: 2rem;
  }

  .tab-content__item-main {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .tab-content__bottom {
    max-width: none;
  }

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

  ._2-col-grid {
    grid-template-columns: 1fr;
  }

  .swiper.is-gallery {
    width: calc(100% - 4rem);
  }

  .swiper.work-swiper {
    height: 14rem;
    margin-top: 1rem;
  }

  .padding-vertical {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .padding-vertical.pv-more {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .left-column-projects {
    display: none;
  }

  .divider-text {
    font-size: 2rem;
  }

  .slideshow-arrows {
    width: 9rem;
    right: 0;
  }

  .slideshow-arrows.sa-left {
    width: 8.1rem;
    left: 0;
  }

  .hero-text-bold-about {
    font-size: 2rem;
  }

  .text-copy {
    font-size: 1rem;
  }

  .div-block-17 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 100%;
    margin-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .div-block-18 {
    margin-bottom: 1rem;
  }

  .contact-3col {
    grid-template-columns: minmax(200px, 1fr);
  }
}

@media screen and (max-width: 479px) {
  body {
    background-color: #000;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 22px;
  }

  p {
    font-size: 1rem;
  }

  blockquote {
    padding: 13px;
  }

  .navbar {
    background-color: #000;
    height: 4rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container.nav-container {
    min-height: auto;
    padding: 0 .5rem 0 1.5rem;
  }

  .container.hero-container {
    padding-bottom: 2em;
  }

  .brand {
    padding-left: 0;
    position: relative;
  }

  .brand.w--current {
    z-index: 0;
  }

  .section {
    overflow: hidden;
  }

  .hero-text {
    font-size: 40px;
  }

  ._6-col-grid, ._6-col-grid.relative {
    grid-template-columns: 1fr 1fr 1fr;
  }

  ._5-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._8-col-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    align-items: center;
    display: flex;
  }

  .footer {
    text-align: left;
    padding: 0;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .text-field-holder {
    flex-direction: column;
  }

  .button.footer-button {
    width: 100%;
  }

  .project-list-wrapper {
    margin-top: 16px;
  }

  .project-link {
    padding-bottom: 1rem;
  }

  .scroll-down-tag-container {
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
    min-height: 5rem;
    right: -3%;
  }

  .scroll-down-tag-container.pos-neu {
    width: 6rem;
    min-width: 6rem;
    height: 6rem;
    min-height: 6rem;
  }

  .scroll-down-arrow {
    width: .7rem;
  }

  .hero-image-holder {
    height: 100%;
    min-height: 0;
  }

  .blog-grid {
    flex-direction: column;
    display: flex;
  }

  .utility-page-content {
    max-width: 100vw;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  ._8-col {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bda-title {
    padding-bottom: 1em;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.4;
  }

  .bda-yellow-square {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .bda-yellow-square.black-square {
    padding: 1rem 1rem 1rem 2rem;
  }

  .bda-project-subtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .bda-project-title {
    font-size: 1rem;
  }

  .link-block {
    width: 2rem;
    height: 2rem;
  }

  .know-more-wrapper {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .text-block-4 {
    font-size: 1.2rem;
  }

  .hero-visual-wrapper {
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-title-wrapper {
    aspect-ratio: auto;
    padding: 1rem;
    display: none;
  }

  .text-block-5 {
    font-size: 1.4rem;
  }

  .text-copy-text {
    font-size: .8rem;
  }

  .text-block-6 {
    font-size: .75rem;
  }

  ._9-col-grid {
    grid-template-columns: 1fr;
  }

  ._9-col-grid._0-margin {
    padding-left: 0;
    padding-right: 0;
  }

  ._9-col-grid.o-pad-bottom {
    padding-bottom: 0;
  }

  .burger-dropdown-menu {
    z-index: 1;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    aspect-ratio: auto;
    width: 100%;
    height: 24rem;
    padding-right: 3.2em;
    display: none;
  }

  .scrolldown.sd-mobile, .scrolldown.sd-work {
    bottom: -4rem;
  }

  .video-embed {
    height: auto;
  }

  .video-embed.ar-1-1.video-desktop-tablet {
    display: none;
  }

  .video-embed.ar-1-1.video-mobile {
    display: block;
  }

  .background-video-wrapper.ar-21-9 {
    padding-bottom: 56.25%;
  }

  .avatar-type {
    font-size: 1.4rem;
  }

  .avatar {
    min-width: 100px;
    min-height: 100px;
  }

  .client-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
    max-width: none;
  }

  ._4-col-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  ._3-col-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .filter-buttons {
    grid-column-gap: .6rem;
    grid-row-gap: .6rem;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 2rem;
    font-size: .8rem;
    line-height: 1.1;
  }

  .filter-btn {
    color: #6e6e6e;
    text-align: left;
  }

  .content-item__nr {
    flex: none;
  }

  .tab-content__wrap {
    max-width: 100%;
  }

  .content-item__heading {
    font-size: 1.4rem;
  }

  .tab-content__item-main {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .tab-content__inner {
    width: 100%;
    max-width: 100%;
  }

  .tab-content__bottom, .tab-layout__col {
    max-width: 100%;
  }

  .tab-image {
    aspect-ratio: auto;
  }

  .tab-content__item {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .tab-content__top {
    width: 100%;
    max-width: 100%;
  }

  .tab-content__top.ct_mobile {
    margin-bottom: -3rem;
  }

  .legal-link-wrapper {
    flex-flow: column;
    margin-top: 2rem;
    position: relative;
    bottom: auto;
  }

  .legal-link.ll-nohover.ll-mob-hide {
    display: none;
  }

  .yellow-link {
    font-size: .8rem;
  }

  .huge-text {
    font-size: 1.4rem;
  }

  .swiper.work-swiper {
    height: 9rem;
    margin-top: 1rem;
  }

  .padding-vertical {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .padding-vertical.pv-swiper-about {
    margin-bottom: 5rem;
  }

  .padding-vertical.pd-divider {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero-text-bold {
    padding-top: 3rem;
    padding-bottom: 2rem;
    padding-left: 0;
    font-size: 1.6rem;
  }

  .left-col {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .all-projects {
    display: none;
  }

  .right-column-projects {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .headline-wrapper {
    display: none;
  }

  .headline-wrapper.hw-only-mobile {
    padding-left: 2rem;
    display: block;
  }

  .lottie-animation-2 {
    width: 4.5rem;
  }

  .divider-text {
    font-size: 1rem;
  }

  .div-block-13 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .svg_white {
    width: .7rem;
  }

  .burger-to-x {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
  }

  .hero-image {
    position: relative;
  }

  .hero-text-bold-about {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }

  .text-block-11 {
    font-size: .75rem;
  }

  .text-block-11.tb-bold {
    font-size: 1rem;
  }

  .collection-item {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-12 {
    font-size: 1.2rem;
  }

  .div-block-15 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-copy {
    font-size: 1rem;
  }

  .collection-item-2 {
    min-width: auto;
  }

  .div-block-17 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .collection-list-3 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .darken-project {
    font-size: .75rem;
  }

  .div-block-18 {
    margin-bottom: 0;
  }

  .custom-bullet {
    width: 1.1rem;
    height: 1.1rem;
  }

  .pos-paginierung {
    bottom: -3rem;
  }

  .div-block-20 {
    padding-bottom: 56.25%;
  }

  .title_wrap {
    margin-top: .9rem;
    line-height: .8;
  }

  .heading {
    font-size: 1.4rem;
  }

  .herosub {
    font-size: .8rem;
  }

  .herosub.hs-project {
    margin-top: 1rem;
  }
}

#all-projects.w-node-ba9a4810-0ae3-0294-e1d4-66db8494a208-c531d65b {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-c0756f10-3ecf-fc1e-e2ed-2da99728c3d8-c531d65b {
  grid-area: 1 / 1 / 2 / 5;
  align-self: start;
}

#w-node-d7099dde-3d1d-e93f-f5d9-a259cfeb5451-c531d65b {
  grid-area: span 2 / span 4 / span 2 / span 4;
}

#w-node-_14e6ffc3-e7b3-24e4-a35b-fa2a9e56ed20-c531d65b {
  grid-area: 2 / 1 / 3 / 9;
}

#w-node-_0d0d9b71-9b04-30d1-9ddf-478a56916360-c531d65e, #w-node-acc17bec-9acc-89ed-cf2c-6c73c2833093-c531d65e {
  grid-area: span 1 / span 9 / span 1 / span 9;
}

#w-node-db687c9d-e7b7-e621-5b69-3f1a52f01fa2-c531d65e {
  align-self: end;
}

#w-node-_3984619d-7c14-1d5e-87d5-0a99e397593d-c531d65e, #w-node-_3984619d-7c14-1d5e-87d5-0a99e397594a-c531d65e {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_5a5bf76a-3447-6840-b692-202ddaf7241e-c531d65e, #w-node-_97087fa6-791b-b098-ee5b-c43b16a34c21-c531d65e, #w-node-af526a83-5144-ee27-80b9-77e9101145b4-c531d65e, #w-node-af526a83-5144-ee27-80b9-77e9101145b9-c531d65e, #w-node-_319a2ca9-1781-cba9-fdcc-412f37d69005-c531d65e, #w-node-_319a2ca9-1781-cba9-fdcc-412f37d6900a-c531d65e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3984619d-7c14-1d5e-87d5-0a99e397595c-c531d65e {
  grid-column: span 6 / span 6;
}

#w-node-_403ef137-9315-cc3d-e01e-6d99830cb38e-c531d65e, #w-node-_2724c99b-3870-bd6d-0044-963b56bf2743-c531d65e, #w-node-c6e36b42-6222-d727-5162-dd1506142d94-c531d65e, #w-node-_3244c1ff-6dd9-87de-ec96-f01b675a3434-c531d65e {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_15165e0e-96f8-7eb0-2f6b-ba9c958182af-c531d65f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_668b8d22-3eb7-8a95-021a-2d36ed6be470-c531d65f {
  grid-area: 1 / 4 / 2 / 10;
}

#w-node-_1c8b59b9-3f1d-6675-1445-358edcba6ec2-c531d65f {
  grid-area: 2 / 4 / 3 / 8;
}

#w-node-_9785e139-5b88-6b15-c138-379ae71442da-c531d65f {
  grid-area: 2 / 6 / 3 / 8;
}

#w-node-d51577d5-bd5d-55cf-1fd1-024af30af651-c531d65f {
  grid-area: 2 / 8 / 3 / 10;
}

#w-node-_1f85efde-39ea-f37f-c234-d29942a92fb4-c531d65f {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_329af8ed-21bf-6713-22d9-a13689f21a59-c531d65f {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_6d3871d3-07af-0810-e1f8-ccffe828b9d2-c531d65f {
  grid-area: 1 / 4 / 2 / 10;
}

#w-node-_830300ab-4b0d-d442-7c4d-7551d3606997-c531d65f {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_505492b2-18bd-9336-ea0f-69f800c2c471-c531d65f {
  grid-area: 1 / 4 / 2 / 10;
}

#w-node-_2443b18a-fc46-00a8-2654-7cea4978a119-c531d65f {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8f845b0d-2a18-ddd2-f587-ecc23d69bdae-c531d65f {
  grid-area: 1 / 4 / 2 / 10;
}

#w-node-_8f845b0d-2a18-ddd2-f587-ecc23d69bdb0-c531d65f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eb9302e0-a7f9-f29b-6b3f-ecaa0753ff91-c531d660 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_03b790de-2f5d-f32b-89f7-90f73f9099e5-c531d660 {
  grid-area: 2 / 1 / 3 / 9;
}

#w-node-dc5ba4c6-f857-32c3-a54e-e7b3dd9cdd45-c531d660, #w-node-_0a98cf16-f92f-0e4c-6236-1f7d6818ae7e-c531d661 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-dce6d012-bd00-d1df-3474-729f01c0805e-c531d661 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-dce6d012-bd00-d1df-3474-729f01c0805b-c531d661 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-e507a5d3-6438-b015-75e4-0546966b8394-966b8391 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-e507a5d3-6438-b015-75e4-0546966b839b-966b8391, #w-node-e507a5d3-6438-b015-75e4-0546966b83a7-966b8391 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e507a5d3-6438-b015-75e4-0546966b83b3-966b8391 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-e507a5d3-6438-b015-75e4-0546966b83c6-966b8391 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d3adb314-e2e8-88e2-4f92-7232f5d33dc0-7f9159c1 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_5c50f4ff-7969-42b0-fa5e-f486ef95d7c8-8fc03114 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_754de388-a9b7-c54a-1dd8-341dd19b0f5e-8fc03114 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_3984619d-7c14-1d5e-87d5-0a99e397593d-c531d65e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_3984619d-7c14-1d5e-87d5-0a99e397594a-c531d65e, #w-node-_3984619d-7c14-1d5e-87d5-0a99e397595c-c531d65e, #w-node-_403ef137-9315-cc3d-e01e-6d99830cb38e-c531d65e, #w-node-_2724c99b-3870-bd6d-0044-963b56bf2743-c531d65e, #w-node-c6e36b42-6222-d727-5162-dd1506142d94-c531d65e {
    grid-area: span 1 / span 9 / span 1 / span 9;
  }

  #w-node-_1c8b59b9-3f1d-6675-1445-358edcba6ec2-c531d65f {
    grid-area: 2 / 4 / 3 / 9;
  }

  #w-node-_9785e139-5b88-6b15-c138-379ae71442da-c531d65f {
    grid-area: 3 / 4 / 4 / 10;
  }

  #w-node-d51577d5-bd5d-55cf-1fd1-024af30af651-c531d65f {
    grid-area: 4 / 4 / 5 / 10;
  }

  #w-node-_1f85efde-39ea-f37f-c234-d29942a92fb4-c531d65f {
    grid-column: span 9 / span 9;
  }

  #w-node-_329af8ed-21bf-6713-22d9-a13689f21a59-c531d65f {
    grid-area: 1 / 1 / 2 / 10;
  }

  #w-node-_6d3871d3-07af-0810-e1f8-ccffe828b9d2-c531d65f {
    grid-area: span 1 / span 9 / span 1 / span 9;
  }

  #w-node-_42cfeb36-d4ab-81bc-bbdf-e9c21f1854e5-c531d661 {
    order: 0;
  }

  #w-node-_1cc125ab-19cd-fae1-4f2a-332c623266b5-c531d661 {
    order: 9999;
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-dce6d012-bd00-d1df-3474-729f01c0805e-c531d661 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-dce6d012-bd00-d1df-3474-729f01c0805b-c531d661 {
    grid-column: 1 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c0756f10-3ecf-fc1e-e2ed-2da99728c3d8-c531d65b {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-d7099dde-3d1d-e93f-f5d9-a259cfeb5451-c531d65b {
    grid-area: span 2 / span 8 / span 2 / span 8;
  }

  #w-node-_3984619d-7c14-1d5e-87d5-0a99e397594a-c531d65e {
    grid-area: span 1 / span 9 / span 1 / span 9;
  }

  #w-node-_3984619d-7c14-1d5e-87d5-0a99e397595c-c531d65e {
    grid-column: span 9 / span 9;
  }

  #w-node-_0a98cf16-f92f-0e4c-6236-1f7d6818ae7e-c531d661 {
    grid-column: span 5 / span 5;
  }

  #w-node-_42cfeb36-d4ab-81bc-bbdf-e9c21f1854e5-c531d661 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1cc125ab-19cd-fae1-4f2a-332c623266b5-c531d661 {
    order: -9999;
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-dce6d012-bd00-d1df-3474-729f01c0805e-c531d661 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-dce6d012-bd00-d1df-3474-729f01c0805b-c531d661 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-_5c50f4ff-7969-42b0-fa5e-f486ef95d7c8-8fc03114 {
    grid-column: span 5 / span 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d7099dde-3d1d-e93f-f5d9-a259cfeb5451-c531d65b {
    grid-area: span 2 / span 8 / span 2 / span 8;
  }

  #w-node-_0d0d9b71-9b04-30d1-9ddf-478a56916360-c531d65e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3984619d-7c14-1d5e-87d5-0a99e397594a-c531d65e, #w-node-_3984619d-7c14-1d5e-87d5-0a99e397595c-c531d65e {
    grid-column: span 2 / span 2;
  }

  #w-node-_15165e0e-96f8-7eb0-2f6b-ba9c958182af-c531d65f, #w-node-_668b8d22-3eb7-8a95-021a-2d36ed6be470-c531d65f, #w-node-_1c8b59b9-3f1d-6675-1445-358edcba6ec2-c531d65f, #w-node-_9785e139-5b88-6b15-c138-379ae71442da-c531d65f, #w-node-d51577d5-bd5d-55cf-1fd1-024af30af651-c531d65f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f85efde-39ea-f37f-c234-d29942a92fb4-c531d65f {
    grid-column: span 1 / span 1;
  }

  #w-node-_6d3871d3-07af-0810-e1f8-ccffe828b9d2-c531d65f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_830300ab-4b0d-d442-7c4d-7551d3606997-c531d65f {
    grid-column: span 1 / span 1;
  }

  #w-node-_505492b2-18bd-9336-ea0f-69f800c2c471-c531d65f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2443b18a-fc46-00a8-2654-7cea4978a119-c531d65f {
    grid-column: span 1 / span 1;
  }

  #w-node-_8f845b0d-2a18-ddd2-f587-ecc23d69bdae-c531d65f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0a98cf16-f92f-0e4c-6236-1f7d6818ae7e-c531d661, #w-node-_5c50f4ff-7969-42b0-fa5e-f486ef95d7c8-8fc03114 {
    grid-column: span 3 / span 3;
  }
}


@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-SemiBold.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-Regular.woff2') format('woff2'), url('../fonts/BDA-IDEA-SemiLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-ExtraBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-Black.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-Medium.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-ExtraLight.woff2') format('woff2'), url('../fonts/BDA-IDEA-Light.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BDA Idea';
  src: url('../fonts/BDA-IDEA-ExtraBlack.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}