:root {
  --light: #fff;
  --dark: #221e36;
  --padding-size--main: 3vw;
  --radius--7px: 7px;
  --brand: #005ba8;
  --white: white;
  --black: black;
  --radius--20px: 0px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--light);
  color: var(--dark);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--dark);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.u-container {
  padding: 5rem var(--padding-size--main);
  border-radius: var(--radius--7px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.u-blue_overlay {
  color: var(--light);
  background-image: linear-gradient(rgba(13, 90, 155, .6), rgba(13, 90, 155, .6));
  position: absolute;
}

.c-hero_container.u-container {
  grid-column-gap: 2.2rem;
  grid-row-gap: 2.2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.u-heading {
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 300;
  line-height: 110%;
}

.c-hero_heading.u-heading {
  color: var(--light);
  max-width: 100%;
}

.c-button_primary {
  border: 2px solid var(--light);
  letter-spacing: 0;
  text-transform: none;
  background-color: rgba(56, 152, 236, 0);
  border-radius: 400px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  transition: all .2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.c-button_primary:hover {
  background-color: var(--light);
  color: var(--dark);
}

.c-button_primary.c-buuton-secondary {
  background-color: var(--brand);
  box-shadow: none;
  color: var(--light);
  border-style: none;
}

.c-button_primary.c-buuton-secondary:hover {
  background-color: #025092;
  box-shadow: 0 0 11px rgba(0, 0, 0, .2);
}

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

.c-hero_image {
  width: 150%;
  height: 111%;
  overflow: visible;
}

.c-hero_content {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.nav-link-block.w--current {
  color: #19adbc;
  font-weight: 700;
}

.c-logo {
  width: 270px;
}

.burger_menu-json {
  width: 250px;
  height: 250px;
}

.navbar {
  z-index: 400;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 254, 254, .87);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.menu-item {
  color: #02396d;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.menu-item:hover {
  color: #005ba8;
}

.c-navbar--menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.c-navbar-wrapper {
  z-index: 150;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 10px auto;
  padding: 10px 20px;
  display: flex;
}

.u-white {
  color: var(--white);
}

.c-content-container.u-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.c-content-paragraph {
  max-width: 80%;
}

.c-content-paragraph.cc-center {
  text-align: center;
  max-width: 70%;
}

.c-heading {
  color: var(--brand);
  text-align: left;
  line-height: 1.2;
}

.c-grid2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2.5rem;
  display: grid;
}

.c-card {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: var(--radius--7px);
  background-color: rgba(0, 91, 168, .08);
  border: 3px solid rgba(0, 91, 168, .3);
  flex-flow: column;
  padding: 1.6em 1rem;
  display: flex;
}

.c-card-title {
  color: var(--brand);
}

.c-card--paragraph {
  font-size: 1.1rem;
}

.c-card--icon {
  width: 50px;
  height: 50px;
}

.c-vorteile-section {
  margin-left: auto;
  margin-right: auto;
}

.u-grey {
  background-color: rgba(34, 30, 54, .1);
}

.c-features-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.c-features-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.c-feature--icon {
  object-fit: contain;
  border-radius: 50%;
  width: 150px;
}

.c-feature--description {
  color: var(--dark);
  text-transform: none;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.c-vorteile-heading.cc-center {
  color: var(--brand);
}

.cc-center {
  text-align: center;
}

.c-ansicht-section {
  background-image: url('../images/thumb.jpg');
  background-position: 50%;
  background-size: cover;
}

.c-ansicht-section.u-blue_overlay {
  background-image: linear-gradient(rgba(13, 90, 155, .6), rgba(13, 90, 155, .6)), url('../images/thumb.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  position: static;
}

.c-text-wrapper {
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.c-paragraph {
  color: #29383b;
  align-items: flex-end;
  font-size: 1rem;
  line-height: 160%;
}

.c-paragraph.cc-white-text, .c-paragraph.cc-footer {
  color: #fff;
}

.c-bubble-preview {
  z-index: 100;
  opacity: .97;
  background-color: #edf8fd;
  border: 7px dashed #fff;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: absolute;
  top: 9%;
  bottom: 0%;
  left: auto;
  right: 7%;
}

.text-block {
  color: #000;
}

.c-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.c-ueberuns-container.u-container {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.c-ueberuns-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 60%;
  display: flex;
}

.c-ueberuns-img {
  max-width: 40%;
}

.list {
  max-width: 80%;
  margin-bottom: 30px;
  padding-left: 2.5rem;
}

.c-bulletpoint {
  font-weight: 400;
}

.c-img-device {
  max-width: 60%;
}

.c-contact-infos {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: row;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  display: block;
}

.c-team-member-contact {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
}

.link {
  color: #29383b;
}

.c-small-icon {
  color: #005ba8;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.c-small-icon.cc-white {
  color: #fff;
}

.c-contact-card-info-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.c-contact-section {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.c-team-member-name {
  color: #29383b;
  margin-bottom: 0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 120%;
}

.c-section-titel {
  color: var(--brand);
}

.c-contact-infos-wrapper {
  max-width: 60%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 30%;
}

.c-contact-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px;
  display: block;
  position: relative;
}

.c-contact-container.u-container {
  padding: 1.875rem var(--padding-size--main) 3.75rem;
  background-color: rgba(34, 30, 54, .1);
  margin-top: 70px;
  position: relative;
}

.c-team-member-position {
  color: #29383b;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
}

.c-contact-img-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 300px;
  height: 130%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.c-contact-img {
  align-self: flex-end;
  overflow: visible;
}

.c-footer {
  background-color: #005ba8;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.c-footer-columm-name {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.c-footer-markplatz-logo {
  width: 320px;
  height: 30%;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.c-footer-column {
  flex-flow: column;
  align-items: flex-start;
}

.c-footer-downloads {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.cc-footer-link {
  opacity: .9;
  color: #fff;
  font-size: 1rem;
}

.cc-footer-link:hover {
  opacity: 1;
}

.c-footer-layout.u-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.c-footer-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.paragraph {
  max-width: 80%;
}

.c-icon-slider-box {
  z-index: 200;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: fixed;
  top: 200px;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.c-icon-side {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px none var(--light);
  background-color: var(--dark);
  border-radius: 8px 0 0 8px;
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  padding-left: 16px;
  display: flex;
}

.c-icon-side--icon {
  object-fit: fill;
  width: 30px;
  max-width: 30px;
  height: 30px;
  max-height: 30px;
}

.c-icon-slide--text {
  opacity: 1;
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
  display: block;
}

.bold-text {
  font-weight: 400;
}

.cc-white {
  color: #fff;
}

.c-video {
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-video.u-blue_overlay {
  min-height: 60vh;
  overflow: hidden;
}

.c-video-wrapper {
  z-index: -999;
  background-color: #000;
  width: 1000%;
  height: 100%;
  padding-bottom: 56%;
  position: absolute;
}

.c-video-embed {
  opacity: .7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.c-section {
  background-color: #fff;
  background-image: none;
  width: 100%;
}

.c-section.cc-grey {
  background-color: var(--dark);
}

.c-content-wrapper-2 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h2 {
  color: #29383b;
  font-size: 40px;
}

.h2.tm_40 {
  margin-bottom: 40px;
}

.c-inhalt-columns {
  flex-flow: column;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.c-inhalt-columns.cc-kategorie {
  flex-flow: column;
  max-width: 900px;
}

.c-column {
  align-self: stretch;
  width: 100%;
  margin: 40px auto;
}

.c-column.cc-kategorie {
  margin-top: 20px;
  margin-bottom: 20px;
}

.c-column.cc-kategorie.cc-image {
  width: 400%;
  margin-top: -101px;
}

.c-rich-text {
  margin-top: 2rem;
}

.c-rich-text p {
  margin-bottom: 5px;
  font-size: 1rem;
}

.c-rich-text h2 {
  color: var(--brand);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
}

.c-rich-text h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.c-rich-text li {
  font-size: 1rem;
}

.c-rich-text a {
  color: var(--brand);
  text-decoration: underline;
}

.c-trenner {
  background-color: var(--brand);
  height: 20px;
  position: fixed;
  top: 97px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.heading {
  color: var(--brand);
  text-align: center;
  font-size: 3rem;
}

.u-colored {
  color: var(--brand);
}

.c-sprungmarke {
  margin-top: -94px;
  position: absolute;
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 18px;
  }

  .c-rich-text {
    margin-top: 24px;
    font-size: 1.1rem;
  }

  .c-rich-text h2 {
    color: var(--brand);
  }
}

@media screen and (max-width: 991px) {
  .u-container {
    padding: 4rem 1.5rem;
  }

  .c-hero_container.u-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .c-hero_heading.u-heading {
    font-size: 2.7rem;
  }

  .c-hero_layout {
    grid-template-columns: 1fr 1fr;
  }

  .c-hero_image {
    max-width: 90%;
  }

  .nav-link-block {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 22px;
    line-height: 22px;
    display: block;
  }

  .c-logo {
    width: 250px;
  }

  .c-burger-btn {
    padding: 5px;
    display: flex;
  }

  .c-burger-btn.w--open {
    background-color: #fff;
  }

  .burger_menu-json {
    width: 45px;
    height: 45px;
  }

  .c-navbar--menu {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    box-shadow: 0 100px 100px 20px rgba(12, 72, 127, .7);
  }

  .c-logo-header {
    width: 85%;
  }

  .c-content-paragraph.cc-center {
    max-width: 100%;
  }

  .c-features-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .c-feature--icon {
    width: 120px;
  }

  .c-feature--description {
    font-size: 1rem;
  }

  .c-text-wrapper {
    width: 100%;
  }

  .c-paragraph, .c-paragraph.cc-footer {
    text-align: left;
  }

  .c-bubble-preview {
    top: 34%;
    bottom: auto;
    left: auto;
    right: 6%;
  }

  .c-content-wrapper {
    flex-flow: column;
    position: relative;
  }

  .c-ueberuns-container.u-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .c-ueberuns-content {
    order: 1;
    max-width: 100%;
  }

  .c-ueberuns-img {
    max-width: 70%;
  }

  .list {
    padding-left: 2rem;
  }

  .c-img-device {
    max-width: 100%;
  }

  .c-contact-infos {
    justify-content: center;
    align-items: center;
  }

  .c-contact-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .c-contact-infos-wrapper {
    margin-left: 37%;
  }

  .c-contact-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .c-contact-img {
    max-width: 90%;
  }

  .c-footer {
    flex-flow: row;
    margin-top: 3rem;
  }

  .c-footer-column {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .c-footer-layout.u-container {
    align-items: center;
  }

  .c-footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .c-video-wrapper {
    padding-bottom: 0%;
  }

  .c-video-embed {
    z-index: 1;
  }

  .h2 {
    text-align: center;
    line-height: 48px;
  }

  .c-column {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-column.cc-kategorie {
    width: 100%;
  }

  .c-column.cc-kategorie.cc-image {
    margin-top: -61px;
  }

  .heading {
    text-align: left;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .u-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .u-heading {
    font-size: 2rem;
  }

  .c-hero_heading.u-heading {
    padding-right: 1.875rem;
    font-size: 2.4rem;
  }

  .c-hero_layout {
    grid-template-columns: 1fr;
  }

  .nav-link-block {
    display: block;
  }

  .c-navbar-wrapper {
    border-radius: 0;
    margin-top: 0;
    top: 0;
  }

  .c-grid2 {
    grid-template-columns: 1fr;
  }

  .c-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .c-feature--icon {
    width: 140px;
  }

  .c-bubble-preview {
    top: 44%;
    left: 6%;
  }

  .c-ueberuns-container.u-container {
    flex-flow: column;
  }

  .c-ueberuns-content {
    order: 1;
  }

  .c-contact-infos {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .c-team-member-contact {
    margin-bottom: 0;
    font-size: 1.3rem;
  }

  .c-team-member-name {
    margin-bottom: 0;
  }

  .c-section-titel {
    font-size: 2rem;
  }

  .c-contact-img-wrapper {
    height: 110%;
  }

  .c-contact-img {
    max-width: 60%;
    overflow: visible;
  }

  .c-column {
    width: 70%;
  }

  .c-column.cc-kategorie {
    width: 120%;
    height: 300px;
  }

  .c-column.cc-kategorie.cc-image {
    margin-top: -170px;
  }

  .c-rich-text {
    margin-top: 1rem;
  }

  .c-rich-text p {
    font-size: .9rem;
  }

  .c-rich-text h2 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .c-rich-text h3 {
    margin-top: 15px;
    font-size: 1.2rem;
  }

  .c-rich-text li {
    font-size: .8rem;
  }

  .heading {
    text-align: left;
    font-size: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .u-container {
    padding: 2rem 1rem;
  }

  .c-hero_heading.u-heading {
    padding-right: 0;
    font-size: 2rem;
  }

  .nav-link-block {
    display: block;
  }

  .c-logo {
    width: 100%;
  }

  .c-burger-btn.w--open {
    background-color: rgba(200, 200, 200, 0);
  }

  .c-navbar-wrapper {
    flex-direction: row;
    align-items: center;
    display: flex;
  }

  .c-logo-header {
    order: -1;
    width: 100%;
  }

  .c-content-container.u-container {
    justify-content: center;
    align-items: flex-start;
  }

  .c-content-paragraph.cc-center {
    text-align: left;
    font-size: 1.1rem;
  }

  .c-heading {
    font-size: 1.7rem;
  }

  .c-heading.cc-center {
    text-align: left;
    font-size: 1.6rem;
  }

  .c-card-title {
    font-size: 1.3rem;
  }

  .c-features-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .c-feature--icon {
    width: 100px;
    margin-bottom: 0;
  }

  .c-feature--description {
    font-size: .9rem;
  }

  .c-paragraph.cc-footer {
    text-align: center;
  }

  .c-h3.cc-center {
    text-align: left;
    font-size: 1.3rem;
  }

  .c-bubble-preview {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 69%;
  }

  .text-block {
    font-size: 14px;
  }

  .c-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .c-ueberuns-img {
    max-width: 100%;
  }

  .list {
    padding-left: 1.3rem;
  }

  .c-contact-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .c-section-titel {
    font-size: 1.6rem;
  }

  .c-contact-infos-wrapper {
    max-width: 100%;
    margin-left: 0;
  }

  .c-contact-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .c-contact-container.u-container {
    padding-right: var(--padding-size--main);
    padding-bottom: 1.875rem;
    padding-left: var(--padding-size--main);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 0;
    display: flex;
  }

  .c-contact-img-wrapper {
    background-color: var(--white);
    border-radius: 400px;
    order: -1;
    width: 200px;
    height: 200px;
    position: static;
  }

  .c-contact-img {
    object-position: 50% 0%;
    max-width: 100%;
  }

  .c-footer-markplatz-logo {
    outline-offset: 0px;
    outline: 3px #333;
    width: 80%;
  }

  .c-footer-column {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .c-footer-grid {
    grid-template-columns: 1fr;
  }

  .c-icon-slider-box {
    display: none;
  }

  .c-video.u-blue_overlay {
    min-height: 100vh;
    display: flex;
  }

  .h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .c-column {
    width: 100%;
    margin-bottom: 0;
  }

  .c-rich-text a {
    word-break: break-all;
  }

  .heading {
    font-size: 1.8rem;
  }
}

#w-node-_96167ee5-a141-3ada-5371-5e06d5dadf48-f9bcdcb8 {
  align-self: center;
}

#w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01e2-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01e6-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01ec-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01f0-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01f6-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01fa-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01fe-f9bcdcb8, #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac0202-f9bcdcb8, #w-node-_78ae5af5-7124-567f-aa54-d56214db39e7-f9bcdcb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fe9033ee-6c7f-7307-5afa-5eebf2f5b690-f2f5b68b {
  order: -9999;
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fe9033ee-6c7f-7307-5afa-5eebf2f5b69b-f2f5b68b, #w-node-fe9033ee-6c7f-7307-5afa-5eebf2f5b69c-f2f5b68b {
  order: 9999;
}

@media screen and (max-width: 991px) {
  #w-node-_96167ee5-a141-3ada-5371-5e06d5dadf4f-f9bcdcb8 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_714d63c2-b0e7-97c0-cdd9-ed60d8ac01e6-f9bcdcb8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


