
<!--------------------------------------------------------------
Settings laden
--------------------------------------------------------------->

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {}

@media (max-width: 768px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-left: 20px;
        padding-right: 20px;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(40,40,40,1.0);
    overflow: scroll;
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
}

a {
    color: rgba(0,105,180,1.0);
    text-decoration: none;
}

a:hover {
    color: rgba(240,140,0,1.0);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;

}

.section {
    margin-top: 50px;
}

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

hr {
    border: none; 
    height: 2px; 
    background: linear-gradient(to right, rgba(160,160,160,1.0), #fff);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

ul {
    padding-right: 1rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.custom-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.fade-in {
  opacity: 0; 
  animation: fadeIn 2s ease-in-out forwards; 
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1; 
  }
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.nav-item {
    margin-right: 20px;
}

.navbar {
    padding-top: 10px;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .navbar {
        padding-bottom: 10px;
    }
}

.navbar-brand {
    padding-top: 20px;
    padding-bottom: 0px;
}

@media (max-width: 768px) {
    .navbar-brand {
        padding-top: 5px;
    }

    .navbar-brand img {
        width: 80%;
        height: auto;
    }
}

.navbar ul {
    margin-top: 0px;
    margin-left: 50px;
    padding-top: 30px;
    display: flex;
    list-style: none;
    align-items: center;
}

@media (max-width: 768px) {
    .navbar ul {
        margin-left: 0px;
    }
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: rgba(40,40,40,1.0);
    /* text-transform: uppercase; */
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    line-height: 0;
    margin-left: 5px;
}

.navbar-nav .nav-link.active,
.nav-link.show,
.nav-link.dropdown-toggle.active {
    color: rgba(0,105,180,1.0);
}

.navbar a:hover {
    color: rgba(240,140,0,1.0);
}

/*--------------------------------------------------------------
# Navigation Dropdown
--------------------------------------------------------------*/
.dropdown-menu {
    --bs-dropdown-link-hover-color: rgba(150, 50, 50, 1.0);
    --bs-dropdown-link-hover-bg: rgba(240, 140, 0, 0.1);
    --bs-dropdown-link-active-bg: rgba(0, 105, 180, 1.0);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: rgba(240,140,0,1.0);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/*--------------------------------------------------------------
# Typo
--------------------------------------------------------------*/
.text-copy {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
}

.text-copy-slide {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding-top: 0px;
}

.text-subhead {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(240,140,0,0.8);
    margin-top: 6px;
    margin-bottom: 8px;
}

.text-accordion {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(40,40,40,0.8);
}

.text-headline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(240,140,0,1.0);
    padding-top: 10px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .text-headline {
        padding-top: 0px;
        padding-bottom: 10px;
    }
}

.text-headline-slide {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

@media (max-width: 1400px) {
    .text-headline-slide {
        font-size: 2.4rem;
    }
}

.text-badge {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    padding: 5px 7px 4px 7px;
    background-color: rgba(240,140,0,0.8);
    color: #fff;
    border-radius: 4px;
}

.fett {
    font-weight: 500;
}

.halbfett {
    font-weight: 400;
}

.klein {
    font-size: 0.75rem;
}

.micro {
    font-size: 0.6rem;
    margin-top: 3px;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.bullet {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
}

.bullet li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.bullet li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    background-color: rgba(240,140,0,0.7);
}

.aufzaehlung {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
}

.aufzaehlung li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.aufzaehlung li::before {
    content: "... "; 
    position: absolute;
    left: 0;
}

.line-left {
    position: relative;
    padding-left: 15px;
}

.line-left:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    /* background: linear-gradient(to bottom, rgba(240,140,0,0.7), #fff); */
    /* background: linear-gradient(to bottom, #fff, rgba(240,140,0,0.7), #fff); */ 
    background: rgba(240,140,0,0.7);
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.custom-accordion-btn {
    background: rgba(160,160,160,0.1);
    border: none !important;
    box-shadow: none !important;
    color: rgba(40,40,40,1.0); 
    font-family: 'Roboto';
    font-size: 0.9rem; 
    font-weight: 400;    
    transition: color 0.3s ease; 
    padding-left: 12px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 6px;
    margin-top: 1rem;
}

.custom-accordion-btn:hover {
    color: rgba(0,105,180,1.0); 
}

.custom-accordion-btn:focus, 
    color: rgba(0,105,180,1.0); 
.custom-accordion-btn:not(.collapsed) {
    box-shadow: none !important;
    background: none !important;
    color: rgba(40,40,40,1.0); 
}

.custom-accordion-btn::after {
    background: none !important; 
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(240,140,0,1.0); 
    border-bottom: 2px solid rgba(240,140,0,1.0); 
    background: none;
    box-shadow: none;
    transform: rotate(45deg); 
    margin-left: 10px;
    margin-bottom: 3px;
    transition: border-color 0.3s ease;
}

.custom-accordion-btn:hover::after {
    background: none !important; 
    border-right-color: rgba(0,105,180,1.0); 
    border-bottom-color: rgba(0,105,180,1.0); 
    transform: rotate(45deg);
}

.custom-accordion-btn:not(.collapsed)::after {
    transform: rotate(-135deg); 
    margin-top: 8px;
}

.accordion-body {
    background: rgba(160,160,160,0.1);
    border: none !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.3;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel-inner {
    height: 50vh;
}

@media (max-width: 768px) {
    .carousel-inner {
        height: 30vh;
    }
}

.carousel-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1400px) {
    .carousel-caption {
        top: 34%;
    }
}

.carousel-item {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@media (max-width: 768px) {
    .overlay {
        background-color: rgba(0, 0, 0, 0.0);
    }
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    color: rgba(255, 255, 255, 0.8);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    color: rgba(255, 255, 255, 1.0);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {
    font-size: 0.85rem;
    background-color: rgba(160,160,160,0.075);
    /*-- background-image: linear-gradient(to right, rgba(0, 105, 180, 0.05), rgba(0, 105, 180, 0.01)); --*/
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 50px;
    border-radius: 4px;
    --bs-breadcrumb-divider-color: rgba(160,160,160,1.0);
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.75rem;
        margin-top: 15px;
        margin-bottom: 35px;
    }
}

.breadcrumb-item.active {
    color: rgba(160,160,160,1.0);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.card {
    margin-bottom: 1.5rem;
    border-color: rgba(160,160,160,1.0);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .card {
        margin-top: 1.0rem;
    }
}

.card-img,
.card-img-top {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

/*--------------------------------------------------------------   
# Feather
--------------------------------------------------------------*/
.feather {
    width: 20px;
    height: 20px;
    stroke-width: 1.25;
    color: rgba(160,160,160,1.0);
}

.feather-icon {
    width: 19px;
    height: 19px;
    stroke-width: 1.75;
    color: rgba(240,140,0,1.0);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.button {
    color: rgba(40,40,40,1.0);
    border: 1px solid rgba(240,140,0,1.0);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 0.8em 1.1em 0.75em 1.1em;
}

.button:hover {
    color: rgba(0,105,180,1.0);
    border: 1px solid rgba(0,105,180,1.0);
    background-color: rgba(0,105,180,0.1);
}

.button-slide {
    color: rgba(40,40,40,1.0);
    border: 1px solid rgba(240,140,0,1.0);
    background-color: rgba(255, 255, 255, 0.6);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.8em 1.2em 0.75em 1.2em;
    transition: 0.2s ease-in-out;
}

.button-slide:hover {
    color: rgba(0,105,180,1.0);
    border: 1px solid rgba(0,105,180,1.0);
    background-color: rgba(255, 255, 255, 0.6);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
    transform: scale(1.05);
}

/*--------------------------------------------------------------
# Zoom
--------------------------------------------------------------*/
.zoom-text {
    transition: 0.1s ease-in-out;
}

.zoom-text:hover {
    transform: scale(1.0325);
}

.zoom-card {
    transition: 0.2s ease-in-out;
}

.zoom-card:hover {
    transform: scale(1.03);
}

.zoom-image-xl {
    transition: 0.2s ease-in-out;
}

.zoom-image-xl:hover {
    transform: scale(1.01);
}

.zoom-image-svg {
    transition: 0.2s ease-in-out;
}

.zoom-image-svg:hover {
    transform: scale(1.035);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: rgba(160,160,160,1.0);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer {
        font-size: 0.7rem;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 50px;
    z-index: 996;
    background: rgba(0,105,180,0.2);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: rgba(240,140,0,0.2);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Typo von lokal einbinden
--------------------------------------------------------------*/
/* roboto-100 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: url('../../includes/roboto/roboto-v30-latin-100.woff2') format('woff2');
}

/* roboto-100italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: url('../../includes/roboto/roboto-v30-latin-100italic.woff2') format('woff2');
}

/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../../includes/roboto/roboto-v30-latin-300.woff2') format('woff2');
}

/* roboto-300italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url('../../includes/roboto/roboto-v30-latin-300italic.woff2') format('woff2');
}

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../../includes/roboto/roboto-v30-latin-regular.woff2') format('woff2');
}

/* roboto-italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../../includes/roboto/roboto-v30-latin-italic.woff2') format('woff2');
}

/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../../includes/roboto/roboto-v30-latin-500.woff2') format('woff2');
}

/* roboto-500italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: url('../../includes/roboto/roboto-v30-latin-500italic.woff2') format('woff2');
}

/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../../includes/roboto/roboto-v30-latin-700.woff2') format('woff2');
}

/* roboto-700italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('../../includes/roboto/roboto-v30-latin-700italic.woff2') format('woff2');
}

/* roboto-900 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../../includes/roboto/roboto-v30-latin-900.woff2') format('woff2');
}

/* roboto-900italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 900;
    src: url('../../includes/roboto/roboto-v30-latin-900italic.woff2') format('woff2');
}
