@font-face {
  font-family: 'open_sans_regular';
  src: url("fonts/opensans/opensans-regular-webfont.woff2") format("woff2"), url("fonts/opensans/opensans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'open_sans_light';
  src: url("fonts/opensans/opensans-light-webfont.woff2") format("woff2"), url("fonts/opensans/opensans-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'open_sans_bold';
  src: url("fonts/opensans/opensans-bold-webfont.woff2") format("woff2"), url("fonts/opensans/opensans-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* line 37, scss/style.scss */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* line 44, scss/style.scss */
body {
  font-family: 'open_sans_regular', sans;
  font-size: 14px;
  line-height: 1.3em;
  background: #00b592;
}

/* line 52, scss/style.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: 'open_sans_light', sans;
  font-weight: normal;
  line-height: 1em;
  margin-bottom: 0.5em;
}

/* line 59, scss/style.scss */
h1 {
  font-size: 66px;
}

/* line 60, scss/style.scss */
h2 {
  font-size: 48px;
}
/* line 60, scss/style.scss */
.homepage h2 {
  font-size: 60px;
}

/* line 61, scss/style.scss */
h3 {
  font-size: 54px;
}

/* line 62, scss/style.scss */
h4 {
  font-size: 24px;
}

/* line 63, scss/style.scss */
h5 {
  font-size: 20px;
}

/* line 64, scss/style.scss */
h6 {
  font-size: 18px;
}

/* line 66, scss/style.scss */
p {
  margin-bottom: 0.5em;
}

/* line 70, scss/style.scss */
b, strong {
  font-family: 'open_sans_bold', sans;
}

/* line 74, scss/style.scss */
.button {
  display: inline-block;
  color: white !important;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none !important;
}
/* line 82, scss/style.scss */
.button:hover {
  cursor: pointer;
  text-decoration: none !important;
}

/* line 88, scss/style.scss */
.inner-wrapper {
  width: 900px;
  margin: 0 auto;
}

/* line 93, scss/style.scss */
.align-right {
  text-align: right;
}

/* ------------------------------------
				NAV 
-------------------------------------*/
/* line 101, scss/style.scss */
.logo {
  display: block;
  float: left;
  margin: 0;
}
/* line 106, scss/style.scss */
.logo a {
  display: inline-block;
  width: 130px;
  height: 43px;
  font-size: 0;
  text-indent: -9000px;
  background: url("/assets/logo.png") no-repeat;
}

/* line 116, scss/style.scss */
header {
  padding: 20px 0;
}
/* line 119, scss/style.scss */
header .inner-wrapper {
  height: 42px;
}
/* line 123, scss/style.scss */
header nav {
  display: block;
  float: left;
  position: relative;
  top: 12px;
  left: 30px;
}
/* line 130, scss/style.scss */
header nav ul li {
  display: inline-block;
  position: relative;
}
/* line 134, scss/style.scss */
header nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  margin-right: 6px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
/* line 142, scss/style.scss */
header nav ul li a.active {
  color: #8cb73c;
  font-family: 'open_sans_bold', sans;
}
/* line 148, scss/style.scss */
header nav ul li:hover .nav-item-main {
  color: #8cb73c;
}
/* line 154, scss/style.scss */
header nav ul li ul {
  display: none;
  position: absolute;
  top: 155%;
  border: 4px solid #032d39;
}
/* line 161, scss/style.scss */
header nav ul li ul li {
  display: block;
}
/* line 164, scss/style.scss */
header nav ul li ul li a {
  display: block;
  width: 100%;
  margin-right: 0;
  padding: 8px 12px;
  background: #0e5b6f;
}
/* line 171, scss/style.scss */
header nav ul li ul li a:hover {
  background: #12758f;
}
/* line 177, scss/style.scss */
header nav ul li ul::before {
  display: block;
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: -14px;
  left: calc(50% - 7px);
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #0e5b6f;
}
/* line 193, scss/style.scss */
header nav ul li:hover ul {
  display: block;
}

/* line 199, scss/style.scss */
li:last-child {
  margin: 0 !important;
}
/* line 202, scss/style.scss */
li:last-child a {
  margin: 0 !important;
}

/* line 207, scss/style.scss */
.mobile-nav-toggle {
  visibility: hidden;
}

/* ------------------------------------
				HOME 
-------------------------------------*/
/* line 216, scss/style.scss */
.home-section h2 {
  margin-bottom: 0.3em;
}
/* line 220, scss/style.scss */
.home-section p {
  color: white;
  font-family: 'open_sans_light', sans;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.3em;
}

/* Color schemes ------------------- */
/* line 231, scss/style.scss */
.color-scheme-1 {
  background: #032d39;
}
/* line 234, scss/style.scss */
.color-scheme-1 h2 {
  color: #61cacd;
}
/* line 235, scss/style.scss */
.color-scheme-1 .button {
  background: #0e5b6f;
}
/* line 236, scss/style.scss */
.color-scheme-1 .button:hover {
  background: #116e86;
}

/* line 240, scss/style.scss */
.color-scheme-2 {
  background: #0e5b6f;
}
/* line 243, scss/style.scss */
.color-scheme-2 h2 {
  color: #61cacd;
}
/* line 244, scss/style.scss */
.color-scheme-2 .button {
  background: #00b592;
}
/* line 245, scss/style.scss */
.color-scheme-2 .button:hover {
  background: #009c7d;
}
/* line 248, scss/style.scss */
.color-scheme-2 p, .color-scheme-2 li {
  font-family: 'open_sans_light', sans;
  font-size: 18px;
  line-height: 1.4em;
  color: white;
}
/* line 255, scss/style.scss */
.color-scheme-2 a {
  color: #00b592;
  text-decoration: none;
}
/* line 259, scss/style.scss */
.color-scheme-2 a:hover {
  text-decoration: underline;
}
/* line 264, scss/style.scss */
.color-scheme-2 aside {
  margin-bottom: -40px;
  padding: 20px 0 10px 0;
  background: #0c4c5d;
}
/* line 269, scss/style.scss */
.color-scheme-2 aside h4 {
  color: white;
  margin-bottom: 1em;
  font-family: 'open_sans_regular', sans;
}
/* line 275, scss/style.scss */
.color-scheme-2 aside a, .color-scheme-2 aside li {
  color: #61cacd;
}

/* line 281, scss/style.scss */
.color-scheme-3 {
  background: #00b592;
}
/* line 284, scss/style.scss */
.color-scheme-3 h2 {
  color: #032d39;
}
/* line 285, scss/style.scss */
.color-scheme-3 .button {
  background: #032d39;
}
/* line 286, scss/style.scss */
.color-scheme-3 .button:hover {
  background: #044051;
}
/* line 289, scss/style.scss */
.color-scheme-3 p, .color-scheme-3 li {
  font-family: 'open_sans_light', sans;
  font-size: 18px;
  line-height: 1.4em;
  color: white;
}
/* line 296, scss/style.scss */
.color-scheme-3 a {
  color: white;
  text-decoration: none;
}
/* line 300, scss/style.scss */
.color-scheme-3 a:hover {
  text-decoration: underline;
}

/* line 306, scss/style.scss */
.color-scheme-4 {
  background: #61cacd;
}
/* line 309, scss/style.scss */
.color-scheme-4 h2 {
  color: #032d39;
}
/* line 310, scss/style.scss */
.color-scheme-4 .button {
  background: #032d39;
}
/* line 311, scss/style.scss */
.color-scheme-4 .button:hover {
  background: #044051;
}

/* --------------------------------- */
/* line 317, scss/style.scss */
#home-section-1 {
  height: 420px;
  padding: 50px 0 100px 0;
}
/* line 321, scss/style.scss */
#home-section-1 p {
  max-width: 420px;
}

/* line 326, scss/style.scss */
#home-section-2 {
  height: 500px;
  padding: 80px 0 100px 0;
}
/* line 330, scss/style.scss */
#home-section-2 h2, #home-section-2 a {
  position: relative;
  top: 40px;
}
/* line 335, scss/style.scss */
#home-section-2 h2 {
  line-height: 1.1em;
}

/* line 340, scss/style.scss */
#home-section-3 {
  height: 500px;
  padding: 80px 0 100px 0;
}
/* line 344, scss/style.scss */
#home-section-3 h2, #home-section-3 p, #home-section-3 a {
  position: relative;
  top: 40px;
}
/* line 349, scss/style.scss */
#home-section-3 p {
  font-size: 60px;
  max-width: 580px;
  line-height: 1em;
}

/* line 356, scss/style.scss */
#home-section-4 {
  height: 500px;
  padding: 210px 0 40px 0;
}
/* line 360, scss/style.scss */
#home-section-4 h2, #home-section-4 a {
  position: relative;
  top: -170px;
}

/* line 366, scss/style.scss */
#home-section-5 {
  height: 500px;
  padding: 100px 0 80px;
}
/* line 370, scss/style.scss */
#home-section-5 p {
  max-width: 420px;
}

/* line 375, scss/style.scss */
#home-section-6 {
  height: 500px;
  padding: 100px 0;
}
/* line 379, scss/style.scss */
#home-section-6 p {
  font-size: 18px !important;
  line-height: 1.4em;
  text-transform: none;
}

/* line 386, scss/style.scss */
.section-content {
  height: 100%;
}

/* line 390, scss/style.scss */
.section-content-1-bg {
  background: url("/assets/01.png") no-repeat top right 50px;
  background-size: contain;
}

/* line 395, scss/style.scss */
.section-content-2-bg {
  background: url("/assets/02.png") no-repeat top left;
  background-size: contain;
  padding-left: 330px;
}

/* line 401, scss/style.scss */
.section-content-3-bg {
  background: url("/assets/03.png") no-repeat top right 50px;
  background-size: contain;
}

/* line 406, scss/style.scss */
.section-content-4-bg {
  background: url("/assets/04.png") no-repeat top left;
  background-size: contain;
  padding-left: 100px;
  text-align: right;
}

/* line 413, scss/style.scss */
.section-content-5-bg {
  background: url("/assets/05.png") no-repeat top right 20px;
  background-size: contain;
}

/* line 418, scss/style.scss */
.section-content-6-bg {
  background: url("/assets/06.png") no-repeat top left;
  background-size: contain;
  padding-left: 400px;
}

/* ------------------------------------
				FOOTER 
-------------------------------------*/
/* line 427, scss/style.scss */
footer {
  background: white;
  padding: 20px 0 30px 0;
  overflow: hidden;
}
/* line 432, scss/style.scss */
footer .left div {
  float: left;
  width: 18%;
  margin-right: 2%;
}
/* line 437, scss/style.scss */
footer .left div.first {
  width: 24%;
}
/* line 442, scss/style.scss */
footer .right {
  float: left;
  width: 34%;
}
/* line 447, scss/style.scss */
footer .logo {
  display: inline-block;
}
/* line 451, scss/style.scss */
footer .logo-ovm {
  width: 150px;
  height: 50px;
  background: url("/assets/ovm.jpg") no-repeat;
}
/* line 457, scss/style.scss */
footer .logo-makler {
  width: 150px;
  height: 50px;
  background: url("/assets/makler.jpg") no-repeat;
}
/* line 463, scss/style.scss */
footer h3 {
  display: inline-block;
  font-family: 'open_sans_regular', sans;
  font-size: 18px;
  margin-bottom: 1.5em;
  color: #0e5b6f;
  text-transform: uppercase;
  position: relative;
}
/* line 473, scss/style.scss */
footer p {
  line-height: 1.5em;
}
/* line 477, scss/style.scss */
footer nav li {
  list-style-type: none;
}
/* line 480, scss/style.scss */
footer nav li a {
  line-height: 1.7em;
  color: #0ea6ab;
  text-decoration: none;
}
/* line 485, scss/style.scss */
footer nav li a:hover {
  color: #006954;
}
/* line 489, scss/style.scss */
footer nav li ul {
  margin-left: 20px;
}
/* line 494, scss/style.scss */
footer .footer-logos {
  display: block;
  width: 100%;
  max-width: 310px;
  height: 250px;
  position: relative;
  background: url("/assets/logos.jpg") no-repeat;
  background-size: contain;
}
/* line 505, scss/style.scss */
footer h3:before, footer .footer-logos:before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #00b592;
  position: absolute;
  top: -20px;
  left: 0;
}

/* line 518, scss/style.scss */
.copyright {
  padding: 8px 0 2px 0;
  background: #00b592;
  color: white;
  text-align: center;
}
/* line 524, scss/style.scss */
.copyright a {
  text-indent: -9000;
  display: inline-block;
  width: 85px;
  height: 25px;
  position: relative;
  top: 3px;
  background: url("/assets/logo-platise.jpg") no-repeat;
}

/* ------------------------------------
			  MAIN CONTENT 
-------------------------------------*/
/* line 539, scss/style.scss */
.main-content {
  padding: 40px 0;
}
/* line 542, scss/style.scss */
.main-content p, .main-content ul {
  margin-bottom: 1.5em;
}
/* line 546, scss/style.scss */
.main-content ul {
  margin-left: 20px;
}
/* line 550, scss/style.scss */
.homepage .main-content {
  padding: 0;
}
/* line 553, scss/style.scss */
.homepage .main-content p {
  margin-bottom: 0.5em;
}

/* ------------------------------------
			  CONTACT FORM 
-------------------------------------*/
/* line 564, scss/style.scss */
form div {
  width: 400px;
  margin-bottom: 5px;
  overflow: hidden;
}
/* line 569, scss/style.scss */
form div label {
  display: inline-block;
  color: white;
  font-size: 16px;
  margin: 10px 0;
}
/* line 576, scss/style.scss */
form div input[type="text"], form div input[type="email"], form div textarea {
  width: 100%;
  padding: 7px;
  border: 1px solid white;
}
/* line 581, scss/style.scss */
form div input[type="text"]:focus, form div input[type="email"]:focus, form div textarea:focus {
  outline: 0;
  border: 1px solid #00b592;
}
/* line 587, scss/style.scss */
form div textarea {
  max-width: 100%;
}
/* line 591, scss/style.scss */
form div input[type="checkbox"] {
  position: relative;
  top: 1px;
  left: 10px;
}
/* line 597, scss/style.scss */
form div span {
  color: #8cb73c;
  margin-left: 3px;
}

/* line 604, scss/style.scss */
input.validation-error, textarea.validation-error {
  border: 1px solid #ff606d !important;
}

/* line 609, scss/style.scss */
label.validation-error {
  float: right;
  margin: 5px 0 0 0;
  padding: 3px 6px;
  font-size: 0.95em;
  background: #ff606d;
  clear: both;
}

/* ---------------------------------------
				TEAM PAGE 
--------------------------------------- */
/* line 622, scss/style.scss */
.team div {
  overflow: hidden;
  margin-bottom: 20px;
}
/* line 626, scss/style.scss */
.team div .left, .team div .middle {
  width: 300px;
  float: left;
  padding-right: 15px;
}
/* line 632, scss/style.scss */
.team div strong {
  color: #00b592;
}

/* ---------------------------------------
				DOWNLOADS 
--------------------------------------- */
/* line 641, scss/style.scss */
.document {
  height: 78px;
  padding-top: 10px;
}
/* line 645, scss/style.scss */
.document a {
  display: block;
  color: white;
}
/* line 649, scss/style.scss */
.document a:before {
  display: block;
  content: '';
  width: 66px;
  height: 78px;
  float: left;
  margin-right: 20px;
  position: relative;
  top: -10px;
  background: url("/assets/pdf.png") no-repeat;
}

.column {
  float: left;
  width: 50%;
  padding:20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

hr {
	padding: 30px;
}

.info_text p,
.info_text li {
	color: #000;
}

/* line 106, scss/style.scss */
.partnerSF a {
  display: inline-block;
  width: 100%;
  height: auto;
  font-size: 0;
  text-indent: -9000px;
  background: url("/assets/offizieller-Partner-cmyk-1500px.png") no-repeat;
  padding: 20px;
}


@media screen and (max-width: 1023px) {
  /* line 3, scss/_mediaqueries.scss */
  .inner-wrapper {
    width: 90%;
  }

  /* line 7, scss/_mediaqueries.scss */
  .homepage .section-content {
    background: none;
    height: auto;
    padding: 0;
    text-align: left;
  }
  /* line 13, scss/_mediaqueries.scss */
  .homepage .section-content p {
    max-width: 100% !important;
  }

  /* line 18, scss/_mediaqueries.scss */
  .home-section {
    height: auto !important;
    padding: 50px 0 !important;
  }

  /* line 24, scss/_mediaqueries.scss */
  #home-section-2 h2, #home-section-2 p, #home-section-2 a, #home-section-3 h2, #home-section-3 p, #home-section-3 a, #home-section-4 h2, #home-section-4 p, #home-section-4 a {
    top: 0;
  }

  /* line 30, scss/_mediaqueries.scss */
  .team div .left, .team div .middle {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  /* line 39, scss/_mediaqueries.scss */
  h2 {
    font-size: 36px;
  }

  /* line 44, scss/_mediaqueries.scss */
  footer .right {
    width: 50%;
  }
  /* line 48, scss/_mediaqueries.scss */
  footer div div div {
    width: 50% !important;
    margin: 0 0 20px 0 !important;
  }
  /* line 54, scss/_mediaqueries.scss */
  footer h3:before, footer .footer-logos:before {
    display: none;
  }

  /* line 61, scss/_mediaqueries.scss */
  .document a {
    margin-bottom: 10px;
  }
  /* line 64, scss/_mediaqueries.scss */
  .document a:before {
    width: 40px;
    height: 60px;
    top: 5px;
    background-size: contain;
  }

  /* line 72, scss/_mediaqueries.scss */
  form div {
    width: 100%;
  }

  /* line 77, scss/_mediaqueries.scss */
  .homepage h2 {
    font-size: 28px;
  }
  /* line 78, scss/_mediaqueries.scss */
  .homepage .home-section p {
    font-size: 24px !important;
  }
  /* line 79, scss/_mediaqueries.scss */
  .homepage .button {
    margin-top: 20px;
  }

  /* line 85, scss/_mediaqueries.scss */
  .team div .left, .team div .middle {
    width: 100%;
  }

  /* line 90, scss/_mediaqueries.scss */
  .document {
    height: auto;
  }

  /* MOBILE NAV ------------------------- */
  /* line 96, scss/_mediaqueries.scss */
  .mobile-nav-toggle {
    visibility: visible;
    display: block;
    width: 40px;
    height: 40px;
    background: url("assets/mobile-menu.png") no-repeat;
    float: right;
  }
  /* line 104, scss/_mediaqueries.scss */
  .mobile-nav-toggle:hover {
    cursor: pointer;
  }

  /* line 109, scss/_mediaqueries.scss */
  header nav {
    display: none;
    padding: 10px 0;
  }
  /* line 113, scss/_mediaqueries.scss */
  header nav.active {
    display: block;
    width: 100%;
    position: absolute;
    top: 78px;
    left: 0;
    z-index: 1;
    background: #021e26;
  }
  /* line 124, scss/_mediaqueries.scss */
  header nav ul li {
    display: block;
  }
  /* line 127, scss/_mediaqueries.scss */
  header nav ul li:hover .nav-item-main {
    color: white;
  }
  /* line 131, scss/_mediaqueries.scss */
  header nav ul li a {
    display: block;
  }
  /* line 134, scss/_mediaqueries.scss */
  header nav ul li a:hover {
    color: #8cb73c !important;
  }
  /* line 138, scss/_mediaqueries.scss */
  header nav ul li a.active {
    color: white;
    font-family: 'open_sans_regular', sans;
  }
  /* line 144, scss/_mediaqueries.scss */
  header nav ul li ul {
    display: block;
    position: static;
    border: none;
  }
  /* line 149, scss/_mediaqueries.scss */
  header nav ul li ul li a {
    background: none;
    padding-left: 30px;
  }
  /* line 153, scss/_mediaqueries.scss */
  header nav ul li ul li a:hover {
    background: none;
    color: #8cb73c;
  }
  /* line 159, scss/_mediaqueries.scss */
  header nav ul li ul:before {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  /* line 168, scss/_mediaqueries.scss */
  footer div div div, footer .right {
    width: 100% !important;
  }
}
