@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    color:#000000;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    body {
        font-size:14px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    body {
        font-size:13px;
    }
}

@media only screen and (max-width:479px) {
    body {
        font-size:12px;
    }
}

/******************************************************************************/
/* Header                                                                     */
/******************************************************************************/

header {
    width:100%;
    height:180px;
    box-sizing:border-box;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    header {
        height:150px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    header {
        height:130px;
    }
}

@media only screen and (max-width:479px) {
    header {
        height:120px;
    }
}

header > div {
    width:100%;
    height:100%;
}

header > div > div {
    max-width:1200px;
    margin:0px auto 0px auto;
}

header > div > div > nav {
    float:left;
    width:calc(50% - 80px);
    margin-top:165px;
    box-sizing:border-box;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    header > div > div > nav {
        width:calc(50% - 69px);
        margin-top:135px;
        padding-left:5px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    header > div > div > nav {
        width:calc(50% - 61px);
        margin-top:50px;
        padding-left:5px;
    }
}

@media only screen and (max-width:479px) {
    header > div > div > nav {
        width:calc(50% - 58px);
        margin-top:65px;
        padding-left:5px;
    }
}

header > div > div > nav > div {
    display:none;
    width:18px;
    height:24px;
    font-size:24px;
    color:#4B4A4D;
    cursor:pointer;
    overflow:hidden;
}

header > div > div > nav > div > label {
    display:block;
    width:100%;
    height:100%;
}

header > div > div > nav > input#Menu {
    display:none;
}

header > div > div > nav > input#Menu:checked + ul {
    display:block;
}

@media only screen and (min-width:768px) {
    header > div > div > nav > ul > li {
        float:left;
        margin-right:20px;
        font-size:0.9em;
        color:#4B4A4D;
        text-transform:uppercase;
        letter-spacing:0.2em;
    }

    header > div > div > nav > ul > li:last-of-type {
        margin-right:0px;
    }

    header > div > div > nav > ul > li.Active {
        color:#E41C44;
    }

    header > div > div > nav > ul > li > a {
        display:block;
        color:#4B4A4D;
        text-decoration:none;
    }

    header > div > div > nav > ul > li.Active > a {
        color:#E41C44;
    }
}

@media only screen and (max-width:767px) {
    header > div > div > nav > div {
        display:block;
    }

    header > div > div > nav > ul {
        display:none;
        position:fixed;
        width:calc(100% - 10px);
        top:100px;
        left:0px;
        margin:5px;
        padding-bottom:1px;
        background-color:#FFFFFF;
        z-index:200;
    }

    header > div > div > nav > ul > li {
        margin-top:-1px;
        border:1px solid #4B4A4D;
    }

    header > div > div > nav > ul > li > a {
        display:block;
        padding:15px;
        font-size:1.6em;
        color:#4B4A4D;
        text-decoration:none;
        background-color:#FFFFFF;
    }

    header > div > div > nav > ul > li > a:hover {
        color:#FFFFFF;
        background-color:#4B4A4D;
    }
}

header > div > div > h1 {
    float:left;
    width:160px;
    height:151px;
    margin-top:29px;
    font-size:0em;
    text-indent:-8000px;
    background-image:url(/source/sandraschaefer_logo.png);
    background-repeat:no-repeat;
    background-position:center top;
    background-size:contain;
}

header > div > div > h1 > a {
    display:block;
    width:100%;
    height:100%;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    header > div > div > h1 {
        width:138px;
        height:130px;
        margin-top:20px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    header > div > div > h1 {
        width:122px;
        height:115px;
        margin-top:15px;
    }
}

@media only screen and (max-width:479px) {
    header > div > div > h1 {
        width:116px;
        height:109px;
        margin-top:31px;
    }
}

header > div > div > div {
    float:right;
    width:calc(50% - 80px);
    margin-top:165px;
    box-sizing:border-box;
}

header > div > div > div > p {
    font-size:0.9em;
    line-height:1.2em;
    text-transform:uppercase;
    color:#4B4A4D;
    text-align:right;
    letter-spacing:0.2em;
}

header > div > div > div > p > a {
    color:#4B4A4D;
    text-decoration:none;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    header > div > div > div {
        width:calc(50% - 69px);
        margin-top:135px;
        padding-right:5px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    header > div > div > div {
        width:calc(50% - 61px);
        margin-top:50px;
        padding-right:5px;
    }
}

@media only screen and (max-width:479px) {
    header > div > div > div {
        position:absolute;
        float:none;
        width:100%;
        margin-top:5px;
        padding-right:5px;
    }
}

/******************************************************************************/
/* Main                                                                       */
/******************************************************************************/

section {
    max-width:1200px;
    margin:0px auto 0px auto;
    padding:40px 0px 70px 0px;
}

section > div > div > div.Start {
    margin:150px 0px 100px 0px;
}

section > div > div > div.Start > div {
    float:left;
    width:calc(33.33% - 20px);
    margin-right:30px;
    box-sizing:border-box;
}

section > div > div > div.Start > div:last-of-type {
    margin-right:0px;
}

section > div > div > div.Start > div > img {
    width:100%;
}

@media only screen and (min-width:768px) and (max-width:999px) {
}

@media only screen and (min-width:480px) and (max-width:767px) {
    section > div > div > div.Start {
        margin:0px 0px 40px 0px;
    }

    section > div > div > div.Start > div {
        float:none !important;
        width:100% !important;
        margin-right:0px!important;
        padding:0px 5px 0px 5px;
    }
}

@media only screen and (max-width:479px) {
    section > div > div > div.Start {
        margin:0px 0px 40px 0px;
    }

    section > div > div > div.Start > div {
        float:none !important;
        width:100% !important;
        margin-right:0px!important;
        padding:0px 5px 0px 5px;
    }
}

section > div > div > div.AboutMe {
    margin:80px 0px 40px 0px;
}

section > div > div > div.AboutMe > div {
    float:left;
    box-sizing:border-box;
}

section > div > div > div.AboutMe > div:first-of-type {
    width:calc(50% - 80px);
    padding-right:140px;
}

section > div > div > div.AboutMe > div:first-of-type > img {
    width:100%;
    margin-top:10px;
}

section > div > div > div.AboutMe > div:last-of-type {
    width:calc(50% + 80px);
}

@media only screen and (min-width:768px) and (max-width:999px) {
    section > div > div > div.AboutMe > div:first-of-type {
        width:calc(50% - 69px);
        padding-right:100px;
    }

    section > div > div > div.AboutMe > div:last-of-type {
        width:calc(50% + 69px);
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    section > div > div > div.AboutMe {
        margin-top:0px!important;
    }

    section > div > div > div.AboutMe > div {
        float:none !important;
        width:100% !important;
        padding:0px 5px 10px 5px !important;
    }

    section > div > div > div.AboutMe > div:first-of-type > img {
        width:100%;
        max-width:100%;
    }
}

@media only screen and (max-width:479px) {
    section > div > div > div.AboutMe {
        margin-top:0px!important;
    }

    section > div > div > div.AboutMe > div {
        float:none !important;
        width:100% !important;
        padding:0px 5px 10px 5px !important;
    }

    section > div > div > div.AboutMe > div:first-of-type > img {
        width:100%;
        max-width:100%;
    }
}

section > div > div > div.PerformanceBox1, section > div > div > div.PerformanceBox2 {
    position:relative;
    padding:75px 0px 65px 0px;
}

section > div > div > div.PerformanceBox1 {
    background-color:#D5DDE3;
}

section > div > div > div.PerformanceBox1 > div, section > div > div > div.PerformanceBox2 > div {
    position:absolute;
    width:0px;
    height:0px;
    top:0px;
    left:calc(50% - 12.5px);
    border-style:solid;
    border-width:25px 25px 0px 25px;
    border-color:#FFFFFF transparent transparent transparent;
}

section > div > div > div.PerformanceBox2 > div {
    border-color:#D5DDE3 transparent transparent transparent;
}

section h2 {
    margin:0px 220px 1em 220px;
    font-size:1.4em;
    text-transform:uppercase;
    line-height:1.6em;
    letter-spacing:0.2em;
    color:#4B4A4D;
}

section > div > div > div.Start h2 {
    margin:35px 0px 1em 0px;
    font-size:1.2em;
}

section h3 {
    margin:0px 220px 0px 220px;
    line-height:2em;
    color:#4B4A4D;
    font-weight:bold;
}

section p {
    margin:0px 220px 1em 220px;
    line-height:2em;
    color:#4B4A4D;
}

section > div > div > div.Start p {
    margin:0px;
    text-transform:uppercase;
}

section > div > div > div.AboutMe p {
    margin:0px 20px 1em 0px;
}

section p > strong {
    font-weight:bold;
}

section p a {
    color:#4B4A4D;
    text-decoration:none;
}

section ul {
    margin:0px 220px 1em 235px;
    list-style-type:disc;
}

section ul > li {
    line-height:2em;
    color:#4B4A4D;
}

section .DistanceTop {
    margin-top:80px;
}

section form > fieldset {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    margin:0px 220px 1em 220px;
}

section form > fieldset div.Form {
    flex-basis:24%;
    margin:0px 0px 15px 0px;
}

section form > fieldset div.Form.Form100 {
    flex-basis:100%;
}

section form > fieldset div.Form > div {
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:flex-start;
}

section form > fieldset div.Form > label {
    color:#4B4A4D;
    font-weight:bold;
}

section form > fieldset div.Form > label.Error {
    color:#FF0000;
}

section form > fieldset div.Form > div > label {
    width:auto;
    line-height:32px;
    margin:0px 20px 0px 5px;
    font-size:15px;
}

section form > fieldset div.Form > div > label.Error {
    color:#FF0000;
}

section form > fieldset div.Form > div > label > a {
    color:inherit;
}

section form > fieldset div.Form > div > input, section form > fieldset div.Form > div > textarea {
    display:block;
    width:100%;
    height:32px;
    line-height:32px;
    padding:5px;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    color:#4B4A4D;
    background-color:#FFFFFF;
    border:1px solid #4B4A4D;
    box-sizing:border-box;
}

section form > fieldset div.Form > div > input[type=checkbox] {
    width:auto;
    height:26px;
}

section form > fieldset div.Form > div > textarea {
    height:100px;
    line-height:1.2em;
}

section form > fieldset div.Form > div > a.Submit {
    display:inline-block;
    width:auto;
    height:40px;
    line-height:40px;
    margin:0px auto 0px auto;
    padding:0px 10px 0px 10px;
    color:#FFFFFF;
    text-decoration:none;
    background-color:#E41C44;
    border:none;
}

section form > fieldset div.Form > div > a.Submit:hover {
    color:#4B4A4D;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    section h2 {
        margin:0px 120px 1em 120px;
    }

    section h3 {
        margin:0px 120px 0px 120px;
    }

    section p {
        margin:0px 120px 1em 120px;
    }

    section ul {
        margin:0px 120px 1em 135px;
    }

    section form > fieldset {
        margin:0px 120px 1em 120px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    section h2 {
        margin:0px 20px 1em 20px;
    }

    section > div > div > div.Start h2 {
        margin:15px 0px 15px 0px;
    }

    section h3 {
        margin:0px 20px 0px 20px;
    }

    section p {
        margin:0px 20px 1em 20px;
    }

    section > div > div > div.AboutMe p {
        margin:0px 20px 1em 20px;
    }

    section ul {
        margin:0px 20px 1em 35px;
    }

    section form > fieldset {
        margin:0px 20px 1em 20px;
    }

    section .DistanceTop {
        margin-top:0px;
    }
}

@media only screen and (max-width:479px) {
    section h2 {
        margin:0px 5px 1em 5px;
    }

    section > div > div > div.Start h2 {
        margin:15px 0px 15px 0px;
    }

    section h3 {
        margin:0px 5px 0px 5px;
    }

    section p {
        margin:0px 5px 1em 5px;
    }

    section > div > div > div.AboutMe p {
        margin:0px 5px 1em 5px;
    }

    section ul {
        margin:0px 5px 1em 20px;
    }

    section form > fieldset {
        margin:0px 5px 1em 5px;
    }

    section .DistanceTop {
        margin-top:0px;
    }
}

/******************************************************************************/
/* Footer                                                                     */
/******************************************************************************/

footer {
    position:fixed;
    bottom:0px;
    width:100%;
    height:50px;
    box-sizing:border-box;
}

footer > div {
    max-width:1200px;
    height:100%;
    margin:0px auto 0px auto;
    background-color:#E41C44;
}

footer > div > nav {
    text-align:center;
}

footer > div > nav > ul {
    margin:0px auto 0px auto;
}

footer > div > nav > ul > li {
    display:inline;
    position:relative;
    margin-right:10px;
    padding-right:10px;
    font-size:0.8em;
    line-height:50px;
    text-transform:uppercase;
    text-align:center;
    letter-spacing:0.2em;
    color:#FFFFFF;
}

footer > div > nav > ul > li:last-of-type {
    margin-right:0px;
    padding-right:0px;
    border-right:none;
}

footer > div > nav > ul > li.Active {
}

footer > div > nav > ul > li > a {
    color:#FFFFFF;
    text-decoration:none;
}

footer > div > nav > ul > li.Active > a {
}

footer > div > nav > ul > li > div {
    display:none;
    position:absolute;
    width:0px;
    height:0px;
    top:-20px;
    left:calc(50% - 14px);
    border-style:solid;
    border-width:12px 12px 0px 12px;
    border-color:#FFFFFF transparent transparent transparent;
}

footer > div > nav > ul > li.Active > div {
    display:block;
}

/******************************************************************************/
/* General                                                                    */
/******************************************************************************/

.ClearAfter:after {
    display:block;
    clear:both;
    height:0px;
    content:'.';
    font-size:0em;
    text-indent:-8000px;
}

/******************************************************************************/
/* Responsive                                                                 */
/******************************************************************************/

@media only screen and (min-width:1000px) {
}
    
@media only screen and (min-width:768px) and (max-width:999px) {
}

@media only screen and (min-width:480px) and (max-width:767px) {
}

@media only screen and (max-width:479px) {
}