/* fonts */

@font-face {
    font-family: 'Trade Gothic LT Std';
    src: url('../fonts/TradeGothicLTStd.woff2') format('woff2'),
        url('../fonts/TradeGothicLTStd.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Trade Gothic LT Std';
    src: url('../fonts/TradeGothicLTStd-Obl.woff2') format('woff2'),
        url('../fonts/TradeGothicLTStd-Obl.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Trade Gothic LT Std';
    src: url('../fonts/TradeGothicLTStd-Bd2.woff2') format('woff2'),
        url('../fonts/TradeGothicLTStd-Bd2.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Recoleta';
    src: url('../fonts/Recoleta-Regular.woff2') format('woff2'),
        url('../fonts/Recoleta-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* main */

html {
}

body {
  font-family: 'Trade Gothic LT Std';
    font-size: 18px;
    line-height: 1.5;
}

h1, h2, h3 {
    font-family: 'Recoleta';
}

h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
}

h2 {
    font-size: 44px;
    color: #214383;
}

h3 {
    font-size: 32px;
        color: #214383;
}

h3 img {
    margin-top: -12px;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: #505D45;
    margin-top: 16px;
}

a {
    color: #000; 
    font-family: 'Trade Gothic LT Std';
}

a:hover {
   color: #F28123;
   text-decoration: none;
}


p {
    color: #000;
    margin-top: 24px; 
}

.m-96 {
    margin-top: 96px;
    margin-bottom: 96px;
}

/* header */

.header {
    height: 100vh;
    width: 100% !important;
    background-position: center;
    background-size: cover;
}

.startseite {
    background-image: url(../img/christian-wiediger-WkfDrhxDMC8-unsplash.jpg);
}


.impressum {
    background-image: url(../img/christian-wiediger-WkfDrhxDMC8-unsplash.jpg);
}

.headline {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
}

.navbar {
   padding: 30px;
   padding-bottom: 0px;
   align-items: flex-start;
}

.logo img {
   width: 40%; 
}

/* navigation */

.menu {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/nav-bg.png);
    background-size: cover;
    background-position: center;
    z-index: 10; 
    transform: translate(0, -100%);
    opacity: 1;
    transition: transform 0.5s ease; 
}

.show {
    transform: translate(0, 0);
    opacity: 1;
    transition: transform .5s ease; 
}

.menu ul {
   text-decoration: none;
   padding: 0;
   list-style-type: none;
} 

.menu li {
    display: flex;
    text-decoration: none;
    text-align: center;
    margin: 16px 0;
}

.nav {
    width: 100%;
    justify-content: center;
}

.number {
    color: #fff;
    font-family: 'Recoleta';
    text-align: right;
    font-size: 24px;
    margin-right: 24px; 
    margin-bottom: 0;
    margin-top: 2px;
    position: absolute;
    right: 100%;
}


.service {
    padding-bottom: 15px;
    padding-right: 15px;
    align-items: center;
}

.small-link {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    margin-left: 10px;
}

.small-link:hover {
    color: #F28123;
    border-bottom: 1px solid #F28123;
    text-decoration: none;
}

.nav-item a {
   width: 100%;
   font-family: 'Recoleta';
   font-size: 40px;
   color: #fff;
   opacity: 1;
   padding: 0 !important;
   margin: 0 0;
   position: relative;  
}

.nav-item a:hover {
   color: #F28123;
   text-decoration: none;
}

/* burger icon & animation */

.burger-icon {
    z-index: 1000;
    width: 32px;
    height: 24px;
    padding: 0px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    position: relative;
} 


.line:nth-child(1) {
    transform: rotate(0deg);
    display: block;
    width: 32px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 1px;
    transition: .3s ease-in-out;
}

.line:nth-child(2), .line:nth-child(3) {
    transform: rotate(0deg);
    display: block;
    width: 32px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    transition: .3s ease-in-out;
}


.line:nth-child(4) {
    display: block;
    width: 32px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 19px;
    opacity: 1;
    transition: .3s ease-in-out;
}


.close .line:nth-child(2)  {
    transform: rotate(45deg);   
}

.close .line:nth-child(3) {
    transform: rotate(-45deg);
}

.close .line:nth-child(1), .close .line:nth-child(4){
    width: 0;
    opacity: 0;
    transition: .2s ease-in-out;
}

/* button style */

btn {
    width: 140px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #B5C840;
    margin-top: 32px;
    padding: 15px 20px 20px 20px;
    transition: ease-in-out .3s;
}

btn img {
    margin-left: 10px;
    margin-top: 2px;
}

btn p {
    font-size: 22px;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: bold;
    margin: 0;
    margin-right: 30px;
    height: 24px;
}

btn:hover {
    background-color: #F28123;
    transition: ease-in-out .3s;
}

/* startseite */

.infoimg {
    width: 100%;
    height: 250px;
}

.anfahrt {
    padding-top: 72px;
    padding-bottom: 56px;
}

.anfahrt img {
    margin-left: 6px;
    width: 16px;
}

.anfahrt a {
    border-bottom: 1px solid #000;
}

.anfahrt a:hover {
    border-bottom: 1px solid #F28123;
}

.preise {
}

.aktuelles {
    margin-top: 24px;
    margin-bottom: 96px;
}

.aktuelles img {
    width: 100%;
    margin: 0 0;
}


.aktuelles a img {
    height: 24px;
    width: 14px !important;
}


/* footer */

.footer {
    background-color: #214383;
    padding-top: 72px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #F28123;
}

.footernav a {
    border-bottom: 1px solid #fff;
    margin-right: 10px;
    padding-bottom: 4px;
    font-size: 16px; 
}

.footernav a:hover {
    border-bottom: 1px solid #F28123;
    text-decoration: none;
}

.footer p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
}

.footer img {
    width: 100%;
}

.footer-m {
   margin-top: 56px;
    margin-right: 48px;
}

.footerinfo-m {
    margin-top: 32px;
    margin-bottom: 80px;
}

.footerinfo img {
    width: 32px;
    margin-right: 10px;
}


.legal p {
    opacity: 0.6;
    margin-bottom: 48px;
}
