/* ==========================================================================
   Main Layout Styles
   ========================================================================== */
.page { 
    position: relative; 
    text-align: center; 
    display: block; 
    min-height: 100%; 
    margin: 0 auto !important;  
    text-align: left; 
    background: #fff; 
}

.page-center { 
    position: relative; 
    width: 100%; 
    margin: 0 auto; 
    box-sizing: border-box;  
    max-width: 1200px; 
    text-align: left; 
    padding: 2vh calc(10px + 2vw);  
}

.content { 
    font-size: 0.9em;  
}

/* Header */
.header { 
    position: relative; 
    background: url(../images/physiotherapie-oberlausitz.jpg) no-repeat center center; 
    background-size: cover;  
    box-shadow: inset 0 -20px 40px -20px rgba(0,0,0,0.5);
}
.header:before { 
    content: " "; 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    left: 0; 
    background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.7) 50%); 
    z-index: 0; 
}

.logo { 
    position: relative; 
    float: right;  
    max-width: 30vw;  
    box-sizing: border-box; 
    display: inline-block; 
}
.logo img { 
    width: 100%; 
}

.scrolleddown .logo { 
    max-width: 150px; 
}

@media only screen and (max-width: 600px) {
  .header .page-center { text-align: center; }
  .logo { 
      width: 80%; 
      max-width: 300px; 
      float: none; 
      margin: 0 auto; 
      background: rgba(255,255,255,0.5); 
      box-shadow: 0 0 20px #fff; 
  }
}

/* Contact Bar */
.contactrow	{ 
    background: #f08019; 
    color: #fff; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}
.contactrow .page-center { 
    padding: 5px calc(10px + 2vw); 
}
.scrolleddown .contactrow  { 
    position: fixed; 
    width: 100%; 
    z-index: 1000; 
}

/* Footer */
.footer { 
    background: #174f99; 
    color: #fff; 
    font-size: 85%; 
    line-height: 130%; 
}
.footer * { 
    color: #fff !important; 
}