* 
{
    margin: 0;
    padding: 0;
}
/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
  }
  
  /* montserrat-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v25-latin-600.eot'); /* IE9 Compat Modes */
    src: url('../fonts/montserrat-v25-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/montserrat-v25-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/montserrat-v25-latin-600.woff') format('woff'), /* Modern Browsers */
         url('../fonts/montserrat-v25-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/montserrat-v25-latin-600.svg#Montserrat') format('svg'); /* Legacy iOS */
  }
  
  /* montserrat-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v25-latin-800.eot'); /* IE9 Compat Modes */
    src: url('../fonts/montserrat-v25-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/montserrat-v25-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/montserrat-v25-latin-800.woff') format('woff'), /* Modern Browsers */
         url('../fonts/montserrat-v25-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/montserrat-v25-latin-800.svg#Montserrat') format('svg'); /* Legacy iOS */
  }
  
:root
{
    --main-color: #e97d35;
    --main-color-hover: #ff6600;
    --text-color: #fff;
    --text-color-lighter: #b8b8b8;
}
html
{
    scroll-behavior:smooth;
    background-color: #222224;
}
#index .index
{
    color: var(--main-color);
}
body
{
    font-family: 'Montserrat';
    color: var(--text-color);
    overflow-x: hidden;
}
.nav-container
{
    width: 100%;
    min-height: 75px;
    display: flex;
    align-items: center;
}
.navigation
{
    margin-left: auto;
}
.navigation a
{
    text-decoration: none;
    color: white;
    margin: 0 15px 0 15px;
    font-size: 20px;
}
.navigation a:last-child
{
    background-color: var(--main-color);
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    margin: 0 50px 0 15px;
    text-align: center;
}
.navigation a:last-child:hover
{
    color: #222224;
}
.navigation a:hover
{
    color: var(--main-color-hover);
}
.content
{
    background-image: url(../img/bg.svg);
}
.pic-container
{
    background-image: url(../img/head.jpg);
    height: 900px;
    border-radius: 5px;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    margin: 0 50px 0 50px;
}
.pic-text
{
    display: flex;
    flex-direction: column;
    padding: 100px;
}
.pic-text h1
{
    color: var(--main-color);
    font-size: 80px;
    text-shadow: 1px 1px 2px black;
}
.pic-text h2
{
    font-size: 44px;
    text-shadow: 1px 1px 2px black;
    margin-bottom: 100px;
}
.pic-text h3
{
    font-size: 30px;
    text-shadow: 1px 1px 2px black;
}
.pic-text button
{
    margin-top: 100px;
    height: 50px;
    width: 200px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 20px;
    text-shadow: 1px 1px 2px black;
    background-color: var(--main-color);
}
.pic-text button:hover
{
    color: #222224;
    text-shadow: none;
    cursor: pointer;
}
.about-container
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}
.about-picture
{
    height: 400px;
    width: 400px;
    margin: -50px;
    z-index: 2;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px #222224;
}
.about-picture img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.about-text
{
    height: auto;
    width: 500px;
    padding: 100px;
    background-color: white;
    color: black;
    font-size: 26px;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px #222224;
    text-align: left;
}
.leistungen-container
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}
.accordion
{
    height: auto;
    width: 1000px;
    padding: 50px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px #222224;
}
.accordion h2
{
    color: var(--main-color);
    font-size: 26px;
    font-weight: 400;
}
details
{
    background-color: #222224;
    margin-top: 25px;
	margin-bottom: 10px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
}
details:hover
{
    border: 1px solid var(--main-color-hover);
}
details > summary 
{
    color: var(--main-color);
	padding: 5px 10px;
	font-size: 20px;
	cursor: pointer;
}
details > p 
{
    padding: 5px 10px 10px 20px;
	color: #ddd;
	font-size: 1.1em;
}
details > ul
{
    padding: 5px 10px 25px 35px;
}
ul > li
{
    margin-top: 10px;
}
.works-container
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
    padding-bottom: 200px;
}
.works-text
{
    height: auto;
    width: 1000px;
    padding: 50px;
    background-color: white;
    color: black;
    font-size: 26px;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px #222224;
    text-align: left;
}
.outlook-calendar
{
    width: 100%;
    height: 1000px;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    margin-top: 25px;
}
footer
{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #131314;
    min-height: 100px;
    width: 100%;
    padding: 25px;
}
.footer-contact
{
    float: left;
}
.footer-contact a
{
    display: inline-block;
    color: var(--main-color);
    text-decoration: none;
    margin-top: 10px;
}
.footer-media
{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}
.footer-media li
{
    list-style: none;
    float: right;
    margin-left: 20px;
}
.footer-media img
{
    height: 48px;
    width: 48px;
    border-radius: 25px;
}