:root {
  --third: #fd3fb3;
  --second: #fd3f81;
  --base-color: #fd3e4f;
  --white: white;
  --black: black;
}

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

h1 {
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 85px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 80px;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: #222;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

p {
  margin-bottom: 10px;
}

.header-container {
  background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('../images/head-bg.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 60px;
  padding-left: 135px;
  padding-right: 135px;
  display: flex;
}

.btn {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(45deg, #924b2f, #d45827 55%, #e98760);
  padding: 20px 50px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .3s;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(255, 255, 255, .15), rgba(255, 255, 255, .15)), linear-gradient(45deg, #2c666f, #18a4b9 55%, #63e0f3);
}

.btn.red {
  text-align: center;
  background-image: linear-gradient(45deg, #2c666f, #18a4b9 55%, #63e0f3), linear-gradient(45deg, #924b2f, #d45827 55%, #e98760);
  display: inline-block;
}

.btn.red:hover {
  background-image: linear-gradient(45deg, #924b2f, #d45827 55%, #e98760), linear-gradient(rgba(255, 255, 255, .15), rgba(255, 255, 255, .15)), linear-gradient(45deg, #2c666f, #18a4b9 55%, #63e0f3);
}

.about-container {
  background-image: linear-gradient(45deg, #fd3fb3, #fd3f81 30%, #fd3e4f 69%, #fd3e4f);
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 135px;
  display: flex;
}

.reverse {
  color: #fff;
}

.p-large {
  color: #fff;
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-size: 35px;
  line-height: 50px;
}

.btn-second {
  float: right;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  justify-content: space-between;
  align-self: flex-end;
  align-items: center;
  padding: 20px 30px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.rrow-img {
  margin-left: 20px;
}

.h3-sub {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.playfair {
  font-family: Playfair Display, sans-serif;
}

.about-row {
  padding-left: 135px;
  padding-right: 135px;
  display: flex;
}

.about-block {
  background-image: none;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  height: 320px;
  padding: 70px 30px;
  transition: color .5s;
  display: flex;
  position: relative;
}

.about-block:hover {
  color: #fff;
}

.p-small {
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
}

.h3-number {
  z-index: 100;
  margin-bottom: 0;
  margin-left: 30px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  line-height: 60px;
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
}

.color-bg {
  z-index: 1;
  background-image: linear-gradient(45deg, var(--third), var(--second) 30%, var(--base-color) 70%, var(--base-color));
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.content {
  z-index: 2;
  position: relative;
}

.team-container {
  flex-direction: column;
  align-items: stretch;
  padding: 80px 135px;
  display: flex;
}

.huge-number {
  color: rgba(253, 62, 79, .35);
  text-align: left;
  font-size: 120px;
  line-height: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.team-row {
  justify-content: space-between;
  display: flex;
}

.team-member {
  flex-direction: column;
  align-items: center;
  width: 32%;
  display: flex;
}

.avatar {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
}

.avatar-img {
  z-index: 3;
  background-image: url('../images/layer-4.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.avatar-img._2e {
  background-image: url('../images/layer-5.png');
}

.avatar-img._3e {
  background-image: url('../images/layer-6.png');
}

.avatar-bg {
  z-index: 5;
  background-image: linear-gradient(45deg, rgba(253, 63, 179, .85), rgba(253, 63, 129, .85) 30%, rgba(253, 62, 79, .85) 70%, rgba(253, 62, 79, .85));
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.avatar-content {
  z-index: 10;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
  position: relative;
}

.avatar-name {
  color: #fff;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.avatar-title {
  color: #fff;
  font-family: Playfair Display, sans-serif;
  font-size: 16px;
}

.avatar-title.reverse {
  color: #9a9a9a;
}

.sub-content {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
  position: relative;
}

.features-container {
  justify-content: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.img-column {
  background-image: url('../images/raumtraum-header2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
}

.features-content {
  text-align: left;
  flex: 1;
  padding: 120px 135px 80px 60px;
}

.pink-text {
  color: var(--base-color);
}

.features-title {
  color: #18183a;
  margin-bottom: 60px;
  line-height: 50px;
}

.p-features {
  color: #717171;
  margin-bottom: 50px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.services-container {
  background-color: #1d1d1d;
  align-items: center;
  padding: 80px 135px;
  display: flex;
}

.services-intro {
  width: 35%;
}

.services {
  flex-flow: wrap;
  flex: 1;
  align-content: stretch;
  justify-content: space-between;
  margin-left: 60px;
  display: flex;
}

.services-p {
  color: #dfdfdf;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.services-block {
  width: 48%;
  margin-bottom: 20px;
}

.services-icon {
  background-image: url('../images/icon-1_1icon-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}

.services-icon.icon-2 {
  background-image: url('../images/icon-2_1icon-2.png');
}

.services-icon.icon-3 {
  background-image: url('../images/icon-3_1icon-3.png');
}

.services-icon.icon-4 {
  background-image: url('../images/icon-4_1icon-4.png');
}

.services-p-small {
  color: #e1e1e1;
  font-family: Poppins, sans-serif;
}

.h3-services {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.contact-container {
  background-image: url('../images/bg.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  align-items: center;
  padding: 80px 135px 50px;
  display: flex;
}

.contact-about {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-right: 80px;
  display: flex;
}

.contact-info {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.logo {
  background-image: url('../images/logo.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 176px;
  height: 58px;
}

.logo.pura {
  background-image: url('../images/RaumTraum-logo.png');
  background-size: contain;
  width: 200px;
  height: 40px;
  padding-bottom: 59px;
}

.p-contact {
  color: #525151;
  margin-top: 60px;
  margin-bottom: 25px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 26px;
}

.p-contact.black {
  color: #000;
  margin-top: 20px;
  margin-bottom: 15px;
}

.h5-copyright {
  color: var(--base-color);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-info-block {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.contact-info-icon {
  background-image: url('../images/icon-mail_1icon-mail.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact-info-icon.phone {
  background-image: url('../images/icon-phone_1icon-phone.png');
}

.email-link {
  color: #222;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 12px;
  text-decoration: none;
}

.navbar {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px 105px 0 135px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link {
  color: #18a4b9;
  flex: 0 auto;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  transition: color .3s;
}

.nav-link:hover {
  color: var(--second);
}

.nav-link.w--current {
  color: var(--base-color);
}

.nav-link.login {
  color: #d45827;
  margin-right: 20px;
  font-weight: 700;
}

.nav-menu {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.social-icon-block {
  flex: 0 auto;
  justify-content: flex-end;
  align-items: stretch;
  margin-right: 10px;
  display: flex;
}

.social-icon-block.footer {
  justify-content: flex-start;
}

.social-icon-block.team-social {
  justify-content: center;
  margin-top: 20px;
}

.social-icon {
  background-image: url('../images/facebook.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-left: 10px;
}

.social-icon.google {
  background-image: url('../images/google.svg');
}

.social-icon.twitter {
  background-image: url('../images/twitter.svg');
}

.social-icon.red {
  background-image: url('../images/facebook-r.svg');
  margin-left: 0;
  margin-right: 20px;
}

.social-icon.red.google-r {
  background-image: url('../images/google-r.svg');
}

.social-icon.red.twitter-r {
  background-image: url('../images/twitter-r.svg');
}

.social-icon.team-social-icon {
  margin-left: 0;
}

.brand-container {
  padding-bottom: 0;
}

.contact-first-row {
  justify-content: space-between;
  display: flex;
}

.alert-block {
  z-index: 100;
  background-color: #000;
  border: 5px solid #e65555;
  width: 30%;
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.alert-block__text {
  color: #fff;
  margin-bottom: 0;
  font-family: Inconsolata, monospace;
}

.alet-block__link {
  color: #fff;
}

.alert-block__close {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  font-family: Inconsolata, monospace;
  position: absolute;
  top: -28px;
  right: -5px;
}

.text-span {
  color: #18a4b9;
}

.section-standard {
  justify-content: space-around;
  align-items: center;
  height: auto;
  max-height: none;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  overflow: hidden;
}

.section-standard._0-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section-standard._40-padding {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.section-standard.home-background-a {
  background-image: url('../images/leichtes-grau.png');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: 100% 100%;
  padding-top: 70px;
  padding-bottom: 80px;
}

.home-image {
  width: 100%;
  max-width: none;
  max-height: none;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.home-image._1 {
  max-width: 80%;
  display: block;
}

.home-image._2 {
  width: 100%;
  max-width: 80%;
  display: block;
}

.div-450-width {
  flex: 0 auto;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.div-final-cta-flex {
  margin-bottom: 10px;
  margin-right: 15px;
  display: flex;
}

.div-final-cta-flex.no-margin {
  margin-bottom: 3px;
}

.heading-3 {
  color: #18183a;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
}

.div-standard {
  flex: 0 auto;
  width: 100%;
  max-width: 1280px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-standard.flex {
  border-radius: 4px;
  flex: none;
  align-items: center;
  width: 95%;
  max-width: 1280px;
  display: flex;
  position: static;
  top: 0;
}

.div-standard.justify-spaced {
  justify-content: space-between;
}

.div-standard.justify-spaced.flex {
  width: auto;
}

.div-standard.justify-spaced.flex._40-top-margin {
  margin-top: 40px;
}

.paragraph {
  color: #556575;
  text-align: left;
  letter-spacing: .25px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

.paragraph._400-width {
  text-align: justify;
  max-width: 400px;
  margin-bottom: 25px;
  font-family: Poppins, sans-serif;
  line-height: 1.5em;
}

.paragraph._20px {
  font-size: 18px;
}

.paragraph._20px.no-margin {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

.paragraph._13px {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 13px;
}

.paragraph._24px {
  font-size: 20px;
}

.paragraph._24px.centre.dark {
  color: #18183a;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.image-74 {
  flex: 0 auto;
  order: -1;
  align-self: auto;
  width: auto;
  max-width: none;
  margin-top: 2px;
  margin-right: 5px;
  display: block;
}

.div-block-33 {
  flex: 1;
  margin-left: 5px;
}

.heading-5 {
  color: #556575;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
}

.button {
  color: #fff;
  background-color: #048060;
  border: 3px solid #048060;
  border-radius: 2px;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 170px;
  height: 50px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.button:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
}

.button.left-aligned {
  max-width: 180px;
  height: 55px;
  margin-left: 0;
}

.columns-features {
  flex: 1;
  align-items: center;
  display: flex;
}

.column-76 {
  padding-left: 0;
  padding-right: 0;
}

.red-wrapper {
  background-image: linear-gradient(#fff9f7, #fff);
  align-items: center;
  width: 650px;
  max-width: none;
  height: 400px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.div-block-59 {
  flex-direction: column;
  flex: none;
  display: flex;
}

.testimonial-medium {
  background-color: #fff;
  border-radius: 4px;
  flex: 0 auto;
  max-width: 350px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.persons-face {
  background-image: url('../images/LP-2.png');
  background-position: 50% 0;
  background-size: 125px;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  margin-right: 20px;
}

.persons-face.daniel {
  background-image: url('../images/Persona-12x.jpg');
  background-position: 50% 35%;
}

.persons-face.jens {
  background-image: url('../images/layer-4.png');
  background-position: 50% 5%;
}

.persona {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  border: 3px #000;
  border-radius: 4px;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: stretch;
  width: auto;
  max-width: none;
  min-height: 0;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0 0 15px;
  display: block;
  overflow: visible;
}

.persona:hover {
  box-shadow: none;
}

.testimonial-name-white {
  color: #181818;
  text-align: left;
  border-bottom: 1px #603eff;
  margin: 0 auto 0 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6em;
  text-decoration: none;
  display: inline-block;
}

.div-block-57 {
  margin-bottom: 20px;
  display: flex;
}

.heading-2 {
  color: #000;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
}

.heading-2.centre {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.heading-2.centre._650w {
  color: #18183a;
  max-width: 650px;
  font-size: 36px;
}

.bottom-section {
  padding: 25px 3%;
  position: relative;
}

.banner {
  background-color: #fff;
  background-image: url('../images/cta-shapes3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  min-height: 285px;
  margin: 120px auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 32px 64px rgba(14, 86, 124, .16);
}

.banner-text-wrapper {
  z-index: 20;
  position: relative;
}

.cta-header {
  color: #1b2d45;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.standard-paragraph {
  color: rgba(86, 96, 115, .7);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.banner-button {
  background-color: #d45827;
  border-radius: 500px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.column-82 {
  padding-left: 5px;
  padding-right: 5px;
}

.blue-wrapper {
  background-image: linear-gradient(38deg, var(--white), #eefdff);
  justify-content: flex-start;
  align-items: center;
  width: 650px;
  height: 400px;
  margin-top: 40px;
  display: flex;
}

.tab-switcher {
  background-color: #813efb;
  border-radius: 100px;
  justify-content: flex-end;
  align-items: center;
  width: 60px;
  height: 30px;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
}

.pricing-bottom-block {
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.content-h2 {
  color: #18183a;
  margin-top: 0;
  margin-bottom: 16px;
}

.content-h2.content-h2-centre {
  color: #18183a;
  text-align: center;
  font-size: 30px;
}

.tick-icon {
  margin-right: 12px;
}

.container-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  display: flex;
  position: relative;
}

.pricing-grid {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: space-around;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  margin-top: 55px;
}

.white-circle {
  background-color: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
}

.dollar-sign {
  color: #99a1ba;
  padding-top: 12px;
  font-size: 20px;
  line-height: 24px;
}

.title-wrap.flex-centre {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.pricing-top-block-big {
  background-color: #18a4b9;
  flex-direction: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: 200px;
  margin-bottom: 35px;
  padding: 35px 25px;
  display: flex;
}

.price-title {
  color: var(--white);
  align-self: center;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.left-blur {
  opacity: .5;
  position: absolute;
  top: 20%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.pricing-top-block {
  background-color: #18a4b9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  margin-bottom: 35px;
  padding: 32px 25px;
  display: flex;
}

.primary-cta {
  color: #fff;
  background-color: #d45827;
  border-radius: 100px;
  margin-top: 0;
  margin-bottom: 12px;
  padding: 16px 45px;
  font-size: 16px;
  line-height: 21px;
}

.primary-cta.focus-button {
  color: #fff;
  background-color: #d45827;
  margin-bottom: 12px;
}

.pricing-block {
  opacity: 1;
  background-color: rgba(153, 161, 186, .15);
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  height: 550px;
  margin-top: 50px;
  margin-bottom: 0;
  padding-bottom: 30px;
  display: flex;
  overflow: hidden;
}

.price-plan {
  color: #99a1ba;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.price-number {
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-size: 70px;
  font-weight: 600;
  line-height: 90px;
  display: flex;
}

.feature {
  color: #99a1ba;
  font-size: 15px;
  font-weight: 400;
}

.feature-block {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.pricing-block-big {
  opacity: 1;
  background-color: rgba(153, 161, 186, .15);
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  height: 550px;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 10px #8a8a8a;
}

.paragraph-2 {
  color: #99a1ba;
  text-align: center;
  max-width: 680px;
  margin-bottom: 48px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.h2-span {
  opacity: .6;
}

.pricing-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 65px 3% 140px;
  display: flex;
  position: relative;
}

.tabs {
  align-items: center;
  margin-top: 20px;
  margin-bottom: 32px;
  display: block;
}

.pricing-bottom-block-big {
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.link-block {
  flex: none;
}

.div-block {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block.logo-bar {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.div-block.logo-bar._20-top-margin {
  margin-top: 20px;
}

.div-block.logo-bar._20-top-margin._60-opacity {
  opacity: .6;
  width: 100vw;
  max-width: 90%;
}

.image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}

.image._120w {
  width: auto;
  height: 40px;
}

.div-60px-top-margin {
  margin-top: 80px;
}

.div-60px-top-margin._60-opacity {
  opacity: .6;
  width: 97%;
  max-width: 1280px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.border {
  border: 2px solid #18a4b9;
}

.list-item {
  list-style-type: none;
}

.auflistung-header {
  color: #18183a;
  background-image: url('../images/check-normal.png');
  background-position: 0 2px;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-bottom: 15px;
  padding-left: 30px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  list-style-type: none;
}

.list {
  padding-left: 0;
}

.div-block-60 {
  margin-bottom: 70px;
}

.div-block-60.center {
  text-align: center;
}

.column-83 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.columns {
  display: flex;
}

.image-75, .image-76, .image-77 {
  max-width: 30%;
}

.submit-button {
  background-color: #18a4b9;
  border-radius: 20px;
  width: 60%;
  margin-top: 12px;
  padding: 12px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.paragraph-basic {
  color: rgba(86, 96, 115, .7);
  letter-spacing: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
}

.paragraph-basic._40-bottom-padding {
  margin-bottom: 18px;
  font-family: Poppins, sans-serif;
}

.input-field {
  background-image: url('../images/mail-icon.svg');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 0 #000;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 80px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  box-shadow: 0 33px 84px rgba(14, 86, 124, .16);
}

.footer-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .6fr .4fr 1fr;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  color: #1b2d45;
  text-align: left;
  margin-bottom: 25px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.flex-container {
  background-color: rgba(0, 0, 0, .18);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  display: flex;
}

.text-span-2 {
  color: #18a4b9;
}

.form {
  text-align: left;
  font-family: Poppins, sans-serif;
}

.html-embed {
  font-family: Poppins, sans-serif;
}

.heading-6 {
  color: var(--black);
}

.form-block {
  text-align: center;
  justify-content: center;
  width: 50%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  display: flex;
}

.heading-7, .field-label {
  color: #18183a;
}

.field-label-2 {
  color: #18183a;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
}

.submit-button-2 {
  text-align: left;
}

.text-field {
  margin-bottom: 30px;
}

html.w-mod-js [data-ix="initial"] {
  opacity: 0;
  display: none;
  transform: translate(0, -5px);
}

html.w-mod-js [data-ix="initial-avatar-bg"] {
  opacity: 1;
  display: none;
}

html.w-mod-js [data-ix="initial-avatar-content"] {
  opacity: 0;
  display: none;
  transform: translate(0, 15px);
}

html.w-mod-js [data-ix="load-navigation"] {
  opacity: 0;
}

html.w-mod-js [data-ix="load-header"], html.w-mod-js [data-ix="load-header-slower"] {
  opacity: 0;
  transform: translate(0, -10px);
}

html.w-mod-js [data-ix="load-header-btn"], html.w-mod-js [data-ix="load-about-btn"] {
  opacity: 0;
  transform: translate(0, 10px);
}

@media screen and (min-width: 1440px) {
  .logo.pura {
    width: 220px;
    height: 60px;
  }

  .section-standard {
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    min-height: 0;
    display: flex;
  }

  .section-standard._40-padding {
    background-color: rgba(0, 0, 0, 0);
  }

  .section-standard.home-background-a {
    background-repeat: repeat-x;
    background-size: 100% 100%;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .home-image {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-image._1 {
    width: 80%;
    display: block;
  }

  .home-image._2 {
    width: 80%;
    max-width: none;
    display: block;
  }

  .heading-3 {
    font-weight: 600;
  }

  .div-standard {
    width: 90%;
    max-width: 1280px;
  }

  .div-standard.flex {
    flex: 0 auto;
    align-items: center;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph {
    color: #556575;
    font-size: 17px;
  }

  .paragraph._400-width {
    color: #556575;
  }

  .heading-5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
  }

  .button {
    height: 55px;
  }

  .button.left-aligned {
    background-color: #048060;
    font-weight: 500;
  }

  .button.left-aligned:hover {
    color: #048060;
    background-color: #fff;
  }

  .columns-features {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .columns-features.reverse-mobile {
    max-width: 1280px;
  }

  .red-wrapper {
    align-items: center;
    width: 650px;
    max-width: none;
    margin-top: auto;
    margin-left: -59px;
    padding-top: 0;
    display: flex;
  }

  .column-81 {
    flex: 1;
  }

  .persona {
    padding-left: 0;
    padding-right: 0;
  }

  .persona:hover {
    box-shadow: none;
  }

  .testimonial-name-white {
    color: #181818;
    border-bottom-color: #603eff;
    flex: none;
    display: inline;
  }

  .heading-2 {
    font-weight: 600;
  }

  .heading-2.centre._650w {
    max-width: 650px;
  }

  .div-block.logo-bar._20-top-margin._60-opacity {
    opacity: .6;
    width: 100vw;
  }

  .div-60px-top-margin._60-opacity {
    opacity: .6;
  }

  .image-77 {
    max-width: 30%;
  }
}

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

  h2 {
    margin-bottom: 60px;
    font-size: 28px;
    line-height: 30px;
  }

  .header-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .btn {
    padding: 15px 40px;
    font-size: 14px;
  }

  .about-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .p-large {
    font-size: 18px;
    line-height: 24px;
  }

  .btn-second {
    padding: 15px 25px;
    font-size: 14px;
  }

  .h3-sub {
    font-size: 18px;
  }

  .about-row {
    padding-left: 80px;
    padding-right: 80px;
  }

  .p-small {
    font-size: 14px;
  }

  .h3-number {
    top: 20px;
  }

  .team-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .huge-number {
    font-size: 100px;
  }

  .avatar {
    height: 300px;
  }

  .h4-about {
    font-size: 18px;
    line-height: 20px;
  }

  .img-column {
    background-position: 100%;
    background-size: 500px;
  }

  .features-content {
    padding-right: 80px;
  }

  .features-title {
    margin-bottom: 40px;
    line-height: 40px;
  }

  .p-features {
    font-size: 16px;
  }

  .services-container {
    flex-direction: column;
    padding-left: 80px;
    padding-right: 80px;
  }

  .services-intro {
    width: 100%;
    margin-bottom: 60px;
  }

  .services {
    margin-left: 0;
  }

  .contact-container, .navbar {
    padding-left: 80px;
    padding-right: 80px;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .nav-link.login {
    margin-left: 20px;
  }

  .nav-menu {
    background-color: #000;
    padding-left: 80px;
  }

  .social-icon-block {
    display: none;
  }

  .social-icon-block.footer {
    display: flex;
  }

  .brand-container {
    flex: 1;
  }

  .menu-icon {
    color: #fff;
    font-size: 40px;
  }

  .menu-icon-container {
    padding: 0;
  }

  .menu-icon-container.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .section-standard {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .home-image._2 {
    max-width: 100%;
  }

  .heading-3 {
    font-size: 30px;
  }

  .div-standard.flex {
    flex: 0 auto;
  }

  .paragraph {
    font-size: 16px;
  }

  .paragraph._20px.no-margin {
    font-size: 17px;
  }

  .button {
    flex: 1;
  }

  .red-wrapper {
    width: auto;
    height: auto;
    margin-right: 0;
    padding: 20px 10px;
  }

  .testimonial-medium {
    margin-left: 5px;
    margin-right: 5px;
  }

  .persona {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-2 {
    font-size: 35px;
  }

  .banner {
    background-position: 0 0;
    background-size: cover;
    padding-left: 42px;
    padding-right: 42px;
  }

  .cta-header {
    font-size: 30px;
  }

  .banner-button {
    white-space: nowrap;
  }

  .blue-wrapper {
    width: auto;
    height: auto;
  }

  .content-h2 {
    font-size: 38px;
  }

  .content-h2.content-h2-centre {
    line-height: 45px;
  }

  .left-blur {
    z-index: -1;
  }

  .pricing-block {
    width: 100%;
  }

  .feature {
    font-size: 15px;
  }

  .pricing-block-big {
    width: 100%;
  }

  .pricing-section {
    display: block;
  }

  .link-block-3 {
    flex: 0 auto;
  }

  .div-block.logo-bar._20-top-margin._60-opacity {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    display: grid;
  }

  .image._120w {
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .div-60px-top-margin._60-opacity {
    width: 97%;
    margin-top: 40px;
  }

  .auflistung-header {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
  }

  .div-block-60 {
    margin-bottom: 55px;
  }

  .column-83 {
    align-self: center;
  }

  .columns {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 60px;
    font-size: 24px;
    line-height: 36px;
  }

  .about-row {
    flex-direction: column;
  }

  .about-block {
    margin-top: 40px;
  }

  .team-row {
    flex-direction: column;
  }

  .team-member {
    width: 100%;
    margin-bottom: 40px;
  }

  .avatar-img {
    background-position: 50% 0;
  }

  .img-column {
    display: none;
  }

  .contact-container {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    flex-direction: column;
  }

  .nav-link.login {
    text-align: center;
    font-size: 14px;
  }

  .contact-first-row {
    flex-direction: column;
  }

  .alert-block {
    width: 80%;
    margin-top: 0;
    margin-bottom: 20px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .section-standard, .section-standard._0-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-image._2 {
    max-width: 80%;
  }

  .div-450-width {
    text-align: center;
    margin-bottom: 20px;
  }

  .heading-3 {
    text-align: center;
    margin-top: 0;
    font-size: 36px;
  }

  .div-standard {
    max-width: 95%;
  }

  .div-standard.flex {
    flex-direction: column;
  }

  .div-standard.justify-spaced.flex._40-top-margin {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-standard.justify-spaced.flex._40-top-margin.userts {
    max-width: none;
    display: block;
  }

  .div-standard.justify-spaced.flex._40-top-margin.projects {
    display: block;
  }

  .paragraph {
    font-size: 15px;
  }

  .paragraph._400-width {
    text-align: justify;
    max-width: none;
  }

  .paragraph._20px {
    font-size: 17px;
  }

  .paragraph._24px.centre.dark {
    font-size: 18px;
  }

  .heading-5, .button.left-aligned {
    font-size: 15px;
  }

  .columns-features {
    flex-direction: row-reverse;
    flex: 1;
    display: block;
  }

  .columns-features.reverse-mobile {
    flex-direction: column-reverse;
    flex: 1;
    order: 0;
    display: flex;
  }

  .column-76 {
    display: block;
  }

  .column-81 {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-medium {
    width: 100%;
    max-width: none;
    margin-bottom: 10px;
  }

  .persona {
    width: auto;
    min-height: auto;
  }

  .heading-2 {
    font-size: 30px;
  }

  .banner {
    flex-wrap: wrap;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-block, .pricing-block-big {
    margin-bottom: 40px;
  }

  .pricing-section {
    flex-direction: row;
    display: block;
  }

  .div-block.logo-bar._20-top-margin._60-opacity {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image {
    max-width: 80%;
    display: block;
  }

  .image._120w {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .columns {
    flex-direction: column;
  }

  .image-75, .image-76 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-grid {
    grid-column-gap: 45px;
    grid-template-columns: .5fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .header-container {
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-large {
    font-size: 14px;
  }

  .h3-sub {
    font-size: 16px;
  }

  .about-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-container {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .avatar-name {
    font-size: 16px;
  }

  .avatar-title, .avatar-title.reverse {
    font-size: 14px;
  }

  .features-container {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .heading {
    font-size: 20px;
  }

  .member-name {
    margin-bottom: 0;
    font-size: 16px;
  }

  .features-content {
    flex: 1;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: auto;
    padding-top: 89px;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .features-title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .p-features {
    margin-bottom: 30px;
  }

  .services-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services {
    flex-flow: column;
  }

  .services-block {
    width: 100%;
  }

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

  .contact-about {
    margin-bottom: 30px;
    margin-right: 0;
  }

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

  .nav-link.login {
    text-align: center;
  }

  .nav-menu {
    padding-left: 20px;
  }

  .heading-3 {
    font-size: 24px;
  }

  .div-standard.justify-spaced.flex._40-top-margin {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .paragraph, .paragraph._20px, .paragraph._20px.no-margin {
    font-size: 15px;
  }

  .paragraph._24px.centre.dark {
    font-size: 17px;
  }

  .heading-5 {
    text-align: left;
    font-size: 16px;
  }

  .button {
    color: #fff;
    width: 100%;
    max-width: none;
    height: 40px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .button.left-aligned {
    max-width: none;
    height: 40px;
    margin-bottom: 15px;
    font-size: 15px;
  }

  .button.left-aligned:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .columns-features {
    flex-direction: column;
  }

  .columns-features.reverse-mobile {
    flex-direction: column-reverse;
  }

  .red-wrapper {
    width: 100%;
    margin-top: 10px;
    padding: 20px 10px;
  }

  .column-81 {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-medium {
    width: auto;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .persons-face {
    flex: none;
  }

  .persona {
    margin-bottom: 0;
    padding: 20px 10px 0;
  }

  .testimonial-name-white {
    margin-left: auto;
    margin-right: auto;
  }

  .heading-2 {
    font-size: 26px;
  }

  .banner {
    padding: 55px 28px;
  }

  .banner-button {
    margin-top: 35px;
  }

  .column-82 {
    padding-left: 0;
    padding-right: 0;
  }

  .blue-wrapper {
    width: 100%;
    margin-top: 10px;
    padding: 20px 10px;
  }

  .primary-cta, .primary-cta.focus-button {
    font-size: 14px;
  }

  .div-block.logo-bar._20-top-margin._60-opacity {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-60px-top-margin._60-opacity {
    width: 95%;
    margin-top: 0;
  }

  .auflistung-header {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

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

#w-node-d1922bed-e959-dbac-a2d6-b036195e21d7-96f7e05f {
  justify-self: end;
}

#w-node-d1922bed-e959-dbac-a2d6-b036195e21f6-96f7e05f {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_5121eacc-c853-e5b2-0fdd-0454f16efd11-96f7e05f {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d1922bed-e959-dbac-a2d6-b036195e21d7-96f7e05f {
    justify-self: center;
  }
}


