@charset "UTF-8";
@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Semilight"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
    font-weight: 200;
}
@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Bold"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.ttf) format("truetype");
    font-weight: 600;
}

/* Fonts
-------------------------*/
h1, h2, h3, h4, h5, h6, .highlight {
    font-family: "SegoeUI", sans-serif;
    font-weight: 400;
    color: rgb(60,60,60);
}
h2 {
    text-transform: uppercase;
}
html, body {
    font-family: "SegoeUI", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.45;
    color: #4a4646;
    -webkit-text-size-adjust: none;
    /*keine Textvergrösserung iphone*/
    height: 100%;
}

/*======================================================================
Normalisierung, Startwerte
======================================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Bilder
-------------------------*/
img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border: none; }

/* Listen
-------------------------*/
ul {
    list-style: none; }

/*Weitere Formate
-----------------*/
address {
  font-style: normal; }

table, th, tr, td {
  font-weight: 300;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left; }

/* Überschriften
-------------------------*/
/* 1em = 16px */

h1 {
    font-size: 2.8rem;
    line-height: 2.7rem;
    margin-bottom: 1.7rem;
    padding-left: 25px;
}
h2 {
    font-size: 2.2rem;
    line-height: 2.7rem;
    margin-top: 50px;
}
h3 {
    font-size: 1.5rem;
    line-height: 2.3rem;
    margin-bottom: 30px;
}
h4 {
    font-size: 1.1rem;
}


/*======================================================================
Grundlayout
======================================================================*/

a {
    color: rgb(60,60,60);
}

a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:active {
    text-decoration: underline;
}

/*====================================================================== 
Main
======================================================================*/
header {
    padding: 20px 50px;
    background-color: rgb(230,230,230);
    border-bottom-style: solid;
    border-bottom-color: rgb(160,160,160);
    border-bottom-width: 5px;
}
main {
    padding: 0 50px; 
}
body {
    width: 100%;
}
.container {
    width: 1500px;
    height: 1000px;
    margin: 50px auto 0 auto;
}
@media only screen and (max-width: 1600px) {
    .container {
        width: 1300px;
    }
}
@media only screen and (max-width: 1400px) {
    .container {
        width: 1100px;
    }
}
@media only screen and (max-width: 1200px) {
    .container {
        width: 900px;
    }
}
@media only screen and (max-width: 1000px) {
    .container {
        width: 700px;
    }
}
@media only screen and (max-width: 800px) {
    .container {
        width: 500px;
    }
    h1 {
        font-size: 2.2rem;
    }
}
.container iframe {
    width: 101%;
    height: 101%;
    border: none;
}


/*======================================================================
Footer
======================================================================*/
