:root {
  --sasogreen_full: #95c11f;
  --black-3: #333;
  --white: white;
  --zusatzfarbe1: #2c896c;
  --orange-red: #f7551a;
  --jahreberichtblau: #84dadd;
  --white-smoke: #f6f6f6;
  --black-2: #191919;
  --black: black;
  --coolgrey: #878787;
  --dim-grey: #555;
  --border: #ebebeb;
  --royal-blue: #1b619e;
  --dodger-blue: #4c95d4;
  --light-blue: #b3d6f0;
  --black20: rgba(0, 0, 0, .2);
  --deep-sky-blue: #4daaec;
  --dark-slate-blue: #234863;
  --steel-blue: #237ac6;
  --slate-blue: #4353ff;
  --dark-grey: #aaa;
  --sasogreen: rgba(149, 193, 31, .5);
  --zusatzgruen: #2c896c;
  --sasogreen_light: #b8d56a;
}

body {
  color: #191919;
  font-family: "Thesansc5 3", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 130%;
}

h1 {
  color: var(--sasogreen_full);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
}

h2 {
  clear: none;
  color: var(--sasogreen_full);
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  color: var(--sasogreen_full);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
}

h4 {
  color: var(--black-3);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  color: var(--sasogreen_full);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Thesansc5 8", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

p {
  color: #333;
  margin-bottom: 10px;
  font-family: "Thesansc5 3", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 150%;
}

a {
  color: #ed912a;
  font-family: "Thesansc5 8", sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  color: #333;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  font-family: "Thesansc5 3", sans-serif;
}

img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--sasogreen_full);
  color: var(--sasogreen_full);
  margin-top: 0;
  margin-bottom: 40px;
  padding: 10px 20px;
  font-size: 1.4rem;
  line-height: 150%;
}

.container {
  width: 1140px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

.row {
  flex-wrap: wrap;
  align-content: stretch;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.row.align-start {
  align-items: flex-start;
}

.row.row-example {
  min-height: 175px;
  background-color: #f7f4ff;
}

.row.align-center {
  align-items: center;
}

.row.align-end {
  align-items: flex-end;
}

.row.justify-center {
  justify-content: center;
}

.row.justify-end {
  justify-content: flex-end;
}

.row.justify-between {
  justify-content: space-between;
}

.row.justify-around {
  justify-content: space-around;
}

.row.b-white {
  background-color: var(--white);
}

.row.align-left {
  text-align: left;
}

.col {
  flex: 1;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.col.col-1 {
  max-width: 8.33333%;
  flex-basis: 8.33%;
}

.col.col-11 {
  max-width: 91.6667%;
  flex-basis: 91.67%;
}

.col.col-2 {
  max-width: 16.6667%;
  flex-basis: 16.67%;
}

.col.col-10 {
  max-width: 83.3333%;
  flex-basis: 83.33%;
}

.col.col-3 {
  max-width: 25%;
  flex-basis: 25%;
}

.col.col-9 {
  max-width: 75%;
  flex-basis: 75%;
}

.col.col-4 {
  max-width: 33.3333%;
  flex-basis: 33.33%;
}

.col.col-8 {
  max-width: 66.6667%;
  flex-basis: 66.67%;
}

.col.col-5 {
  max-width: 41.6667%;
  flex-basis: 41.67%;
}

.col.col-7 {
  max-width: 58.3333%;
  flex-basis: 58.33%;
}

.col.col-6 {
  max-width: 50%;
  flex-basis: 50%;
}

.col.col-6.col-push {
  margin-left: auto;
}

.col.col-12 {
  max-width: 100%;
  flex-basis: 100%;
}

.col.no-gutters {
  padding-left: 0;
  padding-right: 0;
}

.col.self-start {
  align-self: flex-start;
}

.col.self-center {
  align-self: center;
}

.col.self-end {
  align-self: flex-end;
}

.col.order-last {
  order: 1;
}

.col.order-first {
  order: -1;
}

.inner-div-example {
  text-align: center;
  background-color: #f3faff;
  border: 1px solid #c0e5ff;
  padding-top: 15px;
  padding-bottom: 15px;
}

.section {
  padding-top: 100px;
  padding-bottom: 0;
  transition: opacity .2s;
}

.section.fade {
  background-color: #f8fcff;
}

.section.intro {
  background-color: var(--zusatzfarbe1);
  padding-top: 90px;
  padding-bottom: 90px;
}

.section.zusatzfarbe1 {
  background-color: var(--zusatzfarbe1);
}

.section.section-small {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.section-small.zusatzfarbe1 {
  background-color: var(--zusatzfarbe1);
  position: static;
}

.section.pb-0 {
  padding-top: 25px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-weight: 400;
}

.section.services-we-provide {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  padding-bottom: 0;
  position: relative;
}

.section.projects {
  margin-top: -79px;
}

.section.latest-projects {
  padding-top: 80px;
  padding-bottom: 0;
}

.section.aware {
  background-color: var(--sasogreen_full);
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.our-process {
  background-image: linear-gradient(to bottom, rgba(44, 137, 108, .73), var(--zusatzfarbe1)), url('../images/Gemeindeanimator_WEB_2-3.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-bottom: 60px;
}

.section.blog {
  background-image: url('../images/bg-blog.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
}

.section.gray {
  background-color: #f6f6f6;
}

.section.section-xsmall {
  padding-top: 30px;
  padding-bottom: 30px;
}

.emp {
  color: #4daaec;
}

.container-fluid {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid.breakout {
  padding-left: 0;
  padding-right: 0;
}

.light {
  color: #fff;
}

.button {
  background-color: var(--orange-red);
  text-transform: uppercase;
  border-radius: 5px;
  margin: 5px;
  padding: 15px 40px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--jahreberichtblau);
}

.button.button_secondary {
  background-color: #4353ff;
}

.button.outline {
  border: 2px solid var(--white-smoke);
  color: var(--white-smoke);
  background-color: rgba(0, 0, 0, 0);
}

.button.outline--white {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
}

.version-grid {
  opacity: .75;
  color: #fff;
  font-size: 20px;
}

.hero {
  width: 100%;
  height: 80vh;
  background-color: #84dadd;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero_overlay {
  background-color: rgba(0, 0, 0, .75);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav_link {
  width: 50vw;
  opacity: 1;
  color: var(--black-2);
  text-align: center;
  -webkit-text-stroke-color: var(--black-2);
  text-transform: none;
  padding: 10px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.nav_link:hover {
  color: var(--black);
}

.nav_link.w--current {
  background-color: var(--white);
  color: var(--coolgrey);
}

.nav_brand {
  width: 300px;
  background-color: rgba(0, 0, 0, 0);
}

.nav_brand_img {
  width: 100%;
  opacity: 1;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.nav_wrapper {
  background-color: #84dadd;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 10px;
  display: flex;
  overflow: hidden;
}

.hero_wrapper {
  z-index: 1;
  width: 100%;
  max-width: 350px;
  text-align: center;
  margin-top: 50px;
  position: absolute;
}

.heading-xl {
  font-size: 50px;
  line-height: 62px;
}

.heading-xl.c-white.mt-10 {
  background-color: var(--sasogreen_full);
  font-size: 60px;
  line-height: 1.25;
}

.c-white {
  color: #fff;
}

.c-white.mb-0 {
  text-transform: none;
  font-family: "Thesansc5 5 plain", sans-serif;
}

.c-white-light {
  color: var(--white-smoke);
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.link {
  background-color: #ed912a;
}

.iphone-wrapper {
  width: 100%;
  margin-top: -115px;
  position: absolute;
}

.iphone-bg {
  width: 200px;
  height: 356px;
  background-image: linear-gradient(235deg, #0a7bdf, #237ac6 25%, #57a6eb 57%, #237ac6);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 53px;
  left: 45px;
}

.dotted-arrow-right {
  z-index: 1;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(0, -50%);
}

.relative {
  position: relative;
}

.iphone-intro {
  width: 100%;
  height: 60px;
  position: relative;
}

.intro-stats {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
  margin-bottom: 0;
  padding-right: 40px;
  display: flex;
}

.intro-stats_value {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Thesansc5 8", sans-serif;
  font-size: 52px;
}

.intro-stats_name {
  color: #555;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: "Thesansc5 3", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #ebebeb;
}

.line.line_40 {
  max-width: 40px;
}

.line.line_blue {
  background-color: #237ac6;
}

.mt-20 {
  color: var(--zusatzfarbe1);
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
  display: inline-block;
}

.c-blue {
  color: var(--sasogreen_full);
}

.subheader {
  background-color: var(--sasogreen_full);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-family: "Thesansc5 8", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
}

.subheader.c-white {
  color: #fff;
}

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

.header {
  text-transform: none;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 115%;
}

.header.c-white {
  color: var(--black-3);
  margin-bottom: 0;
  font-size: 2rem;
}

.divider {
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
  position: relative;
}

.divider_square {
  width: 12px;
  height: 12px;
  border: 1px solid #237ac6;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.divider_square.white {
  border-color: #fff;
}

.divider_lleft {
  width: 65px;
  height: 1px;
  background-color: #237ac6;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  top: -6px;
  left: -38px;
}

.divider_lleft.white {
  background-color: #fff;
}

.about-tabs_link {
  width: 300px;
  height: 300px;
  opacity: 1;
  filter: grayscale();
  color: var(--white);
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  transition: opacity .2s;
}

.about-tabs_link.w--current {
  opacity: 1;
  filter: none;
  background-color: rgba(0, 0, 0, 0);
}

.about-tabs_link.support {
  background-image: url('../images/berufsbild.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.about-tabs_link.support.w--current {
  filter: none;
  color: var(--white);
}

.about-tabs_link.responsive {
  background-image: url('../images/strategie.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-tabs_link.responsive.w--current {
  background-image: url('../images/strategie.png');
}

.about-tabs_link.analytics {
  background-image: url('../images/vernetzung.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.about-tabs_link.customizable {
  background-image: url('../images/fachzentrum.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-tabs_link.ausserdem {
  background-image: url('../images/Gemeindeanimator_WEB_2-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-tabs_container {
  width: 90vw;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 15px;
  display: flex;
}

.about-tabs {
  background-color: var(--white);
}

.abouts-tabs_content {
  background-color: var(--border);
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-large {
  text-transform: none;
  margin-bottom: 20px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 130%;
}

.text-large.c-blue {
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.text-large.c-white {
  color: var(--black-3);
  margin-bottom: 0;
}

.text-large.m-white {
  color: var(--white);
}

.legend {
  display: flex;
}

.legend_list {
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.legend_symbol {
  width: 20px;
  height: 12px;
  background-color: #ccc;
}

.legend_symbol.blue {
  background-color: #237ac6;
}

.legend_title {
  text-transform: uppercase;
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 13px;
}

.pb-0 {
  padding-bottom: 0;
}

.block-blue {
  width: 100%;
  background-color: var(--border);
  flex-wrap: wrap;
  padding: 30px 60px;
  display: flex;
  position: relative;
}

.block-blue.border-bottom_wclear {
  border-bottom: 1px solid #000;
}

.block-blue.push-down {
  background-color: var(--border);
  margin-bottom: -60px;
}

.block-blue.push-up {
  border: 2px solid var(--white);
  margin-top: -60px;
}

.icon {
  margin-bottom: 0;
  font-family: Line awesome;
  font-style: normal;
  transition: color .35s linear;
}

.icon._4x {
  font-size: 62px;
}

.icon._2x {
  font-size: 36px;
}

.icon._1x {
  font-size: 24px;
}

.list-icon {
  align-items: center;
  display: flex;
}

.list-icon.mb-20 {
  align-items: flex-start;
}

.list-icon.right {
  justify-content: flex-end;
}

.mr-20 {
  margin-left: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.border-bottom_white {
  border-bottom: 1px solid #fff;
}

.block-blue_item {
  width: 50%;
  padding: 30px 40px;
}

.block-blue_item.right {
  text-align: right;
}

.block-blue_bottom-border {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .15);
}

.divider_right {
  width: 65px;
  height: 1px;
  background-color: #237ac6;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  top: -7px;
  right: -38px;
}

.divider_right.white {
  background-color: #fff;
}

.projects-gal {
  justify-content: space-around;
  align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.project-gal_dcol {
  width: 100%;
  flex-direction: column;
  flex: 1 0 0;
  justify-content: space-between;
  display: flex;
}

.project-gal_col {
  width: 100%;
  min-height: 480px;
  flex: 1 0 0;
  transition: flex .8s cubic-bezier(.77, 0, .175, 1);
  position: relative;
}

.project-gal_col:hover {
  flex: 1.75 0;
}

.project-gal_col.bg3 {
  background-image: url('../images/KindererzieherinHF_Uebersicht_WEB.jpg');
  background-position: 50%;
  background-size: cover;
}

.project-gal_col.bg4 {
  background-image: url('../images/Kinderbetreuerin_Uebersicht_WEB.jpg');
  background-position: 50%;
  background-size: cover;
}

.project-gal_dcol_col {
  flex: 1 0 0;
  transition: flex .8s cubic-bezier(.77, 0, .175, 1);
  position: relative;
}

.project-gal_dcol_col:hover {
  flex: 3 0 0;
}

.project-gal_dcol_col.bg1 {
  background-image: url('../images/web_banner_Jobcoach_172_2973x945-scaled.jpg');
  background-position: 50%;
  background-size: cover;
}

.project-gal_dcol_col.bg2 {
  background-image: url('../images/Institutionsleiterin_Uebersicht_WEB.jpg');
  background-position: 50%;
  background-size: cover;
}

.project-gal_dcol_col.bg5 {
  background-image: url('../images/SASO_psychPflege178_Uebersicht.jpg');
  background-position: 50%;
  background-size: cover;
}

.project-gal_dcol_col.bg6 {
  background-image: url('../images/Sozialpaedagogin_Uebersicht_WEB.jpg');
  background-position: 50%;
  background-size: cover;
}

.progect-gal_overlay {
  cursor: pointer;
  background-color: rgba(0, 0, 0, .2);
  transition: opacity .8s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.progect-gal_overlay:hover {
  opacity: 0;
}

.d-flex {
  display: flex;
}

.d-flex.align-center {
  align-items: center;
}

.aware_logo {
  border-right: 1px solid rgba(255, 255, 255, .3);
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  display: flex;
}

.brand_medium {
  width: 100%;
  max-width: 200px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 36px;
}

.v-line-divider {
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.aware_info {
  flex: 1;
  margin-left: 60px;
}

.c-white80 {
  color: var(--dim-grey);
  font-family: "Thesansc5 3", sans-serif;
  font-weight: 300;
}

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

.desk-setup {
  width: 1400px;
  min-height: 421px;
  margin-top: 60px;
  display: block;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.desk-setup_imac {
  z-index: 5;
  width: 860px;
  height: 250px;
  text-align: center;
  background-image: url('../images/imac.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.desk-setup_keyboard {
  z-index: 4;
  width: 100%;
  max-width: 265px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.desk-setup_mouse {
  z-index: 4;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 440px;
}

.desk-setup_imac_wrapper {
  width: 775px;
  height: 230px;
  background-image: linear-gradient(20deg, rgba(246, 246, 246, 0) 68%, rgba(255, 255, 255, .8)), linear-gradient(to bottom, var(--royal-blue), var(--dodger-blue) 36%, var(--light-blue));
  perspective-origin: 50%;
  transform-origin: 0 0;
  transform-style: preserve-3d;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: perspective(535px)translate(-50%)rotateX(-43deg)rotateY(0)rotateZ(0);
}

.desk-setup_earphones {
  z-index: 4;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.desk-setup_sharpie {
  z-index: 4;
  width: auto;
  position: absolute;
  top: 200px;
  bottom: 0;
  right: 360px;
}

.desk-setup_iwatch {
  z-index: 4;
  width: auto;
  position: absolute;
  bottom: -60px;
  right: 280px;
}

.overflow-hidden {
  overflow: hidden;
}

.desk-setup_camera {
  z-index: 4;
  width: auto;
  position: absolute;
  bottom: 20px;
  left: 260px;
}

.desk-setup_clips {
  z-index: 4;
  width: auto;
  position: absolute;
  bottom: 100px;
  left: 0;
}

.text-right {
  text-align: right;
}

.c-orange {
  color: #ed912a;
}

.divider-process {
  width: 100px;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  margin-top: 60px;
  margin-bottom: 60px;
}

.divider-process.right {
  margin-left: auto;
}

.divider-process.divider-process--show-sm {
  display: none;
}

.process-bubble {
  width: 100%;
  max-width: 360px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin: 15px;
  position: relative;
}

.process-bubble_title {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.m-0 {
  margin: 0;
}

.process-bubble_inner-bubble {
  background-color: var(--zusatzfarbe1);
  border-radius: 50%;
  margin: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mt-100 {
  margin-top: 100px;
}

.pt-0 {
  padding-top: 0;
}

.text-small-uppercase {
  text-transform: uppercase;
  font-size: 13px;
}

.text-small-uppercase.c-orange {
  color: var(--dim-grey);
}

.mr-10 {
  margin-left: 10px;
}

.perc-bar {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, .2);
  position: relative;
}

.perc-bar__meter {
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.perc-bar__meter._80 {
  width: 80%;
}

.perc-bar__meter._70 {
  width: 70%;
}

.perc-bar__meter._85 {
  width: 85%;
}

.perc-bar__meter._65 {
  width: 65%;
}

.mb-60 {
  margin-bottom: 60px;
}

.our-team {
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.our-team_col {
  width: 33.3333%;
  flex: 0 0 33.33%;
}

.our-team_member-info-wrapper {
  background-color: var(--white);
  padding: 40px;
}

.divider-small-left {
  width: 65px;
  height: 1px;
  background-color: #237ac6;
  margin-top: 30px;
  margin-bottom: 30px;
}

.our-team_member {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.our-team_member.our-team_member--m1 {
  background-image: url('../images/team-member-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-team_member.our-team_member-m2 {
  background-image: url('../images/team-member-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.our-team_member.our-team_member-m3 {
  background-image: url('../images/team-member-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-team_member.our-team_member-m6 {
  background-image: url('../images/team-member-6.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-team_social {
  width: 100%;
  height: 50%;
  background-color: var(--border);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.our-team_social_links {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 15px;
  display: flex;
}

.ptb-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.accordion_list {
  height: auto;
  background-color: #222;
  padding: 20px;
  line-height: 0;
  display: none;
  position: static;
  overflow: visible;
}

.text {
  color: #888;
  text-align: left;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

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

.small_heading {
  color: #ddd;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.accordion {
  width: 100%;
  margin-bottom: -24px;
  display: block;
}

.accordion.js-accordion {
  margin-top: 24px;
}

.accordion.js-accordion.mt-40 {
  margin-top: 40px;
}

.accordion.js-accordion.mt-60 {
  flex-direction: column;
  margin-top: 60px;
  display: flex;
  position: relative;
}

.accordion-body__contents {
  opacity: 1;
  color: #9096a4;
  margin-top: 8px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
}

.accordion-header {
  color: #2e323c;
  align-items: center;
  display: flex;
}

.accordion-header.js-accordion-header {
  cursor: pointer;
}

.accordion-body {
  color: #9096a4;
  padding-left: 64px;
  padding-right: 8px;
  display: block;
}

.accordion-body.js-accordion-body {
  color: #9096a4;
  padding-bottom: 20px;
  display: none;
}

.accordion__item {
  width: 100%;
  text-align: left;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 20px 20px 20px 0;
  text-decoration: none;
  transition: box-shadow .3s;
  display: flex;
  overflow: hidden;
}

.accordion__item.js-accordion-item.active {
  cursor: default;
}

.question-text {
  flex: 1;
  margin-top: 15px;
  margin-left: 24px;
  font-size: 16px;
  line-height: 24px;
}

.mt-60 {
  margin-top: 60px;
}

.accordion_icon {
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 2px solid var(--border);
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: background-color .35s linear;
  display: flex;
  position: relative;
}

.accordion_vborder {
  z-index: 1;
  width: 50px;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 60px;
  display: flex;
  position: absolute;
  left: 0;
}

.accordion_vborder_line {
  width: 2px;
  height: 100%;
  background-color: var(--border);
  transition: height .15s linear;
}

.macbook {
  width: 1200px;
  text-align: center;
  margin-left: -115%;
  position: relative;
}

.macbook_img {
  width: 100%;
  max-width: 1000px;
}

.macbook_window {
  width: 740px;
  height: 460px;
  background-image: linear-gradient(39deg, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, .6)), url('../images/Werkstattleiterin_Uebersicht_WEB.jpg'), linear-gradient(to bottom, var(--royal-blue), var(--dodger-blue) 60%, var(--light-blue));
  background-position: 0 0, 50%, 0 0;
  background-size: auto, cover, auto;
  margin-top: 33px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50.5%;
  right: 0;
  transform: translate(-50%);
}

.blog_cover {
  margin-bottom: 30px;
}

.blog_divider {
  width: 100px;
  height: 1px;
  background-color: rgba(255, 255, 255, .15);
}

.testimonial-slider {
  height: 480px;
  background-color: rgba(0, 0, 0, 0);
}

.testimonial_block {
  min-height: 240px;
  background-color: #fff;
  align-items: center;
  padding: 40px;
  display: flex;
  position: relative;
}

.testimonial_slide {
  padding: 40px;
}

.testimonia_msg {
  margin-left: 20px;
}

.testimonial_quote-icon {
  padding-top: 10px;
}

.d-none {
  display: none;
}

.testimonial_bottom-pointer {
  width: 60px;
  height: 40px;
  border-bottom: 40px solid rgba(0, 0, 0, 0);
  border-left: 60px solid #fff;
  position: absolute;
  bottom: -40px;
  right: 5%;
}

.testimonial_wrapper {
  display: flex;
}

.testimonial_client {
  text-align: right;
  margin-top: 60px;
  padding-right: 60px;
}

.text-small {
  font-size: 12px;
}

.img-client-logo {
  width: auto;
  margin: 10px 40px;
}

.footer {
  background-color: var(--black20);
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer-icon {
  width: 100px;
  height: 100px;
  background-color: var(--sasogreen_full);
  border: 5px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer_logo {
  width: 300px;
  opacity: 1;
}

.footer_disclaimer {
  color: var(--black-3);
  margin-top: 50px;
}

.footer_social {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer_social-link {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-burger {
  font-size: 45px;
  line-height: 45px;
}

.nav-burger-bg {
  color: #f7551a;
}

.nav-burger-bg:hover {
  color: var(--black);
}

.nav-burger-bg.w--open {
  background-color: var(--orange-red);
  color: var(--white);
}

.nav-menu {
  height: 100vh;
  background-color: var(--orange-red);
}

.loader {
  z-index: 999999;
  width: 100%;
  height: 100%;
  flex-direction: column;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.loader_tile {
  width: 100%;
  height: 33.3333%;
  background-color: #191919;
  justify-content: center;
  align-items: center;
  display: flex;
}

.loader_tile._2 {
  padding-left: 13px;
  padding-right: 13px;
  position: relative;
}

.loader_logo {
  z-index: 2;
  width: 180px;
  opacity: .6;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: block;
  position: relative;
}

.loader_bar {
  width: 100%;
  height: 5px;
  border-radius: 100px;
  position: absolute;
}

.loader_bar_fill {
  width: 0%;
  height: 5px;
  background-image: linear-gradient(to right, #237ac6, #e0851e);
}

.heading {
  color: #1b1b1c;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 300;
}

.columns-section {
  border-bottom: 1px solid #d0d8e8;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-bottom: 45px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.columns-section.columns-section-3 {
  border-top: 1px solid #d0d8e8;
  border-bottom-style: none;
  padding-top: 45px;
}

._50-percent-column {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.image-box {
  position: relative;
}

.text-column {
  width: 50%;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 25px;
  display: flex;
  position: relative;
}

.center {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.heading-6 {
  color: #38afef;
}

.floating-badge {
  z-index: 9999;
  width: 138px;
  color: #333;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #d2d6da;
  border-radius: 3px;
  padding: 4px 6px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
  position: fixed;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 10px;
}

.floating-badge-img {
  display: inline-block;
}

.floating-badge-text {
  margin-left: 8px;
  display: inline-block;
}

.e-mainlogo {
  z-index: 500;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  position: relative;
}

.t-heading__dummy {
  color: rgba(0, 0, 0, 0);
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(35, 33, 33, .8);
  font-family: "Thesansc5 8", sans-serif;
  font-size: 109px;
  font-weight: 700;
  position: absolute;
  top: 34px;
}

.e-image__objectfit {
  object-fit: cover;
}

.e-image__objectfit.m-accordion {
  height: 100%;
}

.rte-left {
  text-align: left;
}

.rte-text {
  font-weight: 300;
}

.rte-text h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.rte-text p {
  margin-bottom: 40px;
}

.rte-text strong {
  color: var(--black-3);
  font-family: "Thesansc5 8", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.rte-text h5 {
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 1.5rem;
}

.rte-text li {
  line-height: 150%;
}

.rte-text a {
  color: var(--sasogreen_full);
  font-family: "Thesansc5 5 plain", sans-serif;
  font-weight: 400;
}

.e-link__footer {
  color: var(--sasogreen_full);
}

.e-link__footer:hover {
  text-decoration: underline;
}

.div-block {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.e-lottie__hero--desktop {
  width: 100%;
  object-fit: cover;
  padding-top: 60px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-logo {
  margin-bottom: 50px;
}

.image_logo {
  padding-top: 20px;
  padding-bottom: 20px;
}

.e-lottie__hero--mobile {
  width: 100%;
  object-fit: fill;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bold_text {
  background-color: var(--sasogreen_full);
  white-space: pre-wrap;
  font-size: 20px;
  display: inline;
}

.accordion-item {
  width: 100%;
  overflow: hidden;
}

.accordion-toggle {
  height: 250px;
  background-color: rgba(135, 135, 135, .2);
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  transition: background-color .2s;
  display: flex;
}

.accordion-toggle:hover {
  background-color: var(--border);
}

.accordion-icon {
  color: #e04d12;
  font-size: 30px;
}

.accordion_title {
  color: #878787;
  white-space: normal;
  flex: none;
  margin-top: 20px;
  padding-left: 40px;
  font-family: "Thesansc5 5 plain", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.dropdown-list {
  background-color: #fff;
  padding: 50px 0;
  display: block;
  position: relative;
}

.image__accordion {
  width: 400px;
  height: 250px;
  flex: none;
}

.image__strategie {
  width: 150px;
}

.heading_team {
  color: var(--dim-grey);
  text-align: left;
  text-transform: none;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Thesansc5 8", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.link_footer {
  color: var(--dim-grey);
  font-family: "Thesansc5 3", sans-serif;
  font-weight: 300;
}

.link_footer:hover {
  text-decoration: underline;
}

.accordion_toggle_small {
  height: 80px;
  border: 3px solid var(--white);
  background-color: #878787;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  transition: background-color .2s;
  display: flex;
}

.accordion_toggle_small:hover {
  background-color: var(--orange-red);
}

.accordion_item_small {
  width: 100%;
  overflow: hidden;
}

.accordion_title_small {
  color: var(--white);
  white-space: normal;
  flex: none;
  padding-left: 40px;
  font-family: "Thesansc5 3", sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.accordion_icon_small {
  color: var(--white);
  font-size: 30px;
}

.dropdown_list_small {
  z-index: 0;
  border: 3px solid var(--white);
  background-color: #878787;
  padding: 50px 20px;
  display: block;
  position: relative;
}

.image__statistik {
  z-index: 500;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}

.heading__statistik {
  color: var(--dim-grey);
  text-transform: none;
  margin-top: 30px;
  font-size: 28px;
}

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

.container__table {
  margin-top: 50px;
}

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

.table_row.m-header {
  height: 28px;
  flex-direction: row;
  align-items: center;
  font-family: "Thesansc5 8", sans-serif;
  font-weight: 700;
}

.table_row.m-subheader {
  height: 60px;
  color: var(--sasogreen_full);
  flex-direction: row;
  align-items: center;
  font-family: "Thesansc5 8", sans-serif;
  font-weight: 700;
}

.table_cell {
  text-align: right;
  flex: 0 0 25%;
  order: -1;
  align-self: flex-end;
}

.table_cell.m-left {
  text-align: left;
  flex-basis: 50%;
}

.table_content {
  margin-bottom: 0;
}

.table_content.m-header {
  font-family: "Thesansc5 8", sans-serif;
  font-weight: 700;
}

.table_content.m-subheader {
  color: var(--sasogreen_full);
  padding-top: 50px;
  font-family: "Thesansc5 8", sans-serif;
  font-weight: 700;
}

.table_content.m-intend {
  padding-left: 20px;
}

.text-left {
  text-align: left;
}

.text-team {
  font-size: 1.1rem;
  line-height: 1.3;
}

.title_tabs {
  text-shadow: 0 0 20px var(--black-3);
  font-size: 1.3rem;
}

.empty_state {
  background-color: rgba(0, 0, 0, 0);
  display: none;
}

.empty-state-2 {
  display: none;
}

.language__list {
  margin-bottom: 0;
  display: flex;
}

.link__language {
  color: var(--orange-red);
  padding-left: 10px;
  padding-right: 10px;
  font-size: 2rem;
}

.link__language:hover, .link__language.w--current {
  text-decoration: underline;
}

.image_jahresrechnung {
  margin-bottom: 50px;
}

.link-2 {
  color: var(--sasogreen_full);
  font-weight: 700;
}

.link-3 {
  color: var(--sasogreen_full);
  font-family: "Thesansc5 5 plain", sans-serif;
  font-weight: 400;
}

.link-4 {
  color: var(--sasogreen_full);
  font-family: "Thesansc5 5 plain", sans-serif;
}

.bold-text {
  color: var(--black-2);
}

html.w-mod-js [data-ix="move-up-on-load-1"], html.w-mod-js [data-ix="move-up-on-load-2"], html.w-mod-js [data-ix="move-up-on-load-3"], html.w-mod-js [data-ix="move-up-on-load-4"], html.w-mod-js [data-ix="move-up-on-load-5"] {
  opacity: 0;
  transform: translate(0, 50px);
}

@media screen and (max-width: 991px) {
  p {
    margin-bottom: 30px;
    line-height: 1.3;
  }

  blockquote {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .row.mt-100 {
    margin-top: 0;
  }

  .col.col-m-1 {
    max-width: 8.33333%;
    flex-basis: 8.33%;
  }

  .col.col-m-11 {
    max-width: 91.6667%;
    flex-basis: 91.67%;
  }

  .col.col-m-2 {
    max-width: 16.6667%;
    flex-basis: 16.67%;
  }

  .col.col-m-10 {
    max-width: 83.3333%;
    flex-basis: 83.33%;
  }

  .col.col-m-3 {
    max-width: 25%;
    flex-basis: 25%;
  }

  .col.col-m-9 {
    max-width: 75%;
    flex-basis: 75%;
  }

  .col.col-m-4 {
    max-width: 33.3333%;
    flex-basis: 33.33%;
  }

  .col.col-m-8 {
    max-width: 66.6667%;
    flex-basis: 66.67%;
  }

  .col.col-m-5 {
    max-width: 41.6667%;
    flex-basis: 41.67%;
  }

  .col.col-m-7 {
    max-width: 58.3333%;
    flex-basis: 58.33%;
  }

  .col.col-m-6 {
    max-width: 50%;
    flex-basis: 50%;
  }

  .col.col-m-12 {
    max-width: 100%;
    flex-basis: 100%;
  }

  .col.order-m-first {
    order: -1;
  }

  .button {
    margin-top: 0;
  }

  .hero {
    height: auto;
    min-height: 50vh;
  }

  .nav_link {
    width: 100vw;
    transition: background-color .4s linear;
  }

  .nav_link:hover {
    background-color: rgba(246, 246, 246, .03);
  }

  .nav_wrapper {
    padding-right: 0;
  }

  .hero_wrapper {
    max-width: 200px;
  }

  .iphone-intro {
    width: 95vw;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-stats {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .intro-stats_stat {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
  }

  .subheader {
    font-size: 1.6rem;
  }

  .header {
    font-size: 36px;
  }

  .about-tabs_container {
    padding-top: 20px;
  }

  .abouts-tabs_content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-large.c-blue {
    font-family: "Thesansc5 5 plain", sans-serif;
    font-weight: 400;
  }

  .text-large.mr-20.mb-0 {
    font-size: 1.2rem;
    line-height: 120%;
  }

  .block-blue.push-down {
    flex-flow: column;
  }

  .block-blue_item {
    width: 100%;
    flex: 1;
    padding-left: 20px;
  }

  .d-flex.align-center.direction-m-column {
    flex-direction: column;
  }

  .aware_logo {
    border-right-style: none;
    padding-right: 0;
  }

  .aware_info {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .process-bubble {
    max-width: 300px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .our-team_col {
    flex-basis: 50%;
  }

  .our-team_social {
    justify-content: flex-start;
    padding-top: 10px;
  }

  .accordion {
    width: 83.33%;
    padding-left: 0;
    padding-right: 0;
  }

  .macbook {
    width: 500px;
    margin-left: 0%;
    display: block;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .macbook_window {
    width: 370px;
    height: 232px;
    margin-top: 16px;
  }

  .footer_social-link {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .t-heading__dummy {
    text-shadow: 0 0 30px rgba(28, 28, 28, .89);
    font-size: 104px;
  }

  .e-lottie__hero--desktop {
    padding-top: 0;
  }

  .accordion_title {
    flex: 0 auto;
    font-size: 20px;
  }

  .image__accordion {
    width: 300px;
  }

  .image__strategie {
    width: 120px;
  }

  .heading_team {
    font-size: 1.1rem;
  }

  .accordion_title_small {
    flex: 0 auto;
    font-size: 24px;
  }

  .dropdown_list_small {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .image__statistik:hover {
    height: auto;
  }

  .heading__statistik {
    padding-left: 20px;
  }

  .text-team {
    font-size: .9rem;
  }

  .language__list {
    margin-top: 8px;
  }

  .link__language.w--current {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  p {
    line-height: 1.3;
  }

  blockquote {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .col.col-sm-1 {
    max-width: 8.33333%;
    flex-basis: 8.33%;
  }

  .col.col-sm-11 {
    max-width: 91.6667%;
    flex-basis: 91.67%;
  }

  .col.col-sm-2 {
    max-width: 16.6667%;
    flex-basis: 16.67%;
  }

  .col.col-sm-10 {
    max-width: 83.3333%;
    flex-basis: 83.33%;
  }

  .col.col-sm-3 {
    max-width: 25%;
    flex-basis: 25%;
  }

  .col.col-sm-9 {
    max-width: 75%;
    flex-basis: 75%;
  }

  .col.col-sm-4 {
    max-width: 33.3333%;
    flex-basis: 33.33%;
  }

  .col.col-sm-8 {
    max-width: 66.6667%;
    flex-basis: 66.67%;
  }

  .col.col-sm-5 {
    max-width: 41.6667%;
    flex-basis: 41.67%;
  }

  .col.col-sm-7 {
    max-width: 58.3333%;
    flex-basis: 58.33%;
  }

  .col.col-sm-6 {
    max-width: 50%;
    flex-basis: 50%;
  }

  .col.col-sm-12 {
    max-width: 100%;
    flex-basis: 100%;
  }

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

  .section.pb-0 {
    padding-bottom: 0;
  }

  .section.ptb-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero {
    height: 100vh;
    min-height: auto;
  }

  .hero_wrapper {
    max-width: 300px;
  }

  .heading-xl {
    font-size: 38px;
    line-height: 42px;
  }

  .heading-xl.c-white.mt-10 {
    font-size: 30px;
    line-height: 34px;
  }

  .c-white.mb-0 {
    font-size: 26px;
    line-height: 30px;
  }

  .c-white.text-center-sm {
    font-size: 24px;
    line-height: 36px;
  }

  .iphone-wrapper {
    width: 90vw;
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .iphone-bg {
    width: 166px;
    height: 295px;
    top: 44px;
    bottom: 48px;
    left: 37px;
    right: 179px;
  }

  .dotted-arrow-right {
    top: 90%;
    left: 65%;
    transform: translate(0, -50%)rotate(90deg);
  }

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

  .iphone-intro {
    width: 90vw;
    height: 200px;
    margin-left: auto;
  }

  .intro-stats {
    flex-direction: column;
    margin-bottom: 0;
  }

  .intro-stats_stat {
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .subheader {
    font-size: 1.4rem;
  }

  .header {
    font-size: 30px;
  }

  .about-tabs_link {
    width: 200px;
    height: 200px;
    max-height: 50%;
    text-shadow: 2px 0 10px var(--dim-grey);
    flex: none;
    padding: 10px;
  }

  .about-tabs_container {
    padding-top: 20px;
  }

  .text-large.c-blue {
    font-size: 1.4rem;
  }

  .text-large.c-white.mr-20.mb-0 {
    font-size: 18px;
  }

  .block-blue {
    padding-left: 30px;
    padding-right: 30px;
  }

  .block-blue_item {
    width: 100%;
  }

  .block-blue_bottom-border {
    display: none;
  }

  .projects-gal {
    flex-direction: column;
  }

  .project-gal_dcol {
    flex-direction: column;
    flex-basis: auto;
  }

  .project-gal_col {
    min-height: 300px;
  }

  .project-gal_col.bg3 {
    max-width: 100%;
  }

  .project-gal_dcol_col {
    min-height: 300px;
    flex-basis: auto;
  }

  .project-gal_dcol_col:hover {
    flex-grow: 1;
  }

  .divider-process {
    margin: 40px auto;
    display: block;
  }

  .divider-process.right {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .divider-process.divider-process--show-sm {
    display: block;
  }

  .d-sm-none {
    display: none;
  }

  .our-team_col {
    width: 100%;
    flex: none;
  }

  .our-team_member-info-wrapper {
    width: 100%;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .our-team_member.our-team_member--m1 {
    width: 100%;
  }

  .our-team_social {
    padding-top: 20px;
  }

  .text, .small_heading {
    text-align: center;
  }

  .accordion {
    width: 100%;
    margin-bottom: -16px;
  }

  .accordion__item {
    margin-bottom: 16px;
  }

  .question-text {
    margin-top: 8px;
  }

  .macbook {
    margin-bottom: 60px;
    display: block;
  }

  .testimonial-slider {
    height: 480px;
  }

  .testimonial_block {
    min-height: 320px;
    padding: 25px;
  }

  .testimonial_slide {
    padding: 0;
  }

  .testimonia_msg {
    margin-left: 0;
  }

  .testimonial_quote-icon {
    margin-bottom: 20px;
    padding-top: 0;
  }

  .testimonial_wrapper {
    flex-direction: column;
  }

  .img-client-logo {
    margin-left: 20px;
    margin-right: 20px;
  }

  .heading {
    margin-bottom: 15px;
  }

  .columns-section {
    justify-content: flex-start;
  }

  ._50-percent-column {
    width: 100%;
  }

  .text-column {
    width: 100%;
    padding-left: 0;
    padding-right: 20px;
  }

  .center {
    position: static;
    transform: translate(0%);
  }

  .t-heading__dummy {
    font-size: 73px;
    top: 22px;
  }

  .e-lottie__hero--desktop {
    display: none;
  }

  .e-lottie__hero--mobile {
    margin-top: 40px;
    display: block;
    overflow: hidden;
  }

  .accordion_title {
    padding-left: 20px;
  }

  .image__accordion {
    width: 200px;
  }

  .heading_team {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .accordion_title_small {
    padding-left: 20px;
  }

  .dropdown_list_small {
    padding: 10px 0;
  }

  .heading__statistik {
    font-size: 24px;
  }

  .text-team {
    font-size: 1rem;
  }

  .title_tabs {
    font-size: 1.2rem;
  }

  .language__list {
    margin-bottom: 0;
  }

  .lamguage__item {
    padding-top: 0;
    padding-bottom: 0;
  }

  .link__language {
    font-size: 1.3rem;
  }

  .link__language:hover {
    text-decoration: underline;
  }
}

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

  ul {
    font-size: 1rem;
  }

  li {
    padding-bottom: 5px;
  }

  blockquote {
    font-size: 1rem;
  }

  .row {
    flex-wrap: wrap;
  }

  .row.justify-center {
    margin-left: 0;
    margin-right: 0;
  }

  .col {
    max-width: 100%;
    flex-basis: 100%;
  }

  .col.col-8 {
    max-width: 100%;
  }

  .col.col-xs-11 {
    max-width: 91.6667%;
    flex-basis: 91.67%;
  }

  .col.col-xs-1 {
    max-width: 8.33333%;
    flex-basis: 8.33%;
  }

  .col.col-xs-2 {
    max-width: 16.6667%;
    flex-basis: 16.67%;
  }

  .col.col-xs-10 {
    max-width: 83.3333%;
    flex-basis: 83.33%;
  }

  .col.col-xs-3 {
    max-width: 25%;
    flex-basis: 25%;
  }

  .col.col-xs-9 {
    max-width: 75%;
    flex-basis: 75%;
  }

  .col.col-xs-4 {
    max-width: 33.3333%;
    flex-basis: 33.33%;
  }

  .col.col-xs-8 {
    max-width: 66.6667%;
    flex-basis: 66.67%;
  }

  .col.col-xs-5 {
    max-width: 41.6667%;
    flex-basis: 41.67%;
  }

  .col.col-xs-7 {
    max-width: 58.3333%;
    flex-basis: 58.33%;
  }

  .col.col-xs-6 {
    max-width: 50%;
    flex-basis: 50%;
  }

  .col.col-xs-12 {
    max-width: 100%;
    flex-basis: 100%;
  }

  .section.latest-projects {
    padding-top: 40px;
  }

  .hero {
    height: 80vh;
  }

  .heading-xl {
    width: 80%;
  }

  .iphone-wrapper {
    margin-top: -80px;
  }

  .iphone-intro {
    height: 50px;
    margin-left: auto;
  }

  .intro-stats_value {
    font-size: 50px;
  }

  .header {
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1;
    display: inline-block;
  }

  .about-tabs_link {
    width: 140px;
    height: 140px;
    flex: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
  }

  .about-tabs_container {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .about-tabs {
    background-color: var(--white);
  }

  .abouts-tabs_content {
    padding-top: 30px;
  }

  .text-large.c-blue {
    font-size: 1.3rem;
  }

  .text-large.mr-20.mb-0 {
    min-width: 135px;
    margin-left: 10px;
    font-size: 1rem;
  }

  .block-blue {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mb-40 {
    margin-top: 135px;
  }

  .block-blue_item {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .block-blue_item.right {
    text-align: left;
    padding-right: 0;
  }

  .desk-setup_mouse {
    right: -35%;
  }

  .our-team_social {
    padding-top: 10px;
  }

  .text {
    display: block;
  }

  .accordion-body {
    padding-left: 56px;
  }

  .question-text {
    margin-bottom: 8px;
    margin-left: 16px;
  }

  .testimonial-slider {
    height: 600px;
  }

  .nav-burger {
    font-size: 40px;
    line-height: 40px;
  }

  .t-heading__dummy {
    text-shadow: 0 0 20px #010101;
    font-size: 35px;
    top: 8px;
  }

  .rte-text h4, .rte-text strong {
    font-size: 1rem;
  }

  .accordion_title {
    padding-left: 10px;
    font-family: "Thesansc5 3", sans-serif;
    font-size: 1rem;
  }

  .dropdown-list {
    padding-left: 0;
    padding-right: 0;
  }

  .image__accordion {
    width: 100px;
  }

  .heading_team {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .accordion_title_small {
    padding-left: 10px;
    font-size: 20px;
  }

  .dropdown_list_small {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading__statistik {
    padding-left: 10px;
    font-size: 20px;
  }

  .table_cell {
    flex: 0 0 25%;
    align-self: flex-start;
  }

  .table_cell.m-left {
    flex-basis: 50%;
  }

  .table_content {
    font-size: .8rem;
    line-height: 120%;
  }

  .table_content.m-intend {
    padding-left: 10px;
  }

  .text-left {
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .text-team {
    font-size: .7rem;
  }

  .title_tabs {
    text-shadow: 0 0 5px var(--black-3);
    font-family: "Thesansc5 3", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
  }

  .list {
    font-size: 1rem;
  }

  .link__language {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1rem;
  }
}


@font-face {
  font-family: 'Thesansc5 3';
  src: url('../fonts/TheSansC5-3_Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thesansc5 5 plain';
  src: url('../fonts/TheSansC5-5_Plain.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thesansc5 8';
  src: url('../fonts/TheSansC5-8_ExtraBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thesansc5';
  src: url('../fonts/TheSansC5-5iPlainItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}