html,
body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  scroll-behavior: smooth;
}

body {
  background-color: #2e2e2e;
  color: #ffffff;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

.heading {
  position: relative;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  height: 100vh;
}
.heading #heading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.heading #heading-video .video-frame {
  position: absolute;
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.heading .heading-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading .heading-backdrop__content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.heading .heading-backdrop__content__banner {
  width: 70%;
}
@media (min-width: 900px) {
  .heading .heading-backdrop__content__banner {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .heading .heading-backdrop__content__banner {
    width: 45%;
  }
}
.heading .heading-backdrop__content__banner img {
  width: 100%;
}

.navbar {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 60px;
  background-color: #2e2e2e;
  transition: background-color 0.3s ease;
  font-family: "Bebas Neue", cursive;
}
.navbar--dark {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.75);
}
@media (min-width: 900px) {
  .navbar {
    height: 70px;
  }
}
.navbar__logo {
  display: inline-block;
  height: 60px;
  margin-left: 10px;
  transition: all ease 0.3s;
}
.navbar__logo img {
  height: 100%;
}
@media (min-width: 900px) {
  .navbar__logo {
    display: inline-block;
    height: 70px;
    transform-origin: top left;
    transform: scale(1.8);
    margin-left: 50px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.75);
  }
  .navbar--dark .navbar__logo {
    transform: scale(1);
    box-shadow: none;
  }
}
.navbar__menu-icon {
  width: 20px;
  height: 19px;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.navbar__menu-icon::before { /* this targets the div before "__middle" */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: #ffffff;
  transform-origin: 0 0; /* => top-left corner, needed for rotation  */
  transition: transform 0.3s ease-out;
}
.navbar__menu-icon__middle {
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 3px;
  background: #ffffff;
  transform-origin: 0 50%;
  transition: all 0.3s ease-out;
}
.navbar__menu-icon::after { /* this targets the div after "__middle" */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: #ffffff;
  transform-origin: 0 100%;
  transition: transform 0.3s ease-out;
}
@media (min-width: 900px) {
  .navbar__menu-icon {
    display: none;
  }
}
.navbar__menu-icon--close-x::before {
  transform: rotate(45deg) scaleX(1.25); /* rotate and scale length (not height) */
}
.navbar__menu-icon--close-x::after {
  transform: rotate(-45deg) scaleX(1.25) translateY(1px);
}
.navbar__menu-icon--close-x .navbar__menu-icon__middle {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__content {
  display: none;
}
.navbar__content a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.5rem;
}
.navbar__content--is-visible {
  display: block;
  padding-top: 60px;
  margin-top: calc(-60px - 5px);
  padding-bottom: 10px;
  background-color: #2e2e2e;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.75);
}
.navbar__content--is-visible ul {
  margin: 0;
  margin-top: -4px;
  padding: 0;
}
.navbar__content--is-visible ul li {
  list-style: none;
  text-align: center;
  padding: 10px;
}
@media (min-width: 700px) {
  .navbar__content--is-visible ul li {
    padding: 20px;
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) {
  .navbar__content {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .navbar__content ul {
    margin: 0;
  }
  .navbar__content ul li {
    list-style: none;
    display: inline-block;
    padding: 0 2rem;
    cursor: pointer;
  }
}
@media (min-width: 1800px) {
  .navbar__content a:hover {
    text-decoration: underline;
  }
}

.about {
  position: relative;
}
.about__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(46, 46, 46, 0.55);
}
@media (min-width: 700px) {
  .about {
    padding-top: 30px;
  }
}
@media (min-width: 900px) {
  .about {
    background-image: url(../../assets/images/about_background_1920.jpeg);
    background-repeat: no-repeat;
    background-position: 65% 0%;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  .about {
    background-position: top;
  }
}
.about__content {
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 900px) {
  .about__content {
    padding-bottom: 60px;
  }
}
.about__content__title {
  text-align: center;
  padding-bottom: 10px;
}
.about__content__subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 2.7rem;
  font-family: "Bebas Neue", cursive;
  padding-top: 40px;
}
@media (min-width: 700px) {
  .about__content__subtitle {
    font-size: 3.4rem;
  }
}
@media (min-width: 900px) {
  .about__content__subtitle {
    text-align: left;
  }
  .about__content__subtitle--right {
    text-align: right;
    padding-top: 20px;
  }
}
.about__content__text {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  text-align: center;
  padding: 0 2rem 40px 2rem;
}
@media (min-width: 700px) {
  .about__content__text {
    font-size: 1.2rem;
    padding: 0 3.2rem 40px 3.2rem;
  }
}
@media (min-width: 900px) {
  .about__content__text {
    flex-direction: row;
    justify-content: start;
    text-align: left;
    padding: 0;
    padding-right: 50%;
    font-size: 1rem;
  }
  .about__content__text--right {
    flex-direction: column;
    text-align: right;
    padding-right: 0;
    padding-left: 30%;
  }
}
@media (min-width: 1200px) {
  .about__content__text {
    flex-direction: row;
    justify-content: start;
    text-align: left;
    padding: 0;
    padding-right: 50%;
    font-size: 1rem;
  }
  .about__content__text--right {
    flex-direction: column;
    text-align: right;
    padding-right: 0;
    padding-left: 50%;
  }
}
.about__content__text__paragraph--no-margin-bottom {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .about__content__text__paragraph--no-margin-bottom {
    margin-bottom: 1em;
  }
}
.about__content__avatar {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 120px;
  height: 120px;
  padding: 10px 0;
}
@media (min-width: 700px) {
  .about__content__avatar {
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 900px) {
  .about__content__avatar {
    display: none;
  }
}
.about__content__avatar img {
  border-radius: 100%;
  width: 100%;
}
.about__content__line-break {
  width: 70%;
}
@media (min-width: 900px) {
  .about__content__line-break {
    display: none;
  }
}
.about__content a {
  color: #ffffff;
}

.collage {
  background-color: #ffffff;
}
.collage__image {
  width: 100%;
}
.collage--dark {
  background-color: #2e2e2e;
}
@media (min-width: 900px) {
  .collage {
    display: none;
  }
}

.features {
  color: #2e2e2e;
  background-color: #ffffff;
}
@media (min-width: 700px) {
  .features {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.features__content {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 30px 0;
}
@media (min-width: 900px) {
  .features__content {
    flex-direction: row;
    justify-content: space-between;
    align-content: stretch;
    flex-wrap: wrap;
  }
}
.features__content__item {
  display: inline-block;
  padding: 10px 0 20px 0;
  text-align: center;
}
@media (min-width: 900px) {
  .features__content__item {
    width: 50%;
    margin-bottom: 0;
  }
}
.features__content__item__icon {
  margin-top: 20px;
  width: 120px;
}
.features__content__item__icon--small {
  width: 100px;
}
.features__content__item__icon--very-small {
  width: 100px;
}
.features__content__item__icon--mirror {
  transform: scaleX(-1);
  padding-right: 25px;
}
.features__content__item__icon--closer {
  margin-bottom: -20px;
}
@media (min-width: 700px) {
  .features__content__item__icon {
    width: 140px;
  }
  .features__content__item__icon--small {
    width: 120px;
  }
  .features__content__item__icon--very-small {
    width: 120px;
  }
}
@media (min-width: 900px) {
  .features__content__item__icon {
    width: 120px;
  }
  .features__content__item__icon--very-small {
    width: 100px;
  }
}
.features__content__item__title {
  padding: 10px 50px;
  font-weight: 300;
  font-size: 2.5rem;
  font-family: "Bebas Neue", cursive;
}
@media (min-width: 700px) {
  .features__content__item__title {
    font-size: 3.4rem;
  }
}
@media (min-width: 900px) {
  .features__content__item__title {
    font-size: 3rem;
    padding: 10px;
  }
}
.features__content__item__text {
  padding: 0 3rem;
  font-size: 1rem;
}
@media (min-width: 700px) {
  .features__content__item__text {
    font-size: 1.2rem;
    padding: 0 5rem;
  }
}
@media (min-width: 900px) {
  .features__content__item__text {
    font-size: 1rem;
    padding: 10px 2rem;
  }
}
@media (min-width: 1200px) {
  .features__content__item__text {
    padding: 10px 5rem;
  }
}

.portfolio__content {
  padding-top: 10px;
  padding-bottom: 30px;
}
@media (min-width: 700px) {
  .portfolio__content {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.portfolio__content__subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 2.7rem;
  font-family: "Bebas Neue", cursive;
  padding: 40px 0 10px 0;
}
@media (min-width: 700px) {
  .portfolio__content__subtitle {
    font-size: 3.4rem;
  }
}
@media (min-width: 1200px) {
  .portfolio__content__subtitle {
    padding-bottom: 40px;
  }
}
.portfolio__content__text {
  text-align: center;
}
.portfolio__content__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .portfolio__content__container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.portfolio__content__item {
  padding: 30px 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .portfolio__content__item {
    flex: 0 45%;
    padding: 20px;
  }
}
.portfolio__content__item--placeholder {
  display: none;
}
@media (min-width: 1200px) {
  .portfolio__content__item--placeholder {
    display: block;
  }
}
.portfolio__content__item__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  padding-bottom: 5px;
}
@media (min-width: 700px) {
  .portfolio__content__item__title {
    font-size: 1.4rem;
  }
}
.portfolio__content__item__subtitle {
  text-align: center;
  font-style: italic;
  font-size: 0.8rem;
  padding-bottom: 10px;
}
@media (min-width: 700px) {
  .portfolio__content__item__subtitle {
    font-size: 0.9rem;
  }
}
.portfolio__content__item__video {
  position: relative;
  padding: 41.82% 0 0 0;
}

.featured-on {
  position: relative;
  color: #ffffff;
  background: url(../../assets/images/testimonial_background_2_1920.jpeg) no-repeat center;
  background-size: cover;
}
@media (min-width: 900px) {
  .featured-on {
    background: none;
    color: #2e2e2e;
    background-color: #ffffff;
  }
}
.featured-on__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(46, 46, 46, 0.5);
}
@media (min-width: 900px) {
  .featured-on__backdrop {
    display: none;
  }
}
.featured-on__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 45px;
}
.featured-on__content__subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 2.7rem;
  font-family: "Bebas Neue", cursive;
  padding: 40px 0 30px;
}
@media (min-width: 700px) {
  .featured-on__content__subtitle {
    font-size: 3.4rem;
  }
}
@media (min-width: 1200px) {
  .featured-on__content__subtitle {
    padding-bottom: 40px;
  }
}
.featured-on__content__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-on__content__item {
  height: 120px;
}
@media (min-width: 700px) {
  .featured-on__content__item {
    height: 132px;
  }
}
@media (min-width: 1200px) {
  .featured-on__content__item {
    height: 156px;
  }
}
.featured-on__content__item--height-90 {
  height: 108px;
}
@media (min-width: 700px) {
  .featured-on__content__item--height-90 {
    height: 118.8px;
  }
}
@media (min-width: 1200px) {
  .featured-on__content__item--height-90 {
    height: 140.4px;
  }
}
.featured-on__content__item img {
  height: 100%;
}
.featured-on__content__item:not(:last-child) {
  padding-right: 15px;
}
@media (min-width: 900px) {
  .featured-on__content__item:not(:last-child) {
    padding-right: 30px;
  }
}

.testimonials {
  position: relative;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .testimonials {
    background: url(../../assets/images/testimonial_background_2_1920.jpeg) no-repeat center;
  }
  .testimonials__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(46, 46, 46, 0.75);
  }
}
.testimonials__content {
  padding-top: 30px;
}
@media (min-width: 900px) {
  .testimonials__content {
    padding-top: 0;
  }
}
.testimonials__content__subtitle {
  position: relative;
  text-align: center;
  font-weight: 300;
  font-size: 2.7rem;
  font-family: "Bebas Neue", cursive;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (min-width: 700px) {
  .testimonials__content__subtitle {
    font-size: 3.4rem;
  }
}
@media (min-width: 900px) {
  .testimonials__content__subtitle {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.testimonials__content__item {
  position: relative;
  text-align: center;
  margin-top: 100px;
  margin-right: 20px;
  margin-left: 20px;
  border: 1px #ffffff solid;
}
@media (min-width: 900px) {
  .testimonials__content__item {
    margin-top: 150px;
    border: 1px rgba(255, 255, 255, 0.75) solid;
    background-color: rgba(46, 46, 46, 0.75);
  }
}
.testimonials__content__item__avatar {
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  transform: translate(-50%, -50%);
  border: white solid 3px;
  border-radius: 100%;
  overflow: hidden;
}
.testimonials__content__item__avatar img {
  width: 100%;
  height: 100%;
}
.testimonials__content__item__title {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Bebas Neue", cursive;
}
@media (min-width: 700px) {
  .testimonials__content__item__title {
    font-size: 3.4rem;
  }
}
@media (min-width: 900px) {
  .testimonials__content__item__title {
    font-size: 3rem;
  }
}
.testimonials__content__item__quote {
  margin: 0;
  padding: 20px 1.1rem;
  font-style: italic;
}
@media (min-width: 700px) {
  .testimonials__content__item__quote {
    font-size: 1.2rem;
  }
}
@media (min-width: 900px) {
  .testimonials__content__item__quote {
    padding: 30px 1.1rem;
    font-size: 1rem;
  }
}

.tns-outer {
  position: relative;
}

.tns-controls {
  margin-top: 20px;
  text-align: center;
}

[data-controls] {
  padding: 0 15px;
  z-index: 1;
  border: 0;
  background: transparent;
}
[data-controls]:focus {
  outline: none;
}
[data-controls] img {
  height: 20px;
}

.wrapper {
  margin: 0 20px;
}
@media (min-width: 900px) {
  .wrapper {
    margin: 0 50px;
  }
}
.wrapper--navbar {
  height: 100%;
  position: relative;
  margin: 0;
}
@media (min-width: 900px) {
  .wrapper--navbar {
    margin: 0 20px;
  }
}
.wrapper--testimonials {
  margin: 0 10px;
  padding-top: 100px;
  padding-bottom: 10px;
}
@media (min-width: 900px) {
  .wrapper--testimonials {
    padding-top: 120px;
    margin: 0 30px;
  }
}

.section {
  scroll-margin-top: 60px;
}
@media (min-width: 700px) {
  .section {
    scroll-margin-top: 70px;
  }
}
.section__title {
  font-weight: 300;
  font-size: 2.4rem;
}
@media (min-width: 700px) {
  .section__title {
    font-size: 4rem;
  }
}

.contact {
  display: flex;
  justify-content: center;
  color: #2e2e2e;
  background-color: #ffffff;
  padding: 60px 0;
}
.contact__content {
  position: relative;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.contact__content__title {
  font-family: "Bebas Neue", cursive;
  font-weight: 300;
  font-size: 2.5rem;
  padding-bottom: 10px;
}
.contact__content__text {
  padding-bottom: 20px;
}
.contact__content__button {
  display: inline-block;
  border: 1px solid #2e2e2e;
  border-radius: 15px;
  padding: 10px 25px;
  cursor: pointer;
  text-decoration: none;
  color: #2e2e2e;
}
@media (min-width: 1200px) {
  .contact__content__button:hover {
    background-color: #2e2e2e;
    color: #ffffff;
  }
}
.contact__content__social {
  margin-top: 80px;
}
.contact__content__social__icon {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 0 5px;
  border-radius: 100%;
}
.contact__content__social__icon--vimeo {
  background-color: #19B7EA;
}
.contact__content__social__icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
@media (min-width: 700px) {
  .contact__content__social__icon {
    margin: 0 10px;
  }
}
@media (min-width: 1200px) {
  .contact__content__social__icon {
    cursor: pointer;
  }
}
.contact__content__social__icon a {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}
.contact__content__social__icon a img {
  max-height: 100%;
  max-width: 100%;
}
.contact__content__avatar {
  display: none;
}
@media (min-width: 900px) {
  .contact__content__avatar {
    margin: auto;
    padding-bottom: 20px;
    display: block;
    height: 150px;
    width: 150px;
  }
}
@media (min-width: 1200px) {
  .contact__content__avatar {
    position: absolute;
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    height: 230px;
    width: 230px;
  }
}
.contact__content__avatar img {
  border-radius: 100%;
  width: 100%;
}

.footer {
  position: relative;
  height: 30px;
  background-color: #2e2e2e;
  color: #ffffff;
  padding: 0 10px;
}
@media (min-width: 1200px) {
  .footer {
    padding: 0 20px;
  }
}
.footer__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
}
.footer__content ul {
  margin: 0;
  padding: 0;
}
.footer__content ul li {
  list-style: none;
  display: inline-block;
}
.footer__content ul li.impressum {
  cursor: pointer;
}
.footer__content ul li + li::before {
  content: "|";
  padding: 0 5px;
}

.imprint {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.97);
  color: #2e2e2e;
}
.imprint--is-visible {
  opacity: 1;
  visibility: visible;
}
.imprint__close {
  width: 20px;
  height: 19px;
  position: absolute;
  z-index: 10;
  top: 30px;
  transform: translateY(-50%);
  right: 25px;
}
@media (min-width: 1200px) {
  .imprint__close {
    cursor: pointer;
  }
}
.imprint__close::before { /* this targets the div before "__middle" */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: #2e2e2e;
  transform-origin: 0 0; /* => top-left corner, needed for rotation  */
  transform: rotate(45deg) scaleX(1.25);
  transition: transform 0.3s ease-out;
}
.imprint__close::after { /* this targets the div after "__middle" */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: #2e2e2e;
  transform-origin: 0 100%;
  transform: rotate(-45deg) scaleX(1.25) translateY(1px);
  transition: transform 0.3s ease-out;
}
.imprint__content {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 10%;
  padding: 0 2.5rem;
  overflow-y: auto;
}
.imprint__content__title {
  text-align: center;
  font-weight: 300;
  font-size: 2.7rem;
  font-family: "Bebas Neue", cursive;
  margin-bottom: 10px;
}
@media (min-width: 700px) {
  .imprint__content__title {
    font-size: 3.4rem;
  }
}
.imprint__content__subtitle {
  text-align: left;
  font-weight: 300;
  font-size: 2rem;
  font-family: "Bebas Neue", cursive;
  padding-top: 20px;
  margin-bottom: -10px;
}
@media (min-width: 700px) {
  .imprint__content__subtitle {
    font-size: 2.4rem;
  }
}
.imprint__content__text {
  text-align: left;
}
.imprint__content__text a {
  color: #2e2e2e;
}
.imprint__content__text--small {
  font-size: 0.6rem;
}
@media (min-width: 700px) {
  .imprint__content {
    font-size: 1.2rem;
    padding: 0 3.2rem;
  }
}
@media (min-width: 900px) {
  .imprint__content {
    font-size: 1rem;
    padding: 0 4rem;
  }
}