@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 */
}

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

body {font-family: 'Roboto'; overflow-x: hidden!important;}
p {font-size: 15px; font-weight: 300; line-height: 21px; margin-bottom: 15px;}
a {color: #000; text-decoration: none; cursor: pointer;}
h1 {font-size: 40px; line-height: 50px; margin-bottom: 30px; color: #fff; text-shadow: 0 0 30px #000;}
h2 {font-size: 30px; line-height: 45px; font-weight: 600; color: #6AB744; margin: 0 0 20px 60px; text-transform: uppercase; position: relative;}
h3 {font-size: 20px; margin-bottom: 30px;}
h4 {font-size: 16px;}
li {font-size: 16px; line-height: 22px; margin-bottom: 10px; list-style-image: url(../images/li.png); margin-left: 20px; color: #fff;}
strong {font-weight: 600;}


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

html {scroll-behavior: smooth;}
.content {display: flex; width: 80%; margin-left: 10%; justify-content: space-between;}
.flex {display: flex; justify-content: space-between;}
.col1 {width: 60%; margin-left: 20%;}
.col2 {width: 45%; text-align: left; position: relative;} 
.col3 {width: 30%; text-align: center;}

.btn {background-color: #6AB744; color: #fff; padding: 15px 50px; transition: 0.5s; border-radius: 10px}
.btn-g {background-color: #707070; color: #fff; padding: 15px 50px; transition: 0.5s; border-radius: 10px}
.btn:hover {background-color: #6d6d6d;}
.btn-g:hover {background-color: #434343;}
::-moz-selection {background: #fff600; color: #000;}
::selection {background: #fff600; color: #000;}


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

.logo {position: fixed; width: 300px; height: auto; z-index: 9999; transform: translate(-50%, -50%); top: 70px; left: 50%;}
nav {position: fixed; background: #fff; width: 100%; z-index: 101; top: 0; text-align: center; padding: 30px 0; z-index: 100;}
nav ul li {display: inline-block; margin: 0 2%; text-transform: uppercase;}
nav ul li:nth-of-type(2) {margin-right: 400px;}
nav ul li a {text-decoration: none; font-size: 16px; color: #6AB744; font-weight: 600;}
nav ul li a:hover {color: #707070;}

.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: #9CD911; padding: 16px 21px 21px 19px; border-radius: 20px 0 0 0;}
.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;}
.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: 9998; width: 100%; height: 100vh; background: #9CD911; display: table; visibility: hidden; transition: all .4s ease-in-out; opacity: 0;}
.full-screen-nav ul {text-align: center; display: table-cell; vertical-align: middle; width: 100%;}
.full-screen-nav ul li {list-style: none;}
.full-screen-nav ul li a {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 img {position: fixed; background-color: #9CD911; width: 40px; z-index: 999; left: 0; transition: 0.5s; border-radius: 0 5px 5px 0;}
aside img:hover {background-color: #6d6d6d;}
.phone {top: 300px;}
.mail {top: 370px;}


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

.subnav {position: fixed; bottom: 0; color: #fff; z-index: 999; transition: 0.5s; width: 100%; text-align: right;}
.subnav a {font-family: 'Roboto'; color: #fff; padding: 8px 15px; font-size: 13px; background-color: #6AB744; margin-left: 20px; line-height: 23px; border-radius: 10px 10px 0 0;}
.subnav a:nth-of-type(2) {margin-right: 5%;}
.subnav a:hover {background-color: #008EB0;}


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

header {background: url("../images/header.jpg") no-repeat; height: 100vh; width: 100%; background-size: cover; background-attachment: fixed; background-position: center; position: relative;}
.welle {width: 100%; height: auto; left: 0; bottom: 0; position: absolute;}

#stoerer {position: absolute; left: 10%; bottom: 30vh;}


/*-----------PRAXIS-----------*/

#praxis {padding: 120px 0; text-align: center; background: url(../images/background.png) no-repeat; width: 100%; height: auto; background-position: bottom center; background-size: contain;}
#praxis h2::before {content: url(../images/praxis-icon.png); position: absolute; left: -60px;}

#praxis .content {align-items: center;}
#praxis img {width: 50%; height: 100%; min-width: 350px; border-radius: 20px;}


/*-----------THERAPIE-----------*/

#therapie {padding: 120px 0; background-color: #6AB744;}
#therapie h2, #therapie h3, #therapie p {color: #fff;}
#therapie h2::before {content: url(../images/therapie-icon.png); position: absolute; left: -60px;}

#therapie .col1 {margin-left: 0;}


/*-----------PHYSIOTHERAPIE-----------*/

#physio {padding: 100px 0; position: relative; background: url(../images/background.png) no-repeat; width: 100%; height: auto; background-position: bottom center; background-size: contain;}
#physio h2 {text-transform: none; margin-left: 0; line-height: 30px;}

.pfote {width: 750px; height: auto; top: -150px; right: -50px; z-index: 9; position: absolute;}


/*-----------METHODEN-----------*/

#methoden {padding: 150px 0; background-color: #6AB744}
#methoden h2, #methoden h3, #methoden p {color: #fff;}
#methoden h2 {text-transform: none; margin-left: 0;}

#methoden .content {align-items: center;}

.slick {background-color: #fff; border-radius: 20px; position: relative;}
.slick p {color: #000;}
.slick .text {padding: 30px 10% 20px;}
.slick .bild {width: 100%; height: 400px; object-fit: cover; object-position: center; border-radius: 20px 20px 0 0;}
.slick h4 {font-size: 20px; color: #fff; position: absolute; top: 300px; background: rgba(156,217,17,0.9); padding: 10px 20px; border-radius: 0 10px 10px 0;}


/*-----------TEAM-----------*/

#team {padding: 120px 0; background: url(../images/background.png) no-repeat; width: 100%; height: auto; background-position: bottom center; background-size: contain;}
#team h2 {text-align: center; margin-bottom: 100px;}
#team h2::before {content: url(../images/team-icon.png); position: absolute; margin-left: -60px;}

#team .col2:nth-of-type(1) .pfote-icon {position: absolute; width: 70px; height: auto; top: -35px; left: 10px; transform: rotate(-45deg);}

#team .col2:nth-of-type(2) .pfote-icon {position: absolute; width: 70px; height: auto; top: -35px; right: 10px; transform: rotate(45deg);}

.arbeiter {width: 80%; margin-left: 9%; object-fit: cover; border: 5px solid #6AB744; border-radius: 30px 30px 0 0;}
.textbox {background-color: #6AB744; padding: 30px 40px 20px; border-radius: 20px; margin-top: -8px;}
.textbox h3 {color: #fff; margin-bottom: 5px;}
.textbox p {font-size: 18px; color: #fff;}


/*-----------IMPRESSUM-----------*/

#impressum {padding: 200px 0 100px;}
#impressum h2::before {content: url(../images/team-icon.png); position: absolute; left: -60px;}
#impressum h3 {margin-bottom: 5px; color: #6AB744}


/*-----------PUFFER-----------*/

.puffer1 {background: url("../images/hund-wassertherapie.jpg") no-repeat; height: 700px; width: 100%; background-size: cover; background-attachment: fixed; background-position: center top; position: relative;}

.puffer2 {background: url("../images/wassertherapie.jpg") no-repeat; height: 700px; width: 100%; background-size: cover; background-attachment: fixed; background-position: center; position: relative;}

.puffer3 {background: url("../images/hundetherapie.jpg") no-repeat; height: 700px; width: 100%; background-size: cover; background-attachment: fixed; background-position: center; position: relative;}


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

footer {padding: 120px 0 200px; background-color: #6AB744; position: relative;}
footer p, footer h2, footer h3, footer a {color: #fff;}
footer a {text-decoration: underline;}
footer h2::before {content: url(../images/kontakt-icon.png); position: absolute; left: -60px;}

.kontaktformular {width: 100%; height: 600px;}
.hund {width: 250px; height: auto; position: absolute; bottom: 0; left: 15%;}


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

@media screen and (max-width: 1400px) {
    header, .puffer1, .puffer2, .puffer3 {background-attachment: scroll;}
    #therapie .col1 {width: 100%;}
    .pfote {width: 100%; height: auto; top: 0; right: -50px; z-index: 9; position: relative;}

@media screen and (max-width: 900px) {
    h1 {font-size: 25px; line-height: 30px;}
    .logo {position: absolute;}
    header {height: 75vh;}
    nav {background: none; box-shadow: 0 0 0;}
    nav ul{display: none;}
    .navi {display: block;}
}

@media screen and (max-width: 700px) {
    
    #stoerer {bottom: 15vh; padding-right: 5%}
    .content, .flex {flex-direction: column;}
    .col2, .col3 {width: 100%;}
    
    #praxis img {width: 100%; min-width: 0;}
    
    .col2:nth-of-type(1) {margin-bottom: 50px;}
    .slick-slider {width: 80%; margin-left: 10%;}
    .slick h4 {position: relative;}
    .slick .bild {height: 200px;}
    
    .pfote {position: relative; width: 100%; top: 50px; right: 0;}
    .hund {display: none;}
    
    .puffer1, .puffer2, .puffer3 {height: 400px;}
}

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