.ueber-uns-text h1 {
  color: rgb(76,122,114);
  font-size: 5.5rem;
  margin-bottom: 2rem;
}

.ueber-uns-text p {
  font-size: 2.2rem;
  width: 565px;
  max-width: 100%;
}

.uber-uns{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100vh;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
     flex-direction: row;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f5f5;
  position: relative;
}

.uber-uns::before {
  content: '';
  position: absolute;
  top:0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  height: 100%;
  background: #f5f5f5;
}

.uber-uns> div {
  width: 50%;
  height: 100%;
  padding: 0 4.5rem;
  max-width: 610px;
}

.uber-uns> div:first-child {
  padding-left: 0;
}

.uber-uns> div:last-child {
  padding-right: 0;
}

.ueber-uns-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
     flex-direction: column;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.perspective {
  -webkit-perspective: 1200px;
          perspective: 1200px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.perspective::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 50vw;
  margin-top: -25vw;
  margin-left: -50vw;
  top: 50%;
  left: 50%;
  background-color: transparent;
  background-image: -webkit-radial-gradient(50% 50%, ellipse closest-side, rgba(95, 87, 91, 0.25), rgba(95, 87, 91, 0) 50%, transparent 100%);
  background-image: -o-radial-gradient(50% 50%, ellipse closest-side, rgba(95, 87, 91, 0.25), rgba(95, 87, 91, 0) 50%, transparent 100%);
  background-image: radial-gradient(50% 50%, ellipse closest-side, rgba(95, 87, 91, 0.25), rgba(95, 87, 91, 0) 50%, transparent 100%);
  -webkit-transform: translate3d(-5%, 20%, -200px);
          transform: translate3d(-5%, 20%, -200px);
  z-index: 0;
}

.card {
  position:relative;
  width: 80%;
  background: #efefef;
  -webkit-transform: rotateX(48deg) rotateY(13deg) rotateZ(-31deg);
          transform: rotateX(48deg) rotateY(13deg) rotateZ(-31deg);

  -webkit-box-shadow: 0 1px 2px 0 rgba(151, 150, 146, 0.4), 0 2px 3px 0 rgba(151, 150, 146, 0.4);

          box-shadow: 0 1px 2px 0 rgba(151, 150, 146, 0.4), 0 2px 3px 0 rgba(151, 150, 146, 0.4);
}

@media all and (max-width: 767px) {
  .uber-uns{
    display: block;
    height: auto;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .uber-uns> div {
    width: 100%;
    height: auto;
    padding: 0;
  }
  
  .perspective {
    margin: 2rem auto 7.5rem auto;
    max-width: 500px;
  }

  .perspective::after {
    -webkit-transform: scale(2) translate3d(-5%, 20%, -200px);
            transform: scale(2) translate3d(-5%, 20%, -200px);
  }
}