@import url("reset.css");

/*-----------FONTS-----------*/

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v19-latin-300.eot');
  /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
    url('../fonts/roboto-v19-latin-300.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/roboto-v19-latin-300.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/roboto-v19-latin-300.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/roboto-v19-latin-300.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/roboto-v19-latin-300.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v19-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/roboto-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/roboto-v19-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/roboto-v19-latin-regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/roboto-v19-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/roboto-v19-latin-regular.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v19-latin-500.eot');
  /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
    url('../fonts/roboto-v19-latin-500.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/roboto-v19-latin-500.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/roboto-v19-latin-500.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/roboto-v19-latin-500.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/roboto-v19-latin-500.svg#Roboto') format('svg');
  /* Legacy iOS */
}

/* winky-sans-regular - latin */
@font-face {
  font-family: 'Winky Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/winky-sans-v2-latin-regular.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/winky-sans-v2-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/winky-sans-v2-latin-regular.woff2') format('woff2'),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/winky-sans-v2-latin-regular.woff') format('woff'),
    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
    url('../fonts/winky-sans-v2-latin-regular.ttf') format('truetype'),
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
    url('../fonts/winky-sans-v2-latin-regular.svg#WinkySans') format('svg');
  /* Legacy iOS */
}


/*-----------FONTGESTALTUNG-----------*/

html {
  overflow-x: hidden !important;
}

body {
  font-family: 'Roboto';
  text-align: left;
  background-color: #F7F0F5;
}

p {
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  color: #222222;
  margin-bottom: 15px;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

h1 {
  font-family: 'Winky Sans';
  font-size: 35px;
  line-height: 40px;
  color: #C53663;
}

h2 {
  font-family: 'Winky Sans';
  font-size: 25px;
  line-height: 45px;
  font-weight: 200;
  color: #fff;
}

h3 {
  font-size: 20px;
  margin-bottom: 30px;
}

h4 {
  font-size: 16px;
}

li {
  font-size: 14px;
  list-style: disc;
}

strong {
  font-weight: 500;
}


/*-----------AUFBAU-----------*/

html {
  scroll-behavior: smooth;
}

.content {
  display: flex;
  width: 80%;
  margin-left: 10%;
  justify-content: space-between;
  align-items: center;
}

.col2 {
  width: 45%;
}

.text-r,
.text-g {
  position: relative;
}

.ueberschrift-r {
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
  background-color: #C53663;
}

.text-r::after {
  content: url(../images/pinsel-rot.png);
  position: absolute;
  left: -30px;
  top: -25px;
}

.ueberschrift-g {
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
  background-color: #5C9833;
}

.text-g::after {
  content: url(../images/pinsel-gruen.png);
  position: absolute;
  left: -30px;
  top: -25px;
}

.border-r {
  width: 95%;
  height: 40px;
  background-color: #C53663;
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  margin-bottom: -40px
}

.border-r h2 {
  margin-left: 10%;
}

.border-g {
  width: 95%;
  height: 40px;
  background-color: #5C9833;
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  margin-bottom: -40px
}

.btn {
  background-color: #C53663;
  color: #fff;
  padding: 5px 30px;
  transition: 0.5s;
}

.btn:hover {
  background-color: #5C9833;
}

::-moz-selection {
  background: #902044;
  color: #fff;
}

::selection {
  background: #902044;
  color: #fff;
}


/*-----------NAVI-----------*/

#top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #fff;
  z-index: 9;
}

.logo {
  width: 755px;
  height: 130%;
  margin-left: 5%;
}

nav {
  position: fixed;
  background: #C53663;
  width: 100%;
  z-index: 101;
  top: 200px;
  text-align: center;
  padding: 15px 0;
  z-index: 100;
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}

nav ul li {
  display: inline-block;
  margin: 0 5%;
}

nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

nav ul li strong {
  color: #0025a6;
  font-weight: 600;
}

nav ul li a:hover {
  font-style: italic;
}

.navi {
  display: none;
}

.burger-nav {
  position: fixed;
  right: 0;
  top: -6px;
  color: #fff;
  z-index: 9999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 40px;
  cursor: pointer;
  transition: all .4s ease-in-out;
  background-color: #C93665;
  padding: 16px 21px 21px 19px;
}

.burger-nav b {
  transition: all .4s ease-in-out;
  float: left;
  margin-left: 0;
  font-family: 'Roboto';
  font-style: normal;
}

.burger-nav-anim {
  top: -5px;
  color: #fff;
  z-index: 99999;
}

.burger-nav-anim b:first-of-type {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-nav-anim b:nth-of-type(2) {
  opacity: 0;
}

.burger-nav-anim b:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -80%;
}

.full-screen-nav {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: #C93665;
  display: table;
  visibility: hidden;
  transition: all .4s ease-in-out;
  opacity: 0;
  top: 0;
}

.full-screen-nav ul {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.full-screen-nav ul li a {
  font-family: 'Winky Sans';
  padding: 20px;
  display: block;
  font-size: 30px;
  color: #fff;
  transition: all .4s ease-in-out;
  text-decoration: none;
}

.fadeIn {
  opacity: 1 !important;
  visibility: visible !important;
}

.fadeUp {
  opacity: 1 !important;
  margin-top: 0 !important;
}


/*-----------ASIDE-----------*/

aside {
  background-color: #C53663;
  position: fixed;
  left: 0;
  top: 245px;
  padding: 5px 10px 5px 5px;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  z-index: 99;
}

aside img {
  width: 40px;
  transition: 0.5s;
}


/*-----------SUBNAV-----------*/

.subnav {
  position: fixed;
  bottom: 0;
  color: #fff;
  z-index: 999;
  transition: 0.5s;
  width: 100%;
  text-align: right;
  background-color: #C53663;
  width: 250px;
  padding: 10px 20px 0 0;
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}

.subnav a {
  font-family: 'Roboto';
  color: #fff;
  font-size: 13px;
}

.subnav a:nth-of-type(2) {
  margin-left: 10px;
}

.subnav a:hover {
  text-decoration: underline;
}


/*-----------HEADER-----------*/

header {
  background: url("../images/header.jpg") no-repeat;
  margin-top: 200px;
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  position: relative;
}

#stoerer {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 80px;
  background-color: #D8DECE;
  clip-path: polygon(0 0, 100% 1%, 95% 100%, 0% 100%);
}


/*-----------ÜBER UNS-----------*/

#ueberuns {
  padding: 200px 0 100px;
  text-align: center;
  background-color: #D8DECE;
}

.col-img {
  width: 100%;
  height: auto;
  max-width: 600px;
  position: relative;
}

.zertifikat {
  background-color: #C53663;
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
}

.zertifikat:hover {
  background-color: #5C9833;
  transition: 0.3s;
}
#ueberuns p:last-of-type{
  margin-bottom: 2.5vh;
}

/*-----------LEISTUNGEN-----------*/

#leistungen {
  padding: 200px 0 100px;
  text-align: center;
}

.col-img {
  width: 100%;
  height: auto;
  max-width: 600px;
  position: relative;
}

.leistungspunkt-g {
  font-size: 18px;
  border: 5px solid #5C9833;
  width: 100%;
  height: auto;
  padding: 10px 0;
}

.leistungspunkt-g::before {
  content: url(../images/farbroller-g.png);
  position: absolute;
  left: -45px;
  top: -10px;
}

.leistungspunkt-r {
  font-size: 18px;
  border: 5px solid #C53663;
  width: 100%;
  height: auto;
  padding: 10px 0;
}

.leistungspunkt-r::before {
  content: url(../images/farbroller-r.png);
  position: absolute;
  left: -45px;
  top: -10px;
}

.leistungspunkt-g,
.leistungspunkt-r {
  margin-bottom: 30px;
  position: relative;
}

.leistungspunkt-g a,
.leistungspunkt-r a {
  font-family: 'Winky Sans';
}





/*-----------FASSADEN-----------*/

#fassaden {
  padding: 200px 0 100px;
  text-align: center;
  background-color: #D8DECE;
}


/*-----------WETTERSCHUTZ HOLZ-----------*/

#wetterschutz {
  padding: 200px 0 100px;
  text-align: center;
}

/*-----------INNENGESTALTUNG-----------*/

#innengestaltung {
  padding: 200px 0 100px;
  text-align: center;
  background-color: #D8DECE;
}


/*-----------KREATIVES-----------*/

#kreatives {
  padding: 200px 0 100px;
  text-align: center;
}


/*-----------SCHIMMELANALYSE-----------*/

#analyse {
  padding: 200px 0 100px;
  text-align: center;
  background-color: #D8DECE;
}


/*-----------SANIERUNGEN-----------*/

#sanierungen {
  padding: 200px 0 100px;
  text-align: center;
}

#galerie {
  padding: 200px 0 100px;
  text-align: center;
}

.slick-slider {
  width: 90%;
  margin-left: 5%
}


#impressum  {
  padding: 100px 11%;
}

/*-----------FOOTER-----------*/

footer {
  padding: 120px 0;
}

footer a {
  text-decoration: underline;
}

.kontaktformular {
  width: 100%;
  height: 800px;
}

#kontakt {
  padding: 100px 2%;
}

/*-----------RATING-----------*/

#rating {
  padding: 100px 0;
  text-align: center !important;
}

#dsa-rating-view {
  width: 80%;
  margin-left: 10%;
  margin-bottom: 40px;
}

.rating_box h3 {
  text-align: center !important;
  margin-bottom: 0 !important;
}

.rating_top {
  margin: 30px 20px 30px 20px !important;
}

.rating_thumb,
.rating_box .subline {
  display: none;
}

#erfahrungen {
  padding: 80px 10%;
}


/*-----------RESPONSIVE-----------*/

@media screen and (max-width: 1366px) {

  header,
  .puffer1,
  .puffer2 {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 25px;
    line-height: 30px;
  }

  h1 b {
    font-size: 25px;
  }

  .logo {
    width: 500px;
  }

  #top {
    height: 132px;
  }

  header {
    margin-top: 132px;
    height: 50vh;
  }

  main {
    text-align: center;
  }

  .content {
    flex-direction: column;
  }

  .col2 {
    width: 100%;
  }

  #ueberuns .col2{
    margin-top: 2.5vh;
  }

  #ueberuns,
  #leistungen,
  #fassaden,
  #wetterschutz,
  #innengestaltung,
  #kreatives,
  #analyse,
  #sanierungen,
  #galerie {
    padding: 100px 0 100px
  }

  .border-r h2 {
    margin-left: 5%
  }

  #ueberuns .content,
  #fassaden .content,
  #analyse .content,
  #innengestaltung .content {
    flex-direction: column-reverse;
  }

  .col2:nth-of-type(2) {
    margin-bottom: 20px;
  }

  nav {
    background: none;
    box-shadow: 0 0 0;
  }

  nav ul {
    display: none;
  }

  .navi {
    display: block;
  }
}


@media screen and (max-width: 600px) {
  .logo {
    width: 250px;
  }

  #top {
    height: 67px;
  }

  header {
    margin-top: 67px;
  }
}