/* Template.scss bricss SASS Framework
	Define all important Variables for max-Wrapper width, gridspace, Fonts and colors
 */
/*  bricss _Core.scss
    includes reset, basics rules and common fixes
*/
/* RESETS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

/* remember to define focus styles! */
:focus {
  outline: 0; }

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none; }

del {
  text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Basic rules */
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #333333;
  font-family: "Ubuntu", Helvetica, sans-serif; }

html, body {
  margin: 0px;
  padding: 0px; }

.wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0px auto; }

.wrapper::after {
  content: '';
  clear: both;
  height: 0px;
  width: 0px;
  display: block;
  overflow: hidden; }

h1 {
  font-size: 46px;
  font-weight: 400; }

h2 {
  font-size: 38px;
  font-weight: 400; }

h3, .subline {
  font-size: 28px;
  font-weight: 400; }

p {
  font-size: 18px;
  line-height: 140%;
  font-weight: 300; }

a {
  color: #505050;
  text-decoration: none; }

b {
  font-weight: bold; }

i {
  font-style: italic; }

/* Common Fixes */
/* =Clearfix (all browsers)
--------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

/* IE6 */
* html .clearfix {
  height: 1%; }

/* IE7 */
*:first-child + html .clearfix {
  min-height: 1px; }

*[class^="g--"] {
  margin-left: auto;
  margin-right: auto;
  float: left;
  display: block;
  min-height: 20px;
}


/* 2er */
.g--1-2 {
  width: calc(100% / 2);
}

.g--2-2 {
  width: calc(100% - 20px);
}

/* 2er */
.g--1-3 {
  width: calc(100% / 3 * 1 - 10px);
}

.g--2-3 {
  width: calc(100% / 3 * 2 - 10px);
}

.g--3-3 {
  width: calc(100% / 3 * 3 - 10px);
}


/* 4er */
.g--1-4 {
  width: calc(100% / 4 - 20px); }

.g--2-4 {
  width: calc(100% / 4 * 2 - 20px); }

.g--3-4 {
  width: calc(100% / 4 * 3 - 20px); }

.g--4-4 {
  width: calc(100% - 20px); }

/* 6er */
.g--1-6 {
  width: calc(100% / 6 - 10px); }

.g--2-6 {
  width: calc(100% / 6 * 2 - 10px); }

.g--3-6 {
  width: calc(100% / 6 * 3 - 10px); }

.g--4-6 {
  width: calc(100% / 6 * 4 - 10px); }

.g--5-6 {
  width: calc(100% / 6 * 5 - 10px); }

.g--6-6 {
  width: calc(100% - 10px); }

/* 8er */
.g--1-8 {
  width: calc(100% / 8 - 20px);
  margin: 20px; }

.g--2-8 {
  width: calc(100% / 8 * 2 - 20px); }

.g--3-8 {
  width: calc(100% / 8  * 3 - 20px);
  padding-bottom: 80px;}

.g--4-8 {
  width: calc(100% / 8 * 4 ); }

.g--5-8 {
  width: calc(100% / 8 * 5 - 20px); }

.g--6-8 {
  width: calc(100% / 8 * 6); }

.g--7-8 {
  width: calc(100% / 8 * 7 - 20px); }

.g--8-8 {
  width: calc(100%); }

/* Colors.scss bricss SASS Framework
	Creates all color classes
 */
.bg--cl-primary {
  background-color: #e40a15; }

.bg--cl-primary-hover:hover {
  background-color: #f62b36;
  transition: all 0.6s ease;
  color: white; }

.bg--cl-primary-alpha-6 {
  box-shadow: inset 0 0 0 1000px rgba(228, 10, 21, 0.6); }

.bg--cl-primary-alpha-8 {
  box-shadow: inset 0 0 0 1000px rgba(228, 10, 21, 0.8); }

.bg--cl-primary-alpha-9 {
  box-shadow: inset 0 0 0 1000px rgba(228, 10, 21, 0.9); }

.bc--cl-primary {
  border-color: #e40a15; }

.fc--cl-primary {
  color: #e40a15; }
  .fc--cl-primary span {
    color: #e40a15; }

.fc--cl-primary-hover:hover {
  color: #e40a15; }
  .fc--cl-primary-hover:hover span {
    color: #e40a15; }

.bg--cl-second {
  background-color: #505050; }

.bg--cl-second-hover:hover {
  background-color: #8794a1;
  transition: all 0.6s ease;
  color: white; }

.bg--cl-second-alpha-6 {
  box-shadow: inset 0 0 0 1000px rgba(108, 122, 137, 0.6); }

.bg--cl-second-alpha-8 {
  box-shadow: inset 0 0 0 1000px rgba(108, 122, 137, 0.8); }

.bg--cl-second-alpha-9 {
  box-shadow: inset 0 0 0 1000px rgba(108, 122, 137, 0.9); }

.bc--cl-second {
  border-color: #505050; }

.fc--cl-second {
  color: #505050; }
  .fc--cl-second span {
    color: #505050; }

.fc--cl-second-hover:hover {
  color: #505050;; }
  .fc--cl-second-hover:hover span {
    color: #505050; }

.bg--cl-alert {
  background-color: #C0392B; }

.bg--cl-alert-hover:hover {
  background-color: #d65548;
  transition: all 0.6s ease;
  color: white; }

.bg--cl-alert-alpha-6 {
  box-shadow: inset 0 0 0 1000px rgba(192, 57, 43, 0.6); }

.bg--cl-alert-alpha-8 {
  box-shadow: inset 0 0 0 1000px rgba(192, 57, 43, 0.8); }

.bg--cl-alert-alpha-9 {
  box-shadow: inset 0 0 0 1000px rgba(192, 57, 43, 0.9); }

.bc--cl-alert {
  border-color: #C0392B; }

.fc--cl-alert {
  color: #C0392B; }
  .fc--cl-alert span {
    color: #C0392B; }

.fc--cl-alert-hover:hover {
  color: #C0392B; }
  .fc--cl-alert-hover:hover span {
    color: #C0392B; }

.bg--cl-succes {
  background-color: #2ECC71; }

.bg--cl-succes-hover:hover {
  background-color: #54d98c;
  transition: all 0.6s ease;
  color: white; }

.bg--cl-succes-alpha-6 {
  box-shadow: inset 0 0 0 1000px rgba(46, 204, 113, 0.6); }

.bg--cl-succes-alpha-8 {
  box-shadow: inset 0 0 0 1000px rgba(46, 204, 113, 0.8); }

.bg--cl-succes-alpha-9 {
  box-shadow: inset 0 0 0 1000px rgba(46, 204, 113, 0.9); }

.bc--cl-succes {
  border-color: #2ECC71; }

.fc--cl-succes {
  color: #2ECC71; }
  .fc--cl-succes span {
    color: #2ECC71; }

.fc--cl-succes-hover:hover {
  color: #2ECC71; }
  .fc--cl-succes-hover:hover span {
    color: #2ECC71; }

.bg--cl-warning {
  background-color: #E9D460; }

.bg--cl-warning-hover:hover {
  background-color: #efe08d;
  transition: all 0.6s ease;
  color: #6e5f0f; }

.bg--cl-warning-alpha-6 {
  box-shadow: inset 0 0 0 1000px rgba(233, 212, 96, 0.6); }

.bg--cl-warning-alpha-8 {
  box-shadow: inset 0 0 0 1000px rgba(233, 212, 96, 0.8); }

.bg--cl-warning-alpha-9 {
  box-shadow: inset 0 0 0 1000px rgba(233, 212, 96, 0.9); }

.bc--cl-warning {
  border-color: #E9D460; }

.fc--cl-warning {
  color: #E9D460; }
  .fc--cl-warning span {
    color: #E9D460; }

.fc--cl-warning-hover:hover {
  color: #E9D460; }
  .fc--cl-warning-hover:hover span {
    color: #E9D460; }

.bg--cl-bright {
  background-color: #fdfdfd; }

.bg--cl-bright-hover:hover {
  background-color: white;
  transition: all 0.6s ease;
  color: #979797; }

.bg--cl-bright-alpha-6 {
  box-shadow: inset 0 0 0 1000px rgba(253, 253, 253, 0.6); }

.bg--cl-bright-alpha-8 {
  box-shadow: inset 0 0 0 1000px rgba(253, 253, 253, 0.8); }

.bg--cl-bright-alpha-9 {
  box-shadow: inset 0 0 0 1000px rgba(253, 253, 253, 0.9); }

.bc--cl-bright {
  border-color: #fdfdfd; }

.fc--cl-bright {
  color: #fdfdfd; }
  .fc--cl-bright span {
    color: #fdfdfd; }

.fc--cl-bright-hover:hover {
  color: #fdfdfd; }
  .fc--cl-bright-hover:hover span {
    color: #fdfdfd; }

.fc--cl-bright {
  color: #fdfdfd; }

/*
  _bricss SASS Framework
  _Utils
  Helper claaes for margin, padding, space, algin etc.
 */


.spacer--50 {
  padding-top: 50px; }

.p--50 {
  padding: 50px; }

.pt--50 {
  padding-top: 50px; }

.pr--50 {
  padding-right: 50px; }

.pb--50 {
  padding-bottom: 50px; }

.pl--50 {
  padding-left: 50px; }

.ptb--50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.m--50 {
  margin: 50px; }

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

.mr--50 {
  margin-right: 50px; }

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

.ml--50 {
  margin-left: 50px; }

.mtb--50 {
  margin-top: 50px;
  margin-bottom: 50px; }

.spacer--40 {
  padding-top: 40px; }

.p--40 {
  padding: 40px; }

.pt--40 {
  padding-top: 40px; }

.pr--40 {
  padding-right: 40px; }

.pb--40 {
  padding-bottom: 40px; }

.pl--40 {
  padding-left: 40px; }

.ptb--40 {
  padding-top: 40px;
  padding-bottom: 40px; }

.m--40 {
  margin: 40px; }

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

.mr--40 {
  margin-right: 40px; }

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

.ml--40 {
  margin-left: 40px; }

.mtb--40 {
  margin-top: 40px;
  margin-bottom: 40px; }

.spacer--30 {
  padding-top: 30px; }

.p--30 {
  padding: 30px; }

.pt--30 {
  padding-top: 30px; }

.pr--30 {
  padding-right: 30px; }

.pb--30 {
  padding-bottom: 30px; }

.pl--30 {
  padding-left: 30px; }

.ptb--30 {
  padding-top: 30px;
  padding-bottom: 30px; }

.m--30 {
  margin: 30px; }

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

.mr--30 {
  margin-right: 30px; }

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

.ml--30 {
  margin-left: 30px; }

.mlr--30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mtb--30 {
  margin-top: 30px;
  margin-bottom: 30px; }

.spacer--20 {
  padding-top: 20px; }

.p--20 {
  padding: 20px; }

.pt--20 {
  padding-top: 20px; }

.pr--20 {
  padding-right: 20px; }

.pb--20 {
  padding-bottom: 20px; }

.pl--20 {
  padding-left: 20px; }

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

.m--20 {
  margin: 20px; }

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

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

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

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

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

.spacer--10 {
  padding-top: 10px; }

.p--10 {
  padding: 10px; }

.pt--10 {
  padding-top: 10px; }

.pr--10 {
  padding-right: 10px; }

.pb--10 {
  padding-bottom: 10px; }

.pl--10 {
  padding-left: 10px; }

.ptb--10 {
  padding-top: 10px;
  padding-bottom: 10px; }

.m--10 {
  margin: 10px; }

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

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

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

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

.mtb--10 {
  margin-top: 10px;
  margin-bottom: 10px; }

.ml--0 {
  margin-left: 0px;
}

.w--100 {
  width: 100%; }

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

.ta--justify {
  text-align: justify; }

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

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

.fw--light {
  font-weight: 300; }

.fw--normal {
  font-weight: 400; }

.fw--bold {
  font-weight: 600; }

.h--100p {
  height: 100%; }

.fl--left {
  float: left; }

.fl--right {
  float: right; }

.c--pointer {
  cursor: pointer; }

.no-wrap {
  white-space: nowrap; }

.fs--xsmall {
  font-size: 10px;
}
.fs--small {
  font-size: 12px;
}
.fs--medium {
  font-size: 16px;
}
.fs--large {
  font-size: 22px;
}
.fs--xlarge {
  font-size: 25px;
}
.fs--xxlarge {
  font-size: 35px;
}
.fs--xxxlarge {
  font-size: 50px;
}

/* NOT WORKING YET
*[class^="flex--"]  {
	margin: 0px 10px;
	float: left;
}

.flex {
	display: flex;
}

	flex box to change order of child divs
	directions:
	rtl	= right to left
	ltr = left to right
	btt = bottom to top
	ttb = top to bottom

.flex--dir-rtl {
	flex-direction: row-reverse;
}
.flex--dir-ltr {
	flex-direction: row;
}
.flex--dir-btt {
	flex-direction: column-reverse;
}
.flex--dir-ttb {
	flex-direction: column;
}


.flex--jus-start {
	justify-content: flex-start;
}
.flex--jus-end {
	justify-content: flex-end;
}
.flex--jus-between {
	justify-content: space-between;
}
.flex--jus-around {
	justify-content: space-around;
}
.flex--jus-center {
	justify-content: center;
}


.flex--ali-start {
	align-items: flex-start;
}
.flex--ali-end {
	align-items: flex-end;
}
.flex--ali-center {
	align-items: center;
}
.flex--ali-stretch {
	align-items: stretch;
}
.flex--ali-baseline {
	align-items: baseline;
}


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

*/
.logo {
  padding: 20px 0px 0px 10px;
}

.top-navi {
  padding: 30px 0px 0 50px;
  display: flex;
  justify-content: space-between;
}

.welcome-bg-img {
  background-image: url("../img/welcome-img.png");
  background-size: cover;
  box-sizing: border-box;
}

.about-us-bg-img {
  background-image: url("../img/welcome-text-img.png");
  background-size: cover;
  max-width: 1100px;
  min-height: 743px;
  max-height: 100%;
  box-sizing: border-box;
  background-position: center;
}

.icon-scrolldown-img {
  position: relative;
  left: 50%;
  bottom: 65px;
  transform: translateX(-50%);
}

.icon-scrolldown {
  background-image: url("../img/icons/ScrollPfeil.png");
  background-size: cover;
  width:102px;
  height:102px;
  display: block;
  transition: all .5s;
}

.animated {
  -webkit-animation: move 2s infinite;
  animation: move 2s infinite;
  margin: 0 auto;
}

@keyframes move {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-25px);
   transform: translateY(-25px);
  }
}

.about-us-subheading {
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 25px 0 0 118px;
  line-height: 120%;
}

.about-us-text {
  padding: 65px 0 0 118px;
  line-height: 190%;
}

.goals-bg-img {
  background-image: url("../img/goals-img.jpg");
  background-size: cover;
  box-sizing: border-box;
  background-position: center;
  display: inline-block;
}

.goals-heading {
    letter-spacing: 5px;
    text-transform: uppercase;
    padding: 110px 0 80px 0px;
}

.goals-icons-list-left {
   margin-left:25px;
 }
 
.goals-icons-list-right{
  margin-left:15px;
}

.goal-subheadline {
   letter-spacing: 2px;
   font-weight: bold;
   margin-left: 15px;
   position: absolute;
 }

.goal-text {
  letter-spacing: 1px;
  margin: -45px 0px 28px 79px;
  display: block;
  line-height: 180%;
  font-size: 14px;
}

.image-separator {
  /* The image used */
  background-image: url("../img/image.jpg");
  width: 1100px;
  height: 260px;

  /* Set a specific height*/
  min-height: 240px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.competences-bg-img {
  background-image: url("../img/kompetenzen-bg.png");
  background-size: cover;
  width: 1100px;
  height: 2490px;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

.circle {
  z-index: 50;
  width: 318px;
  height: 318px;
  border-radius: 159px;
  background: white;
  box-shadow: 0px 0px 70px 30px rgba(115, 95, 95, 0.29); /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
  -webkit-box-shadow: 0px 0px 70px 30px rgba(115, 95, 95, 0.29);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 0px 0px 70px 30px rgba(115, 95, 95, 0.29);  /* Firefox 3.5 - 3.6 */
}

.circle:hover {
  width: 330px;
  height: 330px;
  border-radius: 165px;
  transition: all 2s;
  -webkit-transition: all 2s;
}

.block1 {
  top: 300px;
  left: 5px;
  position: relative;
}

.block3 {
  top: 840px;
  left: 5px;
  position: relative;
}

.block2 {
  right: 10px;
  top: 115px;
  position: relative;
}

.block4 {
  right:-305px;
  top:965px;
  position: relative;
}

.block5 {
  left:225px;
  top:1360px;
  position: relative;
}

.circle-text {
  position: relative;
  font-weight: bold;
  font-size: 38px;
}

.text-block1 {
  bottom: -85px;
}

.text-block3 {
  bottom: -115px;
}

.text-block2 {
  bottom: -115px;
}

.text-block4 {
  bottom: -115px;
}

.text-block5 {
  bottom: -115px;
}

.rectangle {
  z-index: 100;
  position: absolute;
  background: white;
  box-shadow: 0px 0px 130px 15px rgba(204,204,223,0.55); /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
  -webkit-box-shadow: 0px 0px 130px 15px rgba(204,204,223,0.55);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 0px 0px 130px 15px rgba(204,204,223,0.55);  /* Firefox 3.5 - 3.6 */
  display: none;
  color: #505050;
  line-height: 180%;
}

.closing-icon {
  margin: -20px 0px 30px -21px;
}

.closing-icon-right {
  margin: -23px -26px 0px 0px;
}

.rectangle-popup1 {
  width: 577px;
  height: 420px;
  padding: 50px;
  margin: 220px 0 0 120px;
}
.rectangle-popup2 {
  width: 425px;
  height: 555px;
  padding: 50px;
  margin: 345px 0 0 -155px;
}
.rectangle-popup3 {
  margin: 770px 0 0 150px;
  width: 637px;
  height: 310px;
  padding: 50px;
}
.rectangle-popup4 {
  margin: 1205px 0 0 -190px;
  width: 623px;
  height: 488px;
  padding: 50px;
}
.rectangle-popup5 {
  width: 547px;
  height: 390px;
  padding: 50px;
  margin: 1280px 0 0 400px;
}

li {
  color:#505050;
}

.rectangle-text-dash {
  margin-left: 30px;
}

.rectangle-text-dash li:before {
  content: '-';
  position: absolute;
  margin-left: -30px;
}

.contact-details-img {
  background-image: url("../img/address-bg.jpg");
  display: inline-block;
  background-repeat: no-repeat;
  background-position-y: 100%;
  background-size: 100%;
  background-color: #fbfbfb;
}

.contact-address {
  margin: -12px 0px 200px 400px;
  line-height: 180%;
}

.contact-name {
  margin: -50px 0px 20px 260px;
  padding-top: 200px;
}

.footer-navi {
  margin: 20px 0 20px 0;
  display: flex;
  justify-content: flex-end;
}

.footer-navi-list {
  margin:0 5px 0 80px;
}

@media screen and (max-width: 1102px) {
  .wrapper {
    width: 100%;
  }

  .logo-img {
    width: 100%;
  }

  .welcome-bg-img {
    margin-top: 20px;
  }

  .about-us-bg-img {
    width: 100%;
    min-height: 750px;
  }

  .about-us-subheading {
    padding: 0px 0 0 45px;
  }

  .about-us-text{
    padding: 30px 0 20px 48px;
    font-size: 14px;
  }

  .goals-heading {
    padding: 80px 0 50px 0px;
  }
  .g--1-8 {
    margin: 0px;
  }
  .g--3-8 {
    margin-left:35px;
    padding-bottom: 80px;
  }

  .goals-icons-list-right {
    margin-left: 0px;
  }

  .goal-text {
    line-height: 125%;
  }

  .image-separator {
    width:100%;
  }

  .competences-bg-img {
    width:100%;
    background-position: center;
    background-size: 100% 100%;
    height: 2300px;
  }

  .block1 {
    top: 285px;
  }
  .block2 {
    top: 180px;
    left: -5px;
  }
  .block4 {
    left: 245px;
  }
  .block5 {
    left: 260px;
    top: 1206px;
  }
  .circle {
    width: 250px;
    height: 250px;
  }
  .circle:hover {
    width: 270px;
    height: 270px;
    border-radius: 135px;
    transition: all 2s;
    -webkit-transition: all 2s;
  }
  .circle-text {
    font-size: 30px;
  }
  .text-block1 {
    bottom: -70px;
  }
  .text-block2 {
    bottom: -90px;
  }
  .text-block3 {
    bottom: -85px;
  }
  .text-block4 {
    bottom: -92px;
  }
  .text-block5 {
    top: 88px;
    position: absolute;
    left: 45px;
  }

  .rectangle-popup1 {
    margin-top: 230px;
  }
  .rectangle-popup2 {
    margin: 370px 0 0 -200px;
  }
  .rectangle-popup3 {
    margin-left: 90px;
  }
  .rectangle-popup4 {
    margin: 1150px 0 0 -190px;
  }
  .rectangle-popup5 {
    margin: 1140px 0 0 215px;
  }

  .rectangle-text-dash li:before {
    margin-left: -20px;
  }

  .contact-details-img {
    width:100%;
  }
  .contact-name {
    margin: -50px 0px 20px 140px;
  }
  .contact-address {
    margin: -12px 0px 200px 250px;
  }
}

@media screen and (max-width: 720px) {
  .g--4-6 {
    width: 100%;
  }

  .g--1-2 {
    width: 100%;
    text-align: center;
  }

  .g--4-8 {
    width: 100%;
    float: none;
  }

  .logo {
    width: 100%;
    padding: 20px 10px 0 10px;
  }

  .top-navi {
    flex-direction: column;
    align-items: center;
    padding: 10px 0px 0 0;
  }

  .top-navi-list {
    padding: 5px;
  }

  .about-us-bg-img {
    min-height: 600px;
  }

  .about-us-subheading {
    font-size: 28px;
    margin-top: -20px;
  }

  .about-us-text {
    padding: 30px 205px 20px 48px;
  }

  .break {
    display: none;
  }

  .goal-text {
    letter-spacing: 0px;
  }
  .goal-subheadline {
    letter-spacing: 0px;
  }
  .goals-icons-list-left {
    margin-left: -25px;
  }
  .goals-icons-list-right {
    margin-left: -22px;
  }
  .block1 {
    top: 195px;
  }
  .block2 {
    top: -25px;
    left: -5px;
  }
  .block3 {
    top: 480px;
  }
  .block4 {
    top: 460px;
  }
  .block5 {
    top: 721px;
    left: 160px;
  }

  .text-block5:hover {
    left: 55px;
    top: 95px;
    transition: all 2s;
    -webkit-transition: all 2s;
  }

  .closing-icon-right {
    float: right;
    margin: -20px -18px 4px 0px;
  }
  .competences-bg-img {
    height: 2000px;
  }
  .rectangle-popup1 {
    margin: 140px 0 0 60px;
    width: 448px;
    height: 295px;
    padding: 30px;
  }
  .rectangle-popup2 {
    margin: 150px 0 0 -230px;
    width: 443px;
    height: 290px;
    padding: 30px;
  }
  .rectangle-popup3 {
    margin: 410px 0 0 40px;
    width: 496px;
    height: 220px;
    padding: 30px;
  }
  .rectangle-popup4 {
    margin: 630px 0 0 5px;
    width: 485px;
    height: 325px;
    padding: 30px;
  }
  .rectangle-popup5 {
    margin: 640px 0 0 110px;
    width: 423px;
    height: 275px;
    padding: 30px;
  }
  .rectangle {
    font-size: 13px;
    line-height: 150%;
  }
  .contact-name {
    margin: -50px 0px 20px 160px;
    padding-top: 120px;
  }
  .contact-address {
    margin: -15px 0 100px 200px;
  }

  .footer-navi-list {
    padding: 5px;
  }
}

@media screen and (max-width: 520px) {
  .about-us-bg-img {
    width: 100%;
    min-height: 430px;
    background-position: left;
  }
  .about-us-subheading {
    font-size: 18px;
    padding-left: 30px;
  }
  
  .about-us-text {
    padding: 20px 70px 30px 30px;
    font-size: 13px;
    line-height: 130%;
  }

  .g--3-8 {
    width: 100%;
    padding-left: 30px;
    margin-left: 0px;
    padding-bottom: 0px;
  }

  .g--1-2 {
    clear: both;
  }

  .g--1-6 {
    clear: both;
  }

  .g--6-6 {
    overflow: hidden;
  }

  .goals-icons-list-left {
    margin:0 43px 0 0;
  }
  .goals-icons-list-right {
    margin: 0 30px 0 0px;
  }
  .goals-heading {
    padding: 35px 0 25px 0px;
    font-size: 20px;
  }
  .goal-subheadline {
    letter-spacing: 2px;
  }
  .goal-text {
    margin: -49px 0px 40px 79px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .image-separator {
    width: 100%;
  }
  .competences-bg-img {
    width:100%;
    height:840px;
  }
  .circle {
    width: 125px;
    height: 125px;
    box-shadow: 0px 0px 130px 35px rgba(204,204,223,0.30); /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
    -webkit-box-shadow: 0px 0px 130px 35px rgba(204,204,223,0.30);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0px 0px 130px 35px rgba(204,204,223,0.30);  /* Firefox 3.5 - 3.6 */
  }
  .circle:hover {
    width: 125px;
    height: 125px;
  }
  .block1 {
    top: 70px;
  }
  .block2 {
    left: 5px;
    top: -45px;
    float: none;
  }
  .block3 {
    top:215px;
    left: 7px;
  }
  .block4 {
    left: 7px;
    top: 100px;
    float: none;
  }
  .block5 {
    top: 110px;
    left: 7px;
  }
  .closing-icon-right {
    float: left;
    margin: -25px 3px 20px -23px;
  }
  .closing-icon {
    margin: -20px 0px 20px -21px;
  }
  .circle-text {
    font-size: 20px;
  }
  .text-block1 {
    bottom: -24px;
  }
  .text-block2 {
    bottom: -39px;
  }
  .text-block3 {
    bottom: -38px;
  }
  .text-block4 {
    bottom: -38px;
  }
  .text-block5 {
    top: 37px;
    left: 12px;
  }
  .text-block5:hover {
    left: 12px;
    top: 36px;
  }
  .rectangle {
    font-size: 12px;
    line-height:130%;
  }
  .rectangle-popup1 {
    margin: 35px 0 0 30px;
    width: 85%;
    height: 250px;
  }
  .rectangle-popup2 {
    margin: -80px 0 0 30px;
    width: 85%;
    height: 295px;
  }
  .rectangle-popup3 {
    margin: 175px 0 0 30px;
    width: 85%;
    height: 220px;
  }
  .rectangle-popup4 {
    margin: 65px 0 0 30px;
    width: 85%;
    height: 300px;
  }
  .rectangle-popup5 {
    margin: 80px 0 0 30px;
    width: 85%;
    height: 260px;
  }
  .fl--right {
    float: none;
  }
 
  .contact-address {
    margin: 0px 0 100px 120px;
    line-height: 130%;
    font-size: 14px;
  }
  .contact-name {
    margin: -80px 0 0 95px;
    font-size: 30px;
  }
  .footer-navi {
    flex-direction: column;
    align-items: center;
  }
  .footer-navi-list {
    margin: 0 0 0 0;
  }
  .fs--xxxlarge {
    font-size: 30px;
  }
}

@media screen and (max-width: 320px) {
  .goal-text-kreativ {
    margin-top: -30px;
  }

  .competences-bg-img {
    height: 720px;
  }

  .rectangle-popup1 {
    margin: 35px 0 0 25px;
    width: 240px;
    height: 270px;
  }
  .rectangle-popup2 {
    margin: -80px 0 0 25px;
    width: 280px;
    height: 310px;
  }
  .rectangle-popup3 {
    margin: 180px 0 0 25px;
    width: 243px;
    height: 275px;
  }
  .rectangle-popup4 {
    margin: 70px 0 0 25px;
    width: 245px;
    height: 350px;
  }
  .rectangle-popup5 {
    margin: 80px 0 0 25px;
    width: 233px;
    height: 320px;
  }
  .contact-name {
    margin-left: 40px;
    font-size: 25px;
  }

  .contact-address {
    line-height: 120%;
    font-size: 12px;
  }
}