/* latin-ext */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local('Raleway'), local('Raleway-Regular'), url(../fonts/Raleway.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local('Raleway'), local('Raleway-Regular'), url(../fonts/Raleway2.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }


/*GENERAL*/
html {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    margin-top: 5.2em;
    padding: 0;
    height: 100%;
}

a {
    color: #5b2427;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

::-webkit-scrollbar
{
  width: 12px;  /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track
{
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb
{
  background: rgba(27, 149, 173, 1);
}

/*HEADER*/
header {
    position: fixed;
    top: 0;
    left: 0;
    height: 5em;
    width: 100%;
    background-color: #fff;
    border-bottom: .2em solid #5b2427;
    transition: height .75s ease;
    z-index: 1000;
}

header.shrink {
    height: 3em;
}

header.shrink nav ul li {
    font-size: 70%;
}

header #toggle {
    display: none;
    position: absolute;
    top: .5em;
    right: .5em;
    height: 4em;
    width: 4em;
    z-index: 1002;
}

header #toggle span {
    background-color: #5b2427;
    width: 100%;
    height: 0.8em;
    position: absolute;
    left: 0;
    transition: all .75s ease;
}

header #toggle.click #t1 {
    transform: rotateZ(45deg);
    top: 1.6em;
}

header #toggle.click #t3 {
    transform: rotateZ(-45deg);
    top: 1.6em;
}

header #toggle.click #t2 {
    left: 4.5em;
}

header #toggle #t2 {
    top: 1.6em;
} 


header #toggle #t3 {
    top: 3.2em;
} 

header .logo {
    position: absolute;
    height: 100%;
    top: 0;
    left: 1em;
}

header .logo img {
    height: 100%;
    image-rendering: -moz-crisp-edges;         
    image-rendering:   -o-crisp-edges;         
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

header .tel {
    font-size: 9pt;
    position: absolute;
    top: 42.5%;
    left: 22em;
    color: #5b2427;
}

header nav {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

header nav ul li {
    display: inline-block;
    line-height: 4.3em;
    font-size: 120%;
    padding: 0 1em;
    transition: all .75s ease;
}

header nav ul li a {
    color: #5b2427;
    text-decoration: none;
    padding: .2em 0;
    border-bottom: .2em solid transparent;
    transition: border .75s ease;
}

header nav ul li a:hover {
    border-bottom-color: #5b2427;
    text-decoration: none;
}

/*SECTIONS*/
.section {
    min-height: 100%;
}

.section .header {
    position: relative;
    height: 20em;
    text-align: center;
}

.section .header .image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
}

.section .header .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    background-color: #5b2427;
}

.section .header .slogan {
    position: absolute;
    top: 10%;
    left: 1em;
    right: 1em;
    color: #fff;
    z-index: 10;
    text-shadow: 2px 2px #000;
}

.section .title {
    margin-top: 4em;
    text-align: center;
}

.section .h2-underscore {
    height: .3em;
    width: 4em;
    background-color: #000;
    margin: 0 auto;
    margin-top: -.5em;
}

.section article {
    max-width: 60em;
    margin: 3em auto;
    margin-top: 3em;
    text-align: justify;
    line-height: 1.5em;
    overflow:hidden;
    box-sizing: border-box;
    padding: 2em;
}

.section article > p {
    width: 100%;
    overflow: hidden;
    padding-top: 1em;
}

.section article > ul {
    text-align: left;
    padding-top: 2em;
    padding-bottom: 2em; 
    background-color: #BBAFB0;
    color: #5b2427;
    border: 1px solid #5b2427;
}

.section article .ul-left {
    width: 40%;
    float: left;
    margin: 0;
    padding-left: 2em;
    padding-right: 2em;
}

.section article .ul-right {
    width: 40%;
    float: right;
    margin: 0;
    padding-right: 2em;
}

.section article .content-left {
    width: 45%;
    float: left;
    margin: 0;
    padding: 0;
}

.section article .content-right {
    width: 45%;
    float: right;
    margin: 0;
    padding: 0;
}

#start .header .image{
    background-attachment: fixed;
    background-position-y: bottom;
    background-image: url("../img/bg-header-1.jpg");
}

#leistungen .header .image {
    background-image: url("../img/bg-header-2.jpg");
}

#kontakt .header .image {
    background-image: url("../img/bg-header-4.jpg");
    background-position-y: top;
}

#team .header .image {
    background-image: url("../img/intro-bg2.jpg");
}

#podologie .header .image {
    background-image: url("../img/intro-bg2.jpg");
}

#anfahrt .header .image {
    background-image: url("../img/bg-header-anfahrt.jpg");
}


#kontakt article{
    text-align: center;
}

#kontakt iframe,
#anfahrt iframe {
    width: 100%;
    height: 25em;
    border:4px solid #5b2427;
}

#kontakt input[type="text"],
#kontakt input[type="password"],
#kontakt input[type="email"],
#kontakt input[type="tel"],
#kontakt textarea {
    padding: .2em;
    font-size: 1em;
    font-family: 'Raleway', sans-serif;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: .5em auto;
    border: none;
    border-bottom: .1em solid #5b2427;
    width: 50%;
}

#kontakt textarea {
    
    border: 1px solid #5b2427;
    height: 15em;
}

#kontakt .control-label {
    font-weight: bold;
    color: #5b2427;
}

#kontakt .btn {
    padding: .5em 1em;
    border: 1px solid #5b2427;
    background-color: #BBAFB0;
    color: #5b2427;
    outline: none;
    cursor: pointer;
}

#kontakt .btn:hover {
    background-color: #effdfe;
}

#kontakt .form-group {
    padding: .5em;
}

#kontakt #contact-form iframe {
    width: auto;
    height: auto;
    border: none;
    margin: auto;
}

#kontakt #contact-form .g-recaptcha > div {
    margin: auto;
}

#kontakt #contact-form {
    margin-top: 2em;
}

/*FOOTER*/
footer {
    width: 100%;
    text-align: center;
    font-size: 8pt;
    padding: 2em 0;
    border-top: .2em solid #5b2427;
}

/*MOBILE*/

@media screen and (max-width: 920px) {
    header {
        height: auto;
        max-height: 100%;
    }

    header.shrink {
        height: auto;
    }

    header.shrink nav ul li {
        font-size: 120%;
    }

    header #toggle {
        display: block;
        cursor: pointer;
    }

    header .logo {
        display: block;
        position: relative;
        height: 5em;
    }

    header .tel {
        top: 3.4em;
        left: 0;
        right: 0;
        text-align: center;
    }

    header nav {
        position: relative;
        display: none;
        height: auto;
        text-align: center;
    }

    header nav ul {
        height: auto;
    }

    header nav ul li {
        display: block;
    }

    .section article .header {
        height: 10em;
    }

    #start article .header {
        height: 17em;
    }

    .section article .content-left,
    .section article .content-right
    {
        float: none;
        width: inherit;
        margin: inherit;
    }

    .section article .ul-left,
    .section article .ul-right {
        float: none;
        width: inherit;
        margin: inherit;
        padding: inherit;
    }

    #kontakt input[type="text"],
    #kontakt input[type="password"],
    #kontakt input[type="email"],
    #kontakt input[type="tel"],
    #kontakt textarea {
        width: 100%;
    }
}

@media screen and (max-width: 490px) {
    header .tel {
        display: none;
    }
}

.button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 150px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.button:disabled{
    background-color: lightgray;
}

