/* BASICS */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* lato-100 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    src: url('fonts/lato-v23-latin-100.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('fonts/lato-v23-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/lato-v23-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/lato-v23-latin-100.woff') format('woff'), /* Modern Browsers */
         url('fonts/lato-v23-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/lato-v23-latin-100.svg#Lato') format('svg'); /* Legacy iOS */
  }
  /* lato-300 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/lato-v23-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('fonts/lato-v23-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/lato-v23-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/lato-v23-latin-300.woff') format('woff'), /* Modern Browsers */
         url('fonts/lato-v23-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/lato-v23-latin-300.svg#Lato') format('svg'); /* Legacy iOS */
  }
  /* lato-300italic - latin */
  @font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    src: url('fonts/lato-v23-latin-300italic.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('fonts/lato-v23-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/lato-v23-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/lato-v23-latin-300italic.woff') format('woff'), /* Modern Browsers */
         url('fonts/lato-v23-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/lato-v23-latin-300italic.svg#Lato') format('svg'); /* Legacy iOS */
  }
  /* lato-regular - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/lato-v23-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/lato-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/lato-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('fonts/lato-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/lato-v23-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
  }

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* REUSABLE COMPONENTS */

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* HEADINGS */

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    width: 100px;
    background-color: #e67e22;
    content: " ";
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

/* PARAGRAPHS */

.long-copy {
    line-height: 145%;
}

.p-ruecknahme {
    margin-left: 15px;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

.p-kontakt {
    text-align: center;
    margin-bottom: 20px;
}

/* ICONS */

.icon-big {
    font-size: 300%;
    display: block;
    color: #e67e22;
    margin-bottom: 10px;
}

.icon-ruecknahme {
    font-size: 800%;
    display: block;
    float: left;
    color: #e67e22;
    margin-right: 60px;
}

/* LINKS */

a:link,
a:visited {
    color: #e67e22;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #e67e22;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}

/* HEADER */

.index-header {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.75))), url(img/hero.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.75)), url(img/hero.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%)
}

.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.logo-sticky {
    display: none;
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
}

/* MAIN NAVIGATION */

.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #e67e22;
}

.nav-dark li a:link,
.nav-dark li a:visited {
    color: #555;
}

/* MOBILE NAVIGATION */

.mobile-nav-icon,
.mobile-nav-icon-dark {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon ion-icon {
    font-size: 200%;
    color: #fff;
}

.mobile-nav-icon-dark ion-icon {
    font-size: 200%;
    color: #555;
}

/* STICKY NAVIGATION */

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-box-shadow: 0 2px 2px #efefef;
            box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
}

.sticky .logo {
    display: none;
}

.sticky .logo-sticky {
    display: block;
}

.sticky .main-nav {
    margin-top: 18px;
}

/* BUTTONS */

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited {
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #e67e22;
    color: #e67e22;
}

.btn:hover,
.btn:active {
    background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #cf6d17;
}

.btn-ghost:hover,
.btn-full:active {
    border: 1px solid #cf6d17;
    color: #fff;
}

/* SECTIONS */

.section-lieferung {
    background-color: #f4f4f4;
}

.section-ttp {
    background-color: #f4f4f4;
}

.feature-img,
.ttp-img {
    width: 80%;
    height: auto;
    margin-left: 40px;
}

/* FOOTER */

footer {
    padding: 50px 0;
    background-color: #333;
    font-size: 90%;
}

.footer-copy {
    float: left;
    color: #888;
}

.impressum-agb-links {
    list-style: none;
    float: right;
}

.impressum-agb-links li {
    display: inline-block;
    margin-right: 20px;
}

.impressum-agb-links li:last-child {
    display: inline-block;
    margin-right: 0;
}

.impressum-agb-links li a:link,
.impressum-agb-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.impressum-agb-links li a:hover,
.impressum-agb-links li a:active {
    color: #ddd;
}

.ttp-enum {
    padding-left: 50px;
    margin: 30px 0;
    list-style-type: none;
}

.ttp-enum li {
    margin: 5px 0;
    text-indent: -5px;
}

.ttp-enum li:before {
    content: '—';
    text-indent: -5px;
    padding-right: 5px;
}

/* SECTION IMPRESSUM */

.p-impressum-agb {
    margin-bottom: 20px;
    line-height: 145%;
}

.h2-impressum-agb:after {
    display: none;
}

.h3-impressum-agb {
    font-weight: 500;
}