@import url(all.min.css);
@import url(normalize.css);
@import url(lightbox.min.css);
@import url(flickity.min.css);

/*Allgemeine Formatierungen*/
* {
    box-sizing: border-box;
  }

html, body {
    scroll-behavior: smooth;
}

body{
    margin:0;
    color: #32393f;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    font-family: 'Ubuntu', sans-serif;

  }

a{
    text-decoration: none;
  }

 
p{
    color:#32393f;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5em;
  }

h1{
  color:#79879c;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}


h2{
  color:#32393f;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

h3{
    color:#2560b4;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

h4{
    color:#393e41;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    }

h5{
    color:#fff;
    font-size: 26px;
    font-weight: 500;
  }
span h5{
    text-transform: uppercase;
    letter-spacing:3px;
} 

ul,ol{
    padding:0;
    margin:0;
    list-style-type:none;
  }
  

  ul,span,li{
    padding:0;
    margin:0;
    list-style-type:none;
  }

/*Innerbox ////////////////*/
.innerbox{
    max-width: 1234px;
    margin: 0 auto;
    padding: 0 2%;
    position: relative;
    overflow: hidden;
  }

  #gallery .innerbox{
    max-width: 100%;
    padding: 0;
  }

/*CSS-Gestaltungs-Raster////////////////*/
.innerbox{
  overflow:hidden;
}

.row{
    overflow:hidden;
  }
  
  .halbe{
  width:47%;
  float:left;
  margin-top: 6%;
  margin-right:6%;
  margin-bottom: 6%;
  }


  #after-before img {
    width: 100%;
    }
    
  
  .unterseiten .halbe{
    padding: 60px 0;
    }

  .drittel{
    width:29.333%;
    float:left;
    margin-right:6%;
    padding: 60px 0;
    }
  
  .zweidrittel{
      width:64.666%;
      float:left;
      margin-right:6%;
      padding: 60px 0;
    }

  .viertel{
      width: 25%;
      float:left;
    }

  .dreidrittel{
    padding-bottom: 40px;

  }


  /* Aussenabstand verwerfen*/
    .halbe:last-child,
    .drittel:last-child,
    .zweidrittel:last-child,
    .viertel{
    margin-right:0;
  }


  .main-gallery{
    background: #e5f0f8;
  }

/*header + nav ////////////////*/  
/*main ///*/
.main_h {
  background: #034893;
  position: fixed;
  top:0px;
  left:0;
  z-index: 999;
  width: 100%;
 /*für die Auf-Zu-Klapp-Funktion des Toggles wichtig*/
  max-height: 100px;
  overflow: hidden;
  padding-top: 7px;
  padding-bottom:6px;
  transition: all 0.3s;
}

/*Beim scrollen mit der Mouse wird ab einer scroll-höhe von 100px dynamisch über das script.js zu der vorhandenen .main_h-klasse die sticky-klasse ergätzt. Diese sorgt für das Positionieren des Headers(sticky/fixieren/...)*/
.sticky {
  top: 0px;
  background-color: rgba(116, 137, 185, 0.8);
}


/*Nur in der mobilen Ansicht erscheint der toggle(Hamburger-Icon-Menu). Wenn man anklickt wird das navigation-menu auf/zu geklappt  und von der sichtbaren Anfangshöhe 70px wird die Höhe auf 400px erhöht*/
.open-nav {
  max-height: 400px !important;
  background-color: rgba(3, 73, 147, 0.998);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
 
}
.open-nav .mobile-toggle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.logo{
  float: left;
  display:block;
  width:488px;
  height:71px;
  margin-top: 8px;
  background: url(../bilder/logo/logo-gesamt.png) no-repeat;
}
.sticky .logo {
  float: left;
  display:block;
  width:99px;
  height:71px;
  margin-top: 8px;
  background: url(../bilder/logo/logo-e.png) no-repeat;
}

/*navigation ///*/

nav{
  float: right;
}

nav ul li{
  display: inline-block;
  margin-left: 25px;
  margin-top: 60px;
}

nav ul li a{
  color: #fff;
  font-size:16px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav ul li a:hover{
  color: rgba(255, 255, 255, 0.5);
}

nav ul li a#aktiv{
  color: #fff;
}


/* 
mobile-toggle
Generieren und Positionieren des Hamburger-Icons in der mobilen Ansicht
*/
.mobile-toggle {
  display: none;/*toggle wird für die Desktop-Ansicht ausgeblendet und in der mobilen-Ansicht mit display:inherit wieder sichtbar/eingebledet*/
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 35px;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
}

.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 2px;
  background: #fff;
  display: block;
}

/* Hero-Großbild-Bereich //////////*/
:root{
  --primary:hsla(207, 34%, 31%, 0.43);
  --secondary:hsla(207, 59%, 31%, 0.552);
}

.hero {
  position: relative;
  background:linear-gradient(180deg, var(--primary), var(--secondary)), 
  #355855 url(../bilder/higru/ueber-mich-hero.jpg) no-repeat center center scroll;
  
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;

  color: #fff;
  min-height: 500px;
  height: 75vh;
  letter-spacing: 2px;
}

.hero h1{
  position: absolute;
  color:rgba(255, 255, 255, 0.8);
  font-size: 3.5em;
  line-height: 1.2em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  top: 18%;
  left:9%;
}

.hero h1 span {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.1em;
  margin-top: 3%;
}


.unterseiten .hero{
  height: 60vh;
}

.unterseiten.leistungen .hero{
  background:linear-gradient(180deg, var(--primary), var(--secondary)), url(../bilder/higru/header-leistungen.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.unterseiten .hero h1{
    position: absolute;
    font-size: 3em;
    top: 35%;
    left: 10%;
}

.unterseiten.ueber-mich .hero{
  background:linear-gradient(180deg, var(--primary), var(--secondary)), url(../bilder/higru/ueber-mich-hero.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}


/*Liste header ////////////////*/
 

.outside li {
  list-style-type: disc;
  list-style-position: outside;
  padding: 1px;
  margin-left: 15px;
  font-size: 0.8em;
}


 /*mouse////////////*/
.mouse {
  display: block;
  margin: 0 auto;
  width: 26px;
  height: 46px;
  border-radius: 13px;
  border: 2px solid #f9b14d;
  position: absolute;
  bottom: 40px;
  position: absolute;
  left: 50%;
  margin-left: -26px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
}

.mouse span {
  display: block;
  margin: 6px auto;
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background: #f9b14d;
  border: 1px solid transparent;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

/* Animation der Mouse*/
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
}
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}


/* galerie /////////////////////////*/


ul#gallerylist{
  overflow: hidden;
  }

ul#gallerylist li{
  float: left;
  width: 25%;
  line-height: 0;
  }

ul#gallerylist li img{
  width: 100%;
  }



  .bilderbox{
    position: relative;
  }

  .bilderbox-overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0,0, 0.5) url(../bilder/logo/logo-e-transparent.png) no-repeat center center;
    opacity: 0;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .bilderbox-overlay:hover{
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
 

/* home ////////////////////////////*/

#insta {
  background: rgb(118, 127, 142)!important;
  }

#deinonlinecoaching .trx{
width: 100%;
margin-top: 35px;
}

#deinpersonaltraining {
  background: #f1f5f8;
  }

#deinpersonaltraining .trx{
background: #f1f5f8;
width: 100%;
margin-top: 35px;
}

#deinewettkampfvorbereitung .trx{
  width: 100%;
  margin-top: 35px;
}

img.trx{
  width: 96%;
  height: auto;
  margin: auto;
  -webkit-box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45); 
box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45);

 }

 img.man{
  width: 100%;
  height: auto;
  margin: auto;
  -webkit-box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45); 
box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45);
 }


 img.women{
  width: 100%;
  height: auto;
  margin: auto;
  -webkit-box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45); 
box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45);
 }

 img.start{
  width: 100%;
  height: auto;
  margin-top: 30px;
  -webkit-box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45); 
box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45);

 }

 .parallax-first {
  position: relative;
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
   #355875 url(../bilder/higru/home-parallax-first.jpg) no-repeat center center fixed;
  background-size: cover;
  padding:200px 0;
}
.unterseiten  .parallax-first {
  padding:200px 0;
}
.parallax-first h2{
  color:  rgba(255, 255, 255, 0.7);
  background:  rgba(255, 255, 255, 0.118);
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);  
 
  }


.parallax-second {
  position: relative;
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
   #355875 url(../bilder/higru/home-parallax-sceond.jpg) no-repeat center center fixed;
  background-size: cover;
  padding:200px 0;
}

.parallax-second h2{
  color:  rgba(255, 255, 255, 0.7);
  background:  rgba(255, 255, 255, 0.118);
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);  
 
  }

.parallax-third {
  position: relative;
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
   #355875 url(../bilder/higru/ueber-mich-parallax.jpg) no-repeat center center scroll;
  background-size: cover;
  padding:200px 0;
}

.parallax-third h2{
  color:  rgba(255, 255, 255, 0.7);
  background:  rgba(255, 255, 255, 0.118);
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);  
 
  }

/* leistungsboxen*/
section.leistungen{
  overflow: hidden;
}
.leistungsbox{
  background: rgb(251,176,59);
  background: linear-gradient(205deg, rgba(251,176,59,0.55) 10%, rgba(247,147,30,0.55) 55%, rgba(255,143,39,0.55) 80%); 
  display: inline-block;
  width: 33.33%;
  float: right;
  text-align: center;
  padding: 3.5em 0;
}

.leistungsbox img {
  background:#f9b14d;
  padding: 6px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.leistungsbox img:hover{
  background:#e78904;
  border-radius: 50% 50% 50% 0;
}

.leistungsbox h3{
  color: #fff;
  letter-spacing: 1px;
  font-size: 24px;
  text-transform: none;
}


a.button{
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  background: #e78904;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
 }

 a.button:hover{
  background: #f9b14d;
 }

/*leistungen ////////////////*/ 

.leistungen .parallax-second {
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
   #355875 url(../bilder/higru/leistungen-parallax.jpg) no-repeat center center scroll;
  background-size: cover;
  height: 50vh;
}

.coaching .innerbox{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
 
}

.coaching .halbe {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.coaching{
  background: #f6f6f6;
  padding: 5em 0 ;
}

.coaching h2{
  text-align: center;
  line-height: 0;
  padding-bottom: 20px;
 }

.coaching p{
 margin-top: 0;
}

.coaching .halbe{
  background: #fff;
  border:1px solid #eaeaea;
  padding: 0;
  text-align: center;
  padding: 25px;
}

#livestylecoaching{
padding-top: 120px;
margin-top: -120px;
}

#ernaehrung{
  padding-top: 120px;
  margin-top: -120px;
  }

#personaltraining{
  padding-top: 120px;
  margin-top: -120px;
  }

#onlinecoaching{
  padding-top: 120px;
  margin-top: -120px;
  }  

  .coaching .row:last-child{
    margin-top:  6%;
    }

.coaching .iconbox{
  margin: auto;
  padding-top: 20px;
}

.coaching .halbe img {
  background:#f9b14d;
  padding: 6px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coaching .halbe img:hover{
  background:#e78904;
  border-radius: 50% 50% 50% 0;
}

.leistungen .row {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}

.leistungen .viertel{
  background:#8ea3b5;
  border-right:1px solid rgba(255, 255, 255, 0.7);
  display: -webkit-flex; 
  display: -ms-flexbox; 
  display: flex;

}

.leistungen .viertel:last-child{
 border-right: none;
}

.leistungen .viertel p{
  color: #fff;
  text-align: center;
  font-size: 17px;
}

.viertel img{
  display: block;
  margin: auto;
  width: 100%;
  -webkit-box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45); 
box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45);
}

.leistungen strong{
  font-weight: 500;
  color: #717171;
}

.leistungen figcaption {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 500;
}

.unterseiten #kontakt {
position: absolute;
  right: 5%;
  bottom: 10%;
  background:hsla(35, 93%, 64%, 0.7);
  padding-bottom: 2em;
  text-align: center;
  padding: 0 3em 1em;
 }

 /* after-befor ///////////*/

#after-before {
background-color: #031077;
  
}

 /* ueber-mich///////////*/

.ueber-mich .parallax-second {
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
   #355875 url(../bilder/higru/ueber-mich-parallax.jpg) no-repeat center center scroll;
  background-size: cover;
  height: 50vh;
}

.unterseiten .qualifikationen{
  background: #8ea3b5;
}

.unterseiten .qualifikationen h3{
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
}
.unterseiten .qualifikationen img{
  width: 100%;
  margin-top: 5%;
  -webkit-box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45); 
box-shadow: 5px 5px 9px -3px rgba(0,0,0,0.45);
}

.unterseiten .qualifikationen ul li{
  color: #fff;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 40px;
}

.unterseiten .qualifikationen ul li i{
  background: #f9b14d;
  padding: 6px;
  border-radius: 50%;
  margin-right: 15px;
  -webkit-box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.45); 
  box-shadow: 4px 4px 7px -3px rgba(0,0,0,0.45);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
 
 
}
.unterseiten .qualifikationen ul li i:hover{
  background: #fff;
  color: #f9b14d;
}


 /* kontakt */

  /* links */
 .kontakt{
  background: #e4e4e4;
  padding: 5.5em 0;
 }

 .kontakt h3{
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  letter-spacing:1.5px;
  font-size: 26px ;
  text-align: center;
 }

 .kontakt .halbe.links{
  background: #fff;
  width: 50%;
  padding: 2em;
  margin-right: 0;
  margin-top: 1.5em;
 }

  /* rechts */
 .kontakt .halbe.rechts{
  background: #f9b14d;
  width: 50%;
  padding-bottom: 2em;
  text-align: center;
 }

 address{
  font-size: 20px ;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px;
 }

h5 span{
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5em;
 }

 a[href^="mailto:"]{
  background:url(../bilder/icons/185078_mail_email_icon.png) no-repeat left center;
  padding-left: 35px;
  padding-top: 2px;
  color: #32393f;
  text-transform: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  }

  a[href^="tel:"]{
    background:url(../bilder/icons/172517_phone_icon.png) no-repeat left center;
    padding-left: 35px;
    padding-top: 2px;
    color: #32393f;
    display: inline-block;
    margin-top: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }

  a:hover{
    color: rgba(255, 255, 255, 0.8);
 
  }

   /* social */ 
   #social{
    text-align: center;
    font-size: 2.5em;
   }


   ul#social li{
    display: inline;
    margin-left: 10px;
    }

    ul#social li a{
      margin: 20px 0;
      color: #32393f; 
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
  }
     
  ul#social li a:hover{
    color:rgb(255, 255, 255)
}

/* artikel ////////////////////////////*/

#deineveraenderung #artikel{
  padding-top: 50px;
  padding-bottom: 50px;
 }


/* social  artikel */ 

#deineveraenderung #social.info{
  text-align: left;
  font-size: 1.2em;
  font-weight: 200;
 }

 #deineveraenderung ul#social.info a.fa-brands.fa-instagram{
  font-size: 2em ;
 }
  
#deineveraenderung #social{
  text-align: left;
  font-size: 2.8em;
 }


#deineveraenderung ul#social li a:hover{
  color:rgb(232, 151, 2)
}  

/* footer ////////////////////////////*/

  footer{
    background-color: #32393f;
    padding-top: 20px;
  }

  ul#rechtliches{
    font-size: 16px;
    letter-spacing: 1px;
  } 

  ul#rechtliches{
    display: inline;
  }

  ul#rechtliches li{
    float: left;
    margin: 0 15px;
    padding-top: 30px;
  }

  ul#rechtliches li a{
    color:rgba(255, 255, 255, 0.6);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  ul#rechtliches li a:hover{
    color:rgba(255, 255, 255, 0.8);
  }

  footer ul#social li{
    font-size:0.8em ;
  }


  footer ul#social li a{
    margin: 20px 0;
    color:rgba(255, 255, 255, 0.5); 
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
   
  footer ul#social li a:hover{
    color:rgba(255, 255, 255, 0.8)
  }

 /* scroll-to-top //*/
 #scroll-to-top{
  position:fixed;
  bottom:20px;
  right:20px; 
  display:none;
  font-size: 2em;
  background:#f9b14d;
  color: #fff;
  padding: 7px 10px;
  border-radius: 50% 50% 15% 15%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
  #scroll-to-top:hover{
  background: #e78904;      
}


/* impressum ////////////////////////////*/

#impressum {
  margin-top: 150px;
}

#impressum .innerbox{
 max-width: 800px;
}

#impressum h1{
  color: #e78904;
}

#impressum h2{
  color: #858585;
  margin:25px 0 0;
  font-size: 20px;
}

#impressum p{
  color: #858585;
  margin-top: 5px;
  font-size: 18px;
}

#impressum a[href^="tel:"],
#impressum a[href^="mailto:"] {
  background: none;
  padding-left: 0;
  margin-top: 0;
}
#impressum a {
  color: #e78904;
}
#impressum a:hover {
  color: #f9b14d;
}

/* impressum ////////////////////////////*/

#datenschutz {
  margin-top: 150px;
}

#datenschutz .innerbox{
  max-width: 1234px;
}
#datenschutz h1{
  color: #e78904;
}

#datenschutz h2{
  color: #858585;
  margin:25px 0 0;
  font-size: 20px;
}

#datenschutz h3{
  color: #858585;
  margin:25px 0 0;
  font-size: 19px;
}

#datenschutz h4{
  color: #858585;
  margin:25px 0 0;
  font-size: 19px;
  font-style: inherit;
}

#datenschutz p{
  color: #858585;
  margin-top: 5px;
  font-size: 17px;
}

#datenschutz li{
  color: #858585;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 300;
letter-spacing: 1px;
line-height: 1.5em;
}

#datenschutz a {
  color: #e78904;
}
#datenschutz a:hover {
  color: #f9b14d;
}

/*CSS-Weichen/Breakpoints/Mediaqueries ////*/

@media only screen and (max-width: 1400px){

   /* Apple-Problematik für touchscreen-Geräte abfangen */
  .hero {
    position: relative;
    background:linear-gradient(180deg, var(--primary), var(--secondary)), 
    #355855 url(../bilder/higru/ueber-mich-hero.jpg) no-repeat center center scroll;
    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  
    color: #fff;
    min-height: 500px;
    height: 60vh;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 2.3em !important;
    top: 25%;
    left:7%;
  }

  
   .hero h1 span {
     font-size: 0.6em !important;
   }

  }


@media only screen and (max-width: 1080px){
}

@media only screen and (max-width: 1024px){
.logo{
  margin-top: 18px;
  width: 378px;
  height: 55px;
  background: url(../bilder/logo/logo-gesamt2.png) no-repeat;
}

.hero h1 {
 font-size: 2.5em !important;
}

.parallax-second h2 {
  font-size: 2em;
}
.parallax-first h2 {
    font-size: 2em;
}

.kontakt .halbe.links{
  padding: 1em;
 }
.kontakt h3 {
    text-align: left;
    font-size: 21px;
}
.kontakt h5 {
  font-size: 21px;
}

/* leistungen ///////////*/

.leistungen .viertel{
  width:50% ;
  padding: 15px 0;
}

.leistungen .viertel:nth-child(2){
  border-right: none;
 }
 
 .leistungen .viertel:first-child,
 .leistungen .viertel:nth-child(2){
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
 }
 
/* ueber mich ///////////*/

.unterseiten .qualifikationen ul li {
  font-size: 18px;
}

.unterseiten .qualifikationen img {
  margin-top: 17%;
}

 ul#gallerylist li{
  float: left;
  width:50%;
  }



}


@media only screen and (max-width: 980px){
.hero h1 {
  font-size: 1.8em !important;
}

.unterseiten .hero h1{
  font-size: 2.5em;
}

.leistungsbox h3 {
  font-size: 19px;
}

/* ueber mich ///////////*/

.unterseiten.ueber-mich .halbe{
  width: 100%;
  padding: 40px 0;
}

.unterseiten.ueber-mich .halbe:last-child{
  padding: 0px 0 40px 80px;
}
.unterseiten .qualifikationen ul li {
  font-size: 19px;
  line-height: 40px;
}

.unterseiten .qualifikationen img {
  width: 80%;
  display: block;
  margin: 0 auto ;
}

}

@media only screen and (max-width: 1080px){

  /* after-before ///////////*/
  .halbe img {
    width: 101%;
    margin-top: 1%;
    margin-bottom: 1%;
      }  
  
}


@media only screen and (max-width: 900px){
/*nav*/
nav ul.mobil li{
  margin-left: 11px;
}
nav ul.mobil li a{
  font-size: 16px;
  text-transform: capitalize;
}

.hero h1 {
  top: 40%
}

}


@media only screen and (max-width: 768px){

.logo {
  float: none;
}


	/*nav*/
	nav {
	  width: 100%;
	}

	nav ul {
	  padding-top: 25px;
		margin-bottom: 12px;
		float: left;
		text-align: center;
		width: 100%;
	}
	nav ul li {
		width: 100%;
		padding: 17px 0 7px;
		margin: 0;
	}
  nav ul.mobil li a{
    font-size: 16px;
    text-transform: uppercase;
  }

  .mobile-toggle {
    display:inherit;
    /*toggle wird in der mobilen Ansicht durch display:block wieder sichtbar gamacht. Wurde in der Desktop-Ansicht erst positioniert und auch gleich ausgeblendet*/
  }

  .start .dreidrittel {
    width: 100%;
    padding: 30px 15px;
  }
  
  .start .zweidrittel{
    width: 100%;
    padding: 0px 15px;
  }
  .start .drittel{
    width: 100%;
    padding-bottom: 50px ;
    padding-top: 0;
  }
  img.trx {
    display: block;
    margin: auto;
    width: 100%;
    -webkit-box-shadow: inherit;
    box-shadow:inherit;
  }

.parallax-first{
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
  #355875 url(../bilder/higru/home-parallax-first.jpg) no-repeat center center scroll;
  padding: 120px 0; 
  }

.parallax-first h2{
  font-size: 2em;
  padding: 3px;
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-35%,-45%)
  }
  
.parallax-second {
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
  #355875 url(../bilder/higru/home-parallax-sceond.jpg) no-repeat center center scroll;
  background-size: cover;
  padding:120px 0;
}
  
.leistungsbox{
  width: 100%;
  padding: 1.2em;
}

/* kontakt ///////////*/

.unterseiten #kontakt {
  position: absolute;
  right: 3%;
  bottom: 8%;
  padding: 0.2em;
}

address {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.kontakt h3 {
  font-size: 18px;
}
.kontakt h5 {
  font-size: 18px;
}


#leistungen .halbe{
  width: 100%;
}

.unterseiten .halbe.eins img{
  width: 80%;
  display:block;
  margin:0 auto 30px;
  
}
  
.unterseiten .halbe.eins{
  width: 100%;
  padding: 30px 15px;
}
.unterseiten .halbe.eins:first-child{
 margin-right: 0;
}

.coaching .halbe{
  width:100% ;
  margin-top:0px;
}
  
.coaching .halbe:first-child{
 margin-bottom: 180px;
 margin-right: 0;
}

/* ueber mich ///////////*/

.unterseiten.ueber-mich .drittel{
  width: 100%;
  padding-bottom: 30px;
}

.unterseiten.ueber-mich .drittel img{
  width: 80%;
  display: block;
  margin: auto;
  padding-bottom: 0;
}

.unterseiten.ueber-mich .zweidrittel{
  width: 100%;
  padding: 0 20px 15px;
}

.unterseiten.ueber-mich .halbe:last-child {
  padding: 0px 0 40px 40px;
}

}


@media only screen and (max-width: 450px){

/* after-before ///////////*/
.halbe {
  width: 100%;
  margin-top: 1%;
  margin-bottom: 1%;
    }  
/* ende after-before ///////////*/  


.hero h1 {
  top: 45%;
  font-size: 1.6em !important;
}


.logo{
  margin-top: 8px;
  width: 250px;
  height: 76px;
  background: url(../bilder/logo/logo-gesamt3.png) no-repeat;
}

.start .dreidrittel {
  width: 100%;
  padding: 30px 15px;
}

.start .zweidrittel{
  width: 100%;
  padding: 0px 15px;
}
.start .drittel{
  width: 100%;
  padding-bottom: 50px ;
  padding-top: 0;
}
img.trx {
  display: block;
  margin: auto;
  width: 90%;
  -webkit-box-shadow: inherit;
  box-shadow:inherit;
}

.kontakt{
  padding: 2.5em 0 4em;
}
.kontakt .halbe.links{
  width: 100%;
  padding: 1em;
  margin-bottom: 2.5em;
}
.kontakt .halbe.rechts{
  width: 100%;
  padding: 1em;
}

#scroll-to-top{
  position:fixed;
  bottom:60px;
  right:20px; 
}

/* leistungen ///////////*/

.leistungen .viertel{
  width:100% ;
  border-bottom:1px solid rgba(255, 255, 255, 0.7);
  border-right: none;
}

/* ueber mich ///////////*/

.unterseiten.ueber-mich .halbe:last-child{
  padding: 0px 0 40px 10px;
}
.unterseiten .qualifikationen ul li {
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 0;
}

.unterseiten .qualifikationen img {
  width: 80%;
  display: block;
  margin: 0 auto ;
}

.parallax-second h2{
  font-size: 1.5em;
  }

.parallax-first h2{
  font-size: 1.5em;
  padding: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
  }


  /* insta ///////////*/

  #insta .halbe {
    width: 100%; 
}


@media only screen and (max-width: 375px){

  h3{
    font-size: 22px;
  }

  .unterseiten #kontakt {
    position: absolute;
    right: 1%;
    bottom: 5%;
  } 


.hero h1 {
    font-size: 1.7em !important;
    top:38%;
    left:10%;
}

.unterseiten .hero h1{
  font-size: 2em;
}

.hero {
  position: relative;
    background:linear-gradient(180deg, var(--primary), var(--secondary)), 
    #355855 url(../bilder/higru/ueber-mich-hero.jpg) no-repeat center center scroll;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
}

h1{
  font-size: 1.3em;
}

.leistungsbox h3 {
  font-size: 17px;
}
.leistungsbox{
  width: 100%;
}

.kontakt .halbe.links{
  padding: 0.8em;
}
.halbe.halbe.rechts{
  width: 100%;
  padding: 0.5em;
}

.parallax-first h2{
  font-size: 1.2em;
  padding: 8px;
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-40%,-45%);
}
.parallax-first{
  padding: 120px 0; 
}
.parallax-second {
  background:linear-gradient(180deg, var(--primary), var(--secondary)),
   #355875 url(../bilder/higru/home-parallax-sceond.jpg) no-repeat center center scroll;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  padding:100px 0;
}

ul#rechtliches li {
  float: left;
  margin-right: 5px;
  font-size: 14px;
}


/* leistungen ///////////*/

#leistungen .halbe{
  width: 100%;
}

.unterseiten .halbe.eins img{
  width: 100%;
}

.unterseiten .halbe.eins{
  width: 100%;
  padding: 30px 15px;
}
.unterseiten .halbe.eins:first-child{
 margin-right: 0;
}


ul#gallerylist li{
  float: left;
  width:100%;
  }


  }




@media only screen and (max-width: 320px){


.unterseiten .kontakt h5 {
  font-size: 16px;
  margin: 10px 0 0;
}

/* ueber mich ///////////*/

.unterseiten.ueber-mich .halbe:last-child{
  padding: 0px 0 40px 5px;
}
.unterseiten .qualifikationen ul li {
  font-size: 13px;
  line-height: 35px;
  letter-spacing: 0;
}


}

/* Font Ubuntu */
/* ubuntu-300 - latin */
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/ubuntu-v20-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/ubuntu-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/ubuntu-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/ubuntu-v20-latin-300.woff') format('woff'), /* Modern Browsers */
         url('../fonts/ubuntu-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/ubuntu-v20-latin-300.svg#Ubuntu') format('svg'); /* Legacy iOS */
  }
  
  /* ubuntu-regular - latin */
  @font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v20-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/ubuntu-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/ubuntu-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/ubuntu-v20-latin-regular.svg#Ubuntu') format('svg'); /* Legacy iOS */
  }
  
  /* ubuntu-500 - latin */
  @font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/ubuntu-v20-latin-500.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/ubuntu-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/ubuntu-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/ubuntu-v20-latin-500.woff') format('woff'), /* Modern Browsers */
         url('../fonts/ubuntu-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/ubuntu-v20-latin-500.svg#Ubuntu') format('svg'); /* Legacy iOS */
  }
  
  /* ubuntu-700 - latin */
  @font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/ubuntu-v20-latin-700.woff') format('woff'), /* Modern Browsers */
         url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg'); /* Legacy iOS */
  }
  




}









