:root {
  --main-text-color:rgb(110, 110, 110);
  --font-txt:300 1.1rem/1.9rem 'LexendDeca-Light', sans-serif;
  --blue:rgb(34, 114, 156);
  --orange:rgb(252,170,1);
  --green:rgb(35,148,60);
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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


@font-face {
    font-family: 'LexendDeca-Regular';
    src: url('../Font/LexendDeca-Regular.woff2') format('woff2'),
         url('../Font/LexendDeca-Regular.woff') format('woff'),
         url('../Font/LexendDeca-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LexendDeca-Medium';
    src: url('../Font/LexendDeca-Light.woff2') format('woff2'),
         url('../Font/LexendDeca-Light.woff') format('woff'),
         url('../Font/LexendDeca-Light.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LexendDeca-SemiBold';
    src: url('../Font/LexendDeca-SemiBold.woff2') format('woff2'),
         url('../Font/LexendDeca-SemiBold.woff') format('woff'),
         url('../Font/LexendDeca-SemiBold.ttf') format('ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'BigCaslon';
    src: url('../Font/BigCaslon.woff2') format('woff2'),
         url('../Font/BigCaslon.woff') format('woff'),
         url('../Font/BigCaslon.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/* RESET  */


* {
  box-sizing: border-box;
}


html, body, div, span, applet, object, iframe,
 blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
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-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
.clearfix:after  {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	font-size: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1px;
}
.clearfix {
	display: block;
}
body, html {
	font: var(--font-txt);
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
  color: var(--main-text-color);
}
html {
  overflow-x: hidden;
}
main{
  contain: paint;
  overflow: hidden;
}


/* ####################### BASE ####################### */

.service-wrap ul {
  list-style: none;
  padding-left: 20px;
}

.service-wrap li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  font-weight: bold;
}

.service-wrap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--orange);
}

a{
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  color: var(--link-color-hover);
}
a:hover{
  color: var(--green);
}


.bsw-image-zoom{
  overflow: hidden;
}
.bsw-image-zoom img{
  -webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.bsw-image-zoom:hover img{
  transform: scale(1.2);
}

h1{
  font: bold 3.5rem/3.8rem 'LexendDeca-SemiBold', sans-serif;
  color: var(--blue);
  position: relative;
  margin-bottom: 30px;
}
h2 {
font: 300 3.2rem/3.2rem 'LexendDeca-SemiBold', sans-serif;
color: var(--green);
}
h3{
  font:300 1.6rem/2rem 'LexendDeca-Regular', sans-serif;
  color: var(--orange);
}



.cont, .header, .about-wrap, .service-wrap{
  width: 80%;
  max-width: 1440px;
  margin: auto;
}
.cont.subcont {
margin-bottom: 180px;
padding: 4rem 0;
}


/* ####################### BASE END ####################### */
header{
  width: 100%;
  position: absolute;
  z-index: 9999;
}

.header{
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: space-between;
  color: #fff;
  align-items: center;
}
.nav-all{
  width: 70%;
  background: #ececec;
  position:relative;
  line-height: 80px;
}
.nav-all::before{
  position: absolute;
  content: "";
  width: 2000px;
  right: -1999px;
  top: 0;
  background: #ececec;
  height: 100%;
}
.logo{
  width: 20%;
}
.logo img{
  width: 100%;
  height: auto;
}

.header-image-wrap {
  line-height: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 10rem;
  display: inline-block;
}
.header-image-wrap.bsw-sub-header img {
  object-fit: cover;
    width: 100%;
    height: 320px;
}



.header-image-wrap::before {
  width: 110%;
  height: 200px;
  background: var(--orange);
  border-radius: 0  0 100% 100%;
  content: "";
  position: absolute;
  bottom: -60px;
  left: -5%;
  z-index: -1;
}
.header-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;

  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  position: relative;
  top: 0;
}

.bsw-slogan {
  right: 0;
  position: absolute;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 60%;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: right;
  left: 0;
  margin: auto;
  width: 80%;
  max-width: 1200px;
}
.bsw-slogan-item {
width: 100%;
max-width: 500px;
}
.bsw-slogan h2 {
  font: bold 5.2rem/5.2rem 'LexendDeca-SemiBold', sans-serif;
  color: var(--orange);
  margin: 0 0 15px 0;
}
.bsw-slogan span{
  color: rgb(90,90,90);
  font:300 1.5rem/2rem 'LexendDeca-Regular', sans-serif;
  display: block;
}

.about-wrap {
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.about-item:first-child {
  width: 50%;
  margin-top: 200px;
  position: relative;
}
.about-item:first-child::before {
  content: "";
  position: absolute;
  right: -20%;
  top: -220px;
  background: url("../Grafik/logo-klein.svg");
  width: 70%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right top;
  z-index: -1;
  padding: 3rem 0;
}

.about-item:first-child img{
  width: 100%;
  height: auto;
  border-radius: 60px 0;
  overflow: hidden;
}
.about-item:last-child {
  width: 50%;
  position: relative;
  left: -90px;
  z-index: 1;
  background: white;
  -webkit-box-shadow: 0px 0px 45px -20px rgba(0, 0, 0, .3);
  box-shadow: 0px 0px 45px -20px rgba(0, 0, 0, .3);
  padding: 35px 50px;
  border-radius: 0 60px;
}
.about-item h2 {
margin-top: 0;
}
.about-item h3 {
margin-bottom: 10px;
}
.service-all{
  width: 100%;
  background: var(--green);
  margin: 6rem 0;
  padding: 4rem 0;
  position: relative;
  display: inline-block;
}
.service-all::before{
  content:"";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../Grafik/landschaft-bg.jpg");
  opacity: .2;
  background-size: cover;
}
.service-all::after {
  width: 110%;
  height: 200px;
  background: var(--orange);
  border-radius: 0 0 100% 100%;
  content: "";
  position: absolute;
  bottom: -60px;
  left: -5%;
  z-index: -1;
}
.service-wrap{
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
  position: relative;
}
.service-item:first-child h2{
  position: relative;
  padding-left: 50px;
}
.service-item:first-child h2::after{
  content: "";
  position: absolute;
  height: 110px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: url("../Grafik/logo-klein.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 80px auto;

}
.service-item:first-child{
  width: 58%;
}
.service-item:first-child h2{
  color:var(--orange);
}
.service-item:last-child{
  width: 38%;
}
.service-item:last-child h2{
  font:300 2rem/2.2rem 'LexendDeca-Light', sans-serif;
  color:var(--orange);
}

.leistungen-wrap {
  width: 80%;
  margin: auto;
  max-width: 1440px;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6rem 0 0 0;
}
.leistungen-item {
  width: 48%;
  position: relative;
  z-index: 1;
}
.leistungen-item:last-child{
  text-align: center;
}
.leistungen-item:last-child img:first-child{
  width: 100%;
  height: auto;
  border-radius: 0 60px;
}
.leistungen-item:last-child img:last-child {
  border-radius: 100%;
  border:10px solid #fff;
  height: auto;
  width: 80%;
  margin-top: -30%;
  -webkit-box-shadow: 0px 0px 45px -20px rgba(0, 0, 0, .3);
  box-shadow: 0px 0px 45px -20px rgba(0, 0, 0, .3);
}
.leistungen-details {
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.leistungen-details-item {
  background: var(--green);
  width: 100%;
  padding: 30px 40px;
  margin-bottom: 1px;
  border-radius: 30px;
  color: #fff;
  font-size: 1.2rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.leistungen-details-item:hover{
  padding-top: 50px;
  padding-bottom: 50px;
  -webkit-box-shadow: 0px 0px 32px -12px rgba(0, 0, 0, .6);
  box-shadow: 0px 0px 32px -12px rgba(0, 0, 0, .6);
  border: 1px solid #fff;
}
.leistungen-details-item:hover:nth-child(odd), .leistungen-details-item:hover{
  background: #999;
}
.leistungen-details-item:nth-child(odd) {
  background: var(--orange);
}
.leistungen-wrap h2 {
margin-top: 0;
}
.leistungen-wrap h3 {
margin-bottom: 10px;
}


.kontakt-wrap {
  position: relative;
  width: 80%;
  margin: auto;
  max-width: 1440px;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: -4%;
}
.kontakt-item {
  width: 35%;
  font: 300 1.8rem/2.2rem 'LexendDeca-Light', sans-serif;
  min-width: 200px;
  margin-right: 2.5%
}
.kontakt-item:first-child {
  width: 60%;
  line-height: 0;
}
.kontakt-item:first-child img{
  width: 100%;
  height: auto;
}
.kontakt-item h3{
  font: 300 3.2rem/3.2rem 'LexendDeca-SemiBold', sans-serif;
  margin: 0;
}
.kontakt-item h2{
  margin-top: 10px;
  margin-bottom: 20px;
}

footer{
  width: 100%;
  padding-top: 6rem;
  background: rgb(86,86,86);
  border-radius: 60px 60px 0 0;
}
.footer-top {
  width: 80%;
  max-width: 1440px;
  margin: auto;
  padding-bottom: 6rem;
  color: #fff;
}
.insta img {
  width: 30px;
  height: auto;
  margin-left: 10px;
}
.insta img:hover {
  opacity: .5;
}
.insta{
  display: flex;
  align-items: center;
}
.footer-top h2{
  color: var(--orange);
}
.footer-bottom{
  text-align: center;
  background: var(--orange);
  padding: 20px 0;
  font-size: 1rem;
  }
.footer-bottom a{
  color: rgb(80,80,80);
}

.bsw-move-top > div,
.bsw-move-top > div,
.bsw-move-top > img,
.bsw-move-left > div,
.bsw-move-left > img,
.bsw-move-right > div,
.bsw-move-right > img,
.bsw-move-to-top,
.bsw-move-to-right,
.bsw-move-to-left
 {
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.bsw-move-top > div,
.bsw-move-to-top{
  transform: translateY(200px);
}
.bsw-move-left > div,
.bsw-move-to-left {
  transform: translateX(-200px);
}

.bsw-move-right > div,
.bsw-move-right > img,
.bsw-move-to-right {
  transform: translatex(200px);
}
.fade-in-img > div{
  -webkit-transition: 1.5s!important;
  -moz-transition: 1.5s!important;
  -ms-transition: 1.5s!important;
  -o-transition:1.5s!important;
  transition: 1.5s!important;

  transform: scale(1.05);
  -ms-transform:scale(1.05);
  -webkit-transform:scale(1.05);
  -o-transform:scale(1.05);
  -moz-transform:scale(1.05);
  opacity: 0;

}


/* ###########################################################
####################### MOBILE ####################################
###########################################################
*/


@media screen and (max-width: 1100px){
  h1, h2, h3 {
   -webkit-hyphens: auto;
   hyphens: auto;
 }
 .cont.bsw-calc {
  width: 100%;
  }
}
@media screen and (max-width: 1000px){
  .header-image.bsw-zoom {
    background: #fff;
  }
  .logo {
    width: 40%;
  }
  .about-item:first-child, .about-item:last-child  {
    width: 100%;
    left: 0;
  }
  .service-item:first-child, .service-item:last-child {
    width: 100%;
  }
  .nav-all {
  width: 70%;
  left: 50%;
  background:none;
  }
  .nav-all::before {
    display: none;
  }
.bsw-slogan h2 {
    font: bold 2.2rem/2.2rem 'LexendDeca-SemiBold', sans-serif;
    color: var(--orange);
    margin: 0 0 15px 0;
  }
  .bsw-slogan-item {
    width: 100%;
    max-width: 350px;
  }
  .header-image img {
    object-fit: cover;
    width: 100%;
    height: 650px;
    opacity: .5;
  }
}
@media screen and (max-width: 901px){

}
@media screen and (max-width: 650px){
  .leistungen-item {
  width: 100%;
  padding: 0;
  }
  .kontakt-item:first-child {
    width: 100%;
    border-bottom: 1px solid var(--orange);
    margin-bottom: 20px;
  }
  .kontakt-item {
    width: 100%;
    margin:20px auto 3rem auto;
  }
}
@media screen and (max-width: 600px){
  .nav-all {
  width: 50%;
  left: 20%;
  }
  .logo {
    width: 50%;
  }
}
@media screen and (max-width: 500px){

}
@@media screen and (max-width: 350) {

}
