html {
  scroll-behavior: smooth;
}

body {
  font-family: itc-avant-garde-gothic-pro,sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: #212529;
  font-size: 16px;
  font-weight: 300;
}

@media (min-width: 1600px) {
.container {
    max-width: 1420px!important;
}
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

a {
  color: #004366;
}

a:focus, a:hover {
  color: #82CCD4;
  text-decoration: none;
}

h1 {
  font-size: 36px;
  font-weight: 500;
}

h2 {
  font-size: 28px;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h5.card-title {
    font-weight: 500;
}

.card {
    border-radius: 20px;
    border: none;
}

.card-img-top {
    border-radius: 20px 20px 0 0;
}

.card-body {
    padding: 30px;
}

strong {
    font-weight: 500;
}

.red {
  color: #004366;  
}

.bg-black {
    background-color: #004366;
    color: #ffffff;
}

.bg-light {
    background-color: #eef8fa!important;
}

.form-control {
    border-radius: 10px;
    border: none;
}

.bg-black a {
  color: #ffffff;
}

.bg-black a:hover {
  color: #82CCD4;
  text-decoration: none;
}

.profile-image {
    border-radius: 50%;
    width: 100px;
}

.blog-title {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.abstand {
    padding-top: 120px;
    padding-bottom: 120px;
}

.collapseicon:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; 
    color: #004366;
    font-size: 20px;
    margin-top: 5px;
}
.collapseicon.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\2b"; 
    font-size: 30px;
    margin-top: -7px;
}

.collapseicon {
    font-size: 24px;
    font-weight: 500;
}

.mouse_scroll {
display: block;
margin: 0 auto;
width: 18px;
height: 100px;
margin-top: -90px;
}

@media (max-width: 768px) {
.mouse_scroll {
margin-top: 45px;
}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-primary {
  color: #ffffff;
  background-color: #004366;
  border-color: #004366;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #82CCD4;
  border-color: #82CCD4;
}

.btn-white {
  color: #004366!important;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn-white:hover {
  color: #004366!important;
  background-color: #82CCD4;
  border-color: #82CCD4;
}

.btn-outline-primary {
  color: #004366;
  border-color: #004366;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #82CCD4;
  border-color: #82CCD4;
}

.btn-outline-dark {
  color: #004366;
  border-color: #004366;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #004366;
  border-color: #004366;
}

.bg-angebot {
    height: 100%;
    color: #ffffff;
    background-image: url("../img/home/BG-Angebot-LG.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
}

/*--------------------------------------------------------------
# Startseite
--------------------------------------------------------------*/

    .full-height {
        height: 100vh;
        background-image: url("../img/home/Startseite-BG-LG.jpg");
        background-position: center right;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .startseite-container {
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        padding-top: 66px;
    }

    @media (max-width: 991px) {
        .full-height {
            height: 100%;
            background-image: none;
            padding-bottom: 80px;
            padding-top: 80px;
        }

        .abstandmd {
            margin-bottom: 40px;
        }

        .abstandlg {
            margin-bottom: 40px;
        }

        .startseite-container {
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            padding-top: 0;
        }
    }

    .werte-height {
        height: calc(100vh - 140px);
        background-image: url("../img/home/Werte-BG-LG.jpg");
        background-position: center right;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .werte-container {
        height: calc(100vh - 140px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }

    @media (max-width: 991px) {
    .werte-height {
        height: 100%;
        background-image: none;
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .werte-container {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    }

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    color: #ffffff;
    background: #004366;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.disclaimer-footer {
  text-align: right;
}

@media (max-width: 768px) {
.disclaimer-footer {
  text-align: left;
}
}

/* Relative Code Starts Here */

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

.navibg {
    background: #fff;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08), 0px 0px 5px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08), 0px 0px 5px rgba(0, 0, 0, 0.08);
}

.navibg .burger span::after,.navibg .burger span::before {
    background-color: #004366;
}

@media (min-width: 991px) {
.burger span::after,.burger span::before  {
    background-color: #ffffff;
}
}

.top-nav {
    position: fixed;
    width: 100%;
    height: 140px;
}

@media (max-width: 991px) {
.top-nav {
    background: #fff;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08), 0px 0px 5px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08), 0px 0px 5px rgba(0, 0, 0, 0.08);
}
}

.nav-menu {
    background: none;
    width: 60px;
    height: 80px;
    top: 0;
    right: 15px;
    -webkit-transition: width 0.2s ease, height 0.4s ease;
    transition: width 0.2s ease, height 0.4s ease;
}

.open {
    position: fixed;
    background: #004366;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    right: 0;
}

.menu-list {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    opacity: 0;
}

.list-open {
    opacity: 1;
    -webkit-transition: opacity 0.64s ease;
    transition: opacity 0.64s ease;
    -webkit-transition-delay: 0.34s;
            transition-delay: 0.34s;
}

.menu-list li {
    padding: 10px;
}

.menu-list li a {
    padding: 10px;
    background: none;
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
}

.menu-list li a:hover {
    color: #82CCD4;
    cursor: pointer;
}

li .social-icons:hover {
    background: none;
}

.social-icons {
    margin-top: 20px;
    font-size: 24px
}

.social-icons a {
    margin: 18px;
    color: #fff;
}

.social-icons a:hover {
    color: #82CCD4;
}

/* Burger */
#burger-wrap {
    position: fixed;
    top: 0;
    right: 15px;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 80px;
}

.burger {
    position: fixed;
    top: 36px;
    right: 15px;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 70px;
    height: 50px;
    border-radius: 50%;
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: transparent;
}

.burger span {
    display: block;
    position: absolute;
    top: 30px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: #ffff0000;
    border-radius: 15px;
    -webkit-transition: background 0.3s .3s;
    transition: background 0.3s .3s;
    -o-transition: background 0s 0s;
    -webkit-transition-delay: 0.4s, 0s;
            transition-delay: 0.4s, 0s;
}

.open .burger span {
    background: 0 0 transparent;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -o-transition: all 0s ease;
    -webkit-transition-delay: 0s, 0s;
            transition-delay: 0s, 0s;
}

.burger span::after,
.burger span::before {
    position: absolute;
    display: block;
    left: 0;
    height: 3px;
    background-color: #004366;
    content: "";
    border-radius: 5px;
    -webkit-transition-duration: .3s, .3s;
            transition-duration: .3s, .3s;
    -webkit-transition-delay: 0.4s, 0s;
            transition-delay: 0.4s, 0s;
}


@media (min-width: 992px) {
.burger span::after,
.burger span::before {
    background-color: #ffffff;
}
}

.burger span::before {
    top: -8px;
    width: 100%;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, -webkit-transform;
    transition-property: top, transform;
    transition-property: top, transform, -webkit-transform;
}

.burger span::after {
    bottom: -8px;
    width: 80%;
    margin-left: 20%;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
}

.open .burger span::after,
.open .burger span::before {
    -webkit-transition-delay: 0s, .4s;
            transition-delay: 0s, .4s;
    background-color: #fafafa;
    width: 100%!important;
    margin-left: 0!important;
}

.open .burger span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.open .burger span::after {
    bottom: 1px;
    /* Fix for codepen, set to zero for normal use */
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

/* Disable scrollbar on Chrome and Safari browsers! */
html::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}
