@charset "UTF-8";

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-content {
  flex: 1;
}

/* Text */
.about-text {
  padding: 2rem 1.5rem;
  padding-bottom: 80px;
  margin-top: -5%;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* Layout Desktop */
@media (min-width: 1025px) {
body{
overflow-y: hidden;
	}
  .about-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-grow: 1;
    min-height: 0;
    position: relative;
  }

  .about-intro {
    display: flex;
    height: 100vh;
    width: 30%;
    flex-shrink: 0;
    flex-direction: column;
  }

  .about-image {
    flex-grow: 1;
    height: 100%;
    background-image: url("../img/test-image.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
	
.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  .about-text {
    width: 54%;
    padding-top: 2%;
    padding-right: 8%;
    padding-bottom: 8%;
    padding-left: 8%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-headline {
    position: absolute;
    left: calc(20px + 120px);
    bottom: 20px;
    z-index: 2;
  }

  .burger,
  .mobile-nav {
    display: none !important;
  }

  .navbar-static {
    display: block;
  }
	
.footer {
	position: fixed;
}
}

/* Layout Tablet & Mobile */
@media (max-width: 1024px) {
  .about-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .about-intro {
    display: flex;
    flex-direction: row;
    height: 88vh;
  }

  .about-headline {
    width: 30vw;
    height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .about-headline h1 {
    font-size: 45vw;
    line-height: 1;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #B3B3B3;
    margin: 0 0 0 -4%;
  }

  .about-image {
    width: 70vw;
    height: 100%;
    background-image: url("../img/shadow-agency-about.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-text {
    padding: 60px 5vw 10px 5vw;
  }