/*=========================================================================================================================*/
/* Programm by R.Pöpperl    © Copyright by Rpdata -Systeme GmbH - The new Inspiration of Technology - All rights reserved  */
/*=========================================================================================================================*/

/* Font Variables - Help: https://bootstrapmade.com/color-system/ =========================================================*/
/*=========================================================================================================================*/
:root {
	--nav-font: "Inter", sans-serif;
	--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Raleway", sans-serif;
}

/* Global Colors - Die Farbvariablen werden auf der gesamten Website verwendet =========================================== */
/*=========================================================================================================================*/
:root { 
	--accent-color:#0066FF;
	--default-color:#444444;
	--heading-color:#273D4E;
	--surface-color:#FFFFFF;
	--contrast-color:#FFFFFF;
	--background-color:#FFFFFF;
}

/* Nav Menu Colors - Die Farbvariablen werden für das Navigationsmenü verwendet. Sind von den globalen Farben getrennt ====*/
/*=========================================================================================================================*/
:root {
	--nav-color:#E5EAEE;
	--nav-hover-color:#FFFF00;
	--nav-mobile-background-color:#FFFFFF;
	--nav-dropdown-color:#444444;
	--nav-dropdown-hover-color:#0066FF;
	--nav-dropdown-background-color:#FFFFFF;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
/*=========================================================================================================================*/
.none-background {
	--default-color:#FFFFFF;
	--heading-color:#FFFFFF;
	--surface-color:#000000;
	--background-color:#F1F4FA;
}
.light-background {
	--surface-color:#FFFFFF;
	--background-color:#F1F4FA;
}
.dark-background {
	--default-color:#FFFFFF;
	--heading-color:#FFFFFF;
	--surface-color:#28323a;
	--contrast-color:#FFFFFF;
	--background-color:#000910;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Smooth scroll ==========================================================================================================*/
/*=========================================================================================================================*/
:root {scroll-behavior:smooth;}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Grundeinsellungen: Allgemeines Styling und gemeinsame Klassen ==========================================================*/
/*=========================================================================================================================*/
body {
    color: var(--default-color);
    font-family: var(--default-font);
    background-color: var(--background-color);
}
a {
    color: var(--accent-color);
    transition: 0.3s;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}
h1, h2, h3,
h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Header =================================================================================================================*/
/*=========================================================================================================================*/
.header {
    --default-color: #FFFFFF;
    --heading-color: #FFFFFF;
    --background-color: rgba(0, 0, 0, 0);	/*Farbeinstellung Menue: Standard: (0, 0, 0, 0) = Transparent */
    color: var(--default-color);
    margin: 0 auto;
    z-index: 997;
    padding: 12px 0;
    transition: all 0.5s;
    background-color: var(--background-color);
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 78px;
    margin-right: 10px;
    border-radius: 8px;
}
.header .logo h3 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
}
.header .logo h5 {
    color: var(--heading-color);
    font-size: 22px;
    padding: 68px 0px 0px 0px;
}
.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    font-size: 13px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    border: 2px solid var(--contrast-color);
}
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
}
@media (max-width: 576px) {
    .header .logo img {
        max-height: 46px;
        margin-right: 0px;
	}		
	 .header .logo h5 {
		font-size: 14px;
		padding:38px 0px 0px 10px;
	}
    .header .logo h3 {
        font-size: 10px;
        font-weight: 500;
    }
}
@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
    .header .navmenu {
        order: 3;
    }
}
/* Header Transparent to Color on Scroll ==================================================================================*/
/*=========================================================================================================================*/
.scrolled .header {box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);}

.scrolled .header {--background-color:rgba(21, 34, 43, 0.85);}	       /* Standartwert: rgba(21, 34, 43, 0.85) = Deckkraft */
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Navigation Menü Desktop ================================================================================================*/
/*=========================================================================================================================*/
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu span {
        cursor: pointer;
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 15px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
    }
    .navmenu .dropdown ul {
        font-size: 15px;
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 140%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 500;
        text-transform: none;
        color: var(--nav-dropdown-color);
        text-transform: uppercase;
    }
    .navmenu .dropdown ul a i {
        font-size: 15px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
    /*Underline Dropdown Menue*/
    .navmenu .dropdown>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: 8px;
        left: 20px;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu .dropdown a:hover:before,
    .navmenu .dropdown li:hover>a:before,
    .navmenu .dropdown .active:before {
        visibility: visible;
        width: 83.4%;
    }
    /* ---------------------- */
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Navigation Menü Mobile =================================================================================================*/
/*=========================================================================================================================*/
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 30px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Section Top ============================================================================================================*/
/*=========================================================================================================================*/
.section-top {margin-top: -125px; padding-top: 125px;}
@media (max-width: 768px) {
    .section-top {
        margin-top: -85px; 
		padding-top: 85px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Section ===== scroll-margin-top: 125px - Top Position Header Höhe ======================================================*/
/*=========================================================================================================================*/
section,
.section {
	color: var(--default-color);
	padding: 20px 0;
	overflow: hidden;
	background-color: var(--background-color);
	scroll-margin-top: 126px;
}
@media (max-width: 575px) {
    .section {
	padding: 20px;
    }
}
@media (max-width: 1199px) {
  section,
  .section {scroll-margin-top: 76px;}
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Section Titel ==========================================================================================================*/
/*=========================================================================================================================*/
.section-title {
  padding: 30px 0px 0px 0px;
    position: relative;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    color: var(--accent-color);
    border-bottom: 1px solid;
}
.section-title span {
	top: 0px;
    left: 80px;
    right: 0;
    z-index: 1;
    position: absolute;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: color-mix(in srgb, var(--heading-color), transparent 85%);
}
.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
@media (max-width: 575px) {
    .section-title h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .section-title span {
        font-size: 28px;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Home ===================================================================================================================*/
/*=========================================================================================================================*/
.home {
    width: 100%;
	padding555: 80px 0;
    display: flex;
    position: relative;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}
.home img {
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    position: absolute;
    object-fit: cover;
}
.home:before {
    inset: 0;
    content: "";
    z-index: 2;
    position: absolute;
    background: color-mix(in srgb, var(--background-color), transparent 30%);
}
.home .container {
    z-index: 3;
    position: relative;
}
.home h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 660;
}
.home h5 {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 auto;
    font-size: 24px;
}
.home .btn-get-started {
    color: var(--contrast-color);
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    transition: 0.3s;
    background: var(--accent-color);
    font-weight: 400;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.home .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.home .btn-watch-video {
    color: var(--default-color);
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 400;
}
.home .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.home .btn-watch-video:hover {
    color: var(--accent-color);
}
.home .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
@media (max-width: 768px) {
    .home h3 {
        font-size: 20px;
    }
    .home h5 {
        font-size: 17px;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* About Us ===============================================================================================================*/
/*=========================================================================================================================*/
.about {
	width: 100%;
    font-size: 16px;
}
.about h4 {
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid;
}
.about h5 {
    font-size: 18px;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}
.about .content ul i {
    top: -3px;
    left: 0;
    color: var(--accent-color);
    position: absolute;
    font-size: 20px;
}
.about .content p:last-child {
    margin-bottom: 0;
}
.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}
.about .pulsating-play-btn {
    top: calc(50% - 47px);
    left: calc(50% - 47px);
    position: absolute;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Services ===============================================================================================================*/
/*=========================================================================================================================*/
.services h5 {
    font-size: 17px;
}
.services-titel {
    color: #0066FF;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px #0066FF solid;
}
.services-titel-h {
    color: #0066FF;
    font-size: 18px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}
.services .nav-tabs {
    border: 0;
}
.services .nav-link {
    background-color: var(--surface-color);
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}
.services .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}
.services .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.services .nav-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.services .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}
.services .nav-link.active h4 {
    color: var(--contrast-color);
}
.services .container-fluid {
    padding: 20px 40px 20px 40px;
}
@media (max-width: 768px) {
    .services .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    .services .nav-link {
        padding: 15px;
    }
    .services .nav-link i {
        font-size: 24px;
    }
}
.services .tab-content {
    margin-top: 30px;
}
.services .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 26px;
}
.services .tab-pane ul {
    list-style: none;
    padding: 0;
}
.services .tab-pane ul li {
    padding-bottom: 10px;
}
.services .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}
.services .tab-pane p:last-child {
    margin-bottom: 0;
}
.services .img {
    border-radius: 8px;
    overflow: hidden;
}
.services .img img {
    transition: 0.6s;
}
.services .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding555: 50px 20px;

    padding: 50px 20px 20px 20px;

    margin: -70px 20px 0 20px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}
.services .details h4 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    transition: ease-in-out 0.3s;
}
.services .details p {
    color: var(--default-color);
    font-size: 14px;
    text-align: left;
    margin-bottom: 0;
}
.services .service-item:hover .details h4 {
    color: var(--accent-color);
}
.services .service-item:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
}
.services .service-item:hover .details .icon i {
    color: var(--accent-color);
}
.services .service-item:hover .img img {
    transform: scale(1.2);
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* ERP Systeme ============================================================================================================*/
/*=========================================================================================================================*/
.erp {
    margin: 0 auto;
    padding: 40px 0;
}
.erp .erp-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    width: 300px;
    height: 300px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.erp .erp-card .stat-item {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
    border-radius: 10px;
    padding: 15px 15px 15px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}
.erp .erp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.erp .erp-card:hover .icon-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.erp .erp-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.erp .erp-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}
.erp .erp-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
}
.erp .erp-card p {
    margin-bottom: 20px;
    color: var(--default-color);
}
.erp .erp-card .erp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.erp .erp-card .erp-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--default-color);
}
.erp .erp-card .erp-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}
.erp .erp-card .read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.erp .erp-card .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.erp .erp-card .read-more:hover {
    color: color-mix(in srgb, var(--accent-color), #000 10%);
}
.erp .erp-card .read-more:hover i {
    transform: translateX(5px);
}
.erp .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.erp .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.erp .erp-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.erp .erp-stats .stat-item {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}
.erp .erp-stats .stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.erp .erp-stats .stat-item .stat-label {
    display: block;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-weight: 500;
}
.erp .erp-card .erp-card-inner:hover .erp-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.erp .erp-card .erp-card-inner .erp-icon {
    width: 60px;
    height: 60px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* KI Systeme =============================================================================================================*/
/*=========================================================================================================================*/
.ki {
    margin: 0 auto;
    background-color: var(--background-color);
}
.ki .features-content {
    padding-right: 30px;
}
.ki h5 {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
}
.ki .ki-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ki .ki-card:hover {
    transform: translateX(15px);
}
@media (max-width: 992px) {
    .ki .features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}
.ki .features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}
@media (max-width: 768px) {
    .ki .features-content h2 {
        font-size: 2rem;
    }
}
.ki .features-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}
.ki .features-content p {
    margin-bottom: 2rem;
    color: var(--default-color);
}
.ki .features-content .features-list .feature-item {
    display: flex;
    margin-bottom: 2rem;
}
.ki .features-content .features-list .feature-item:last-child {
    margin-bottom: 0;
}
.ki .features-content .features-list .feature-item .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}
.ki .features-content .features-list .feature-item .feature-icon:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
}
.ki .features-content .features-list .feature-item .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}
.ki .features-content .features-list .feature-item .feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--default-color);
}
.ki .features-image {
    position: relative;
}
.ki .features-image .main-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.ki .features-image .stats-card {
    position: absolute;
    top: -30px;
    left: -30px;
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    z-index: 2;
    width: 220px;
}
@media (max-width: 768px) {
    .ki .features-image .stats-card {
        width: 180px;
        padding: 15px;
        top: -20px;
        left: -10px;
    }
}
.ki .features-image .stats-card .stat-item {
    text-align: center;
}
.ki .features-image .stats-card .stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}
@media (max-width: 768px) {
    .ki .features-image .stats-card .stat-item h3 {
        font-size: 1.2rem;
    }
}
.ki .features-image .stats-card .stat-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--default-color);
}
@media (max-width: 768px) {
    .ki .features-image .stats-card .stat-item p {
        font-size: 0.7rem;
    }
}
.ki .features-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
@media (max-width: 768px) {
    .ki .features-image .experience-badge {
        padding: 15px;
        right: 0;
    }
}
.ki .features-image .experience-badge .badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ki .features-image .experience-badge .badge-content .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 768px) {
    .ki .features-image .experience-badge .badge-content .number {
        font-size: 2rem;
    }
}
.ki .features-image .experience-badge .badge-content .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Technology =============================================================================================================*/
/*=========================================================================================================================*/
.technik {
    color: var(--default-color);
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    background-color: var(--background-color);
}
.technik-holder {
    height: 170px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;

}
.technik-holder:hover .technik-overlay {
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.technik-holder:hover .technik-content {
    top: 30%;
    opacity: 1;
}
.technik h4 {
    color: #0066FF;
    padding: 15px 0px 15px 0px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    overflow: auto $;
}
.technik-overlay {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
.technik-overlay-img {
    width: 100%;
    height: 170px;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #FFFF00;
}
@media (max-width: 768px) {
    .technik-overlay-img {
        width: 350px;
    }
}
.technik-content {
    top: 0;
    width: 100%;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
.technik-content-icon {
    color: #000000;
    font-size: 60px;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Team ===================================================================================================================*/
/*=========================================================================================================================*/
.team {
	width: 100%;
}
.team .team-member {
	height: 100%;
	padding: 20px 20px 0px 20px;
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: 0.5s;
	border-radius: 8px;
	background-color: var(--surface-color);
}
@media (max-width: 468px) {
	.team .team-member {
		align-items: center !important;
		flex-direction: column;
		justify-content: center !important;
	}
}
.team .team-member .pic {
	width: 150px;
	overflow: hidden;
	flex-shrink: 0;
	border-radius: 50%;
}
.team .team-member .pic img {
	transition: ease-in-out 0.3s;
}
.team .team-member:hover {
	transform: translateY(-10px);
}
.team .team-member .member-info {
	padding-left: 20px;
}
@media (max-width: 468px) {
	.team .team-member .member-info {
		padding: 20px 0 0 0;
		text-align: center;
	}
}
.team .team-member h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}
.team .team-member span {
	display: block;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 10px;
}
@media (max-width: 468px) {
	.team .team-member span::after {
		left: calc(50% - 25px);
	}
}
.team .team-member p {
	margin: 10px 0 0 0;
	font-size: 14px;
}
.team .team-member .social {
	width: 100%;
	display: flex;
	margin-top: 12px;
	align-items: center;
	justify-content: start;
}
@media (max-width: 468px) {
	.team .team-member .social {
		justify-content: center;
	}
}
.team .team-member .social a {
	width: 36px;
	height: 36px;
	display: flex;
	transition: ease-in-out 0.3s;
	align-items: center;
	border-radius: 50px;
	justify-content: center;
	background: color-mix(in srgb, var(--default-color), transparent 94%);
}
.team .team-member .social a i {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin: 0 2px;
	font-size: 16px;
}
.team .team-member .social a:hover {
	background: var(--accent-color);
}
.team .team-member .social a:hover i {
	color: var(--contrast-color);
}
.team .team-member .social a+a {
	margin-left: 8px;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Kontakt ================================================================================================================*/
/*=========================================================================================================================*/
.kontakt {
	width: 100%;
}
.kontakt h4 {
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid;
} 
.kontakt .kontakt-card {
    background-color: #e8e8e8;   /* #f9f9f9 */
    /* background-color: var(--surface-color);*/
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.kontakt .kontakt-card-l-blue {
    background-color: #e8e8e8;   /* #f9f9f9 */
    /* background-color: var(--surface-color);*/
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
	border-top: 4px solid var(--accent-color);
} 
.kontakt .kontakt-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}
.kontakt .kontakt-card h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
} 
.kontakt .kontakt-card p {
    color: var(--default-color);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.kontakt .kontakt-card .kontakt-details {
    margin-bottom: 25px;
}
.kontakt .kontakt-card .kontakt-details .kontakt-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.kontakt .kontakt-card .kontakt-details .kontakt-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}
.kontakt .kontakt-card .kontakt-details .kontakt-item div h4 {
    color: var(--heading-color);
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}
.kontakt .kontakt-card .kontakt-details .kontakt-item div p {
    font-size: 14px;
    color: var(--default-color);
    margin: 0 0 5px;
    line-height: 1.5;
} 
.kontakt .kontakt-card .kontakt-details .kontakt-item div p:last-child {
    margin-bottom: 0;
}
.kontakt .kontakt-card .kontakt-details .kontakt-item:last-child {
    margin-bottom: 0;
}
.kontakt .kontakt-card .social-links {
    display: flex;
    gap: 12px;
}
.kontakt .kontakt-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 16px;
    transition: all 0.3s ease;
}
.kontakt .kontakt-card .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}
@media (max-width: 992px) {
    .kontakt .kontakt-card,
    .kontakt .newsletter-card,
    .kontakt .kontakt-form-wrapper {
        padding: 25px;
    }
}
@media (max-width: 768px) {
.kontakt h4 {
    font-size: 18px;
	} 
    .kontakt .kontakt-card h3 {
        font-size: 20px;
    }
    .kontakt .newsletter-card h3 {
        font-size: 18px;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Footer =================================================================================================================*/
/*=========================================================================================================================*/
.footer {
    color: #FFFFFF;
    width: 100%;
	height:918px;
    background-size: cover;
    background-image: url('../_images/id_0018/bg-footer1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
}
@media (max-width:575.98px) {
    .footer {
        height: 100%;
    }
}
.footer .footer-top {
    height: 580px;
}
.footer .footer-bottom {
    color: #FFFFFF;
    bottom: 0px;
    font-size: 15px;
    background: color-mix(in srgb, var(--background-color), transparent 30%);
}
.footer .col-link {
    padding: 20px 50px 0px 40px;
}
.footer .col-link h5 {
    color: #FFFFFF;
}
.footer .col-link h6 {
    color: #FFFFFF;
}
.footer .copyright {
    font-size: 12px;
}
.footer a {
    font-size: 16px !important;
    color: #FFFFFF !important
}
.footer a:hover {
    color: #FFFF00 !important;
    background-color: transparent !important;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Grundeinsellungen: Persönliches Styling und gemeinsame Klassen =========================================================*/
/*=========================================================================================================================*/
	.img-border {border:1px #000000 solid;}

	/* Buttons Width ======================================================================================================*/
	/*=====================================================================================================================*/
	.btn-120 {width: 120px;}
	.btn-160 {width: 160px;}
	.btn-180 {width: 180px;}
	.btn-200 {width: 200px;}
	.btn-220 {width: 220px;}
	.btn-240 {width: 240px;}
	.btn-260 {width: 260px;}
	.btn-280 {width: 280px;}
	.btn-300 {width: 300px;}
	.btn-350 {width: 350px;}
	
	/* Buttons Colors Outline =================================================================================================*/
	/*=====================================================================================================================*/
	.btn-rot 		    {color:#FFFFFF;border:2px:#FF0000;background-color:#FF0000;}
	.btn-rot:hover 	 	{color:#FFFFFF;border-color:#CA0C0C;background-color:#CA0C0C;}

	.btn-green 		 	{color:#FFFFFF;border:2px #018880;background-color:#018880;}
	.btn-green:hover	{color:#FFFFFF;border-color:2px:#017a72;background-color:#017a72;}   /*FF3C05*/

	.btn-orange 		{color:#FFFFFF;border:2px #FFFFFF;background-color:#FF4A17;}
	.btn-orange:hover 	{color:#FFFFFF;border-color:2px:#EB542B;background-color:#EB542B;}   /*FF3C05*/
	/*-------------------------------------------------------------------------------------------------------------------------*/
	.btn-outline-rot {
	  --bs-btn-color: #FF0000;
	  --bs-btn-border-color: #FF0000;
	  --bs-btn-hover-color: #FFFFFF;
	  --bs-btn-hover-bg: #FF0000;
	  --bs-btn-hover-border-color: #FF0000;
	  --bs-btn-focus-shadow-rgb: 13, 110, 253;
	  --bs-btn-active-color: #FFFFFF;
	  --bs-btn-active-bg: #FF0000;
	  --bs-btn-active-border-color: #FF0000;
	  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	  --bs-btn-disabled-color: #FF0000;
	  --bs-btn-disabled-bg: transparent;
	  --bs-btn-disabled-border-color: #FF0000;
	  --bs-gradient: none;
	}
	.btn-outline-green {
	  --bs-btn-color: #018880;
	  --bs-btn-border-color: #018880;
	  --bs-btn-hover-color: #FFFFFF;
	  --bs-btn-hover-bg: #018880;
	  --bs-btn-hover-border-color: #018880;
	  --bs-btn-focus-shadow-rgb: 13, 110, 253;
	  --bs-btn-active-color: #FFFFFF;
	  --bs-btn-active-bg: #018880;
	  --bs-btn-active-border-color: #018880;
	  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	  --bs-btn-disabled-color: #018880;
	  --bs-btn-disabled-bg: transparent;
	  --bs-btn-disabled-border-color: #018880;
	  --bs-gradient: none;
	}
	/*-------------------------------------------------------------------------------------------------------------------------*/
	.btn-outline-orange {
	  --bs-btn-color: #FF4A17;
	  --bs-btn-border-color: #FF4A17;
	  --bs-btn-hover-color: #FFFFFF;
	  --bs-btn-hover-bg: #FF4A17;
	  --bs-btn-hover-border-color: #FF4A17;
	  --bs-btn-focus-shadow-rgb: 13, 110, 253;
	  --bs-btn-active-color: #FFFFFF;
	  --bs-btn-active-bg: #FF4A17;
	  --bs-btn-active-border-color: #FF4A17;
	  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	  --bs-btn-disabled-color: #FF4A17;
	  --bs-btn-disabled-bg: transparent;
	  --bs-btn-disabled-border-color: #FF4A17;
	  --bs-gradient: none;
	}
	/*-------------------------------------------------------------------------------------------------------------------------*/
	/*-------------------------------------------------------------------------------------------------------------------------*/

	/* Background Colors ======================================================================================================*/
	/*=========================================================================================================================*/
	.bg-Blau-Weiss {
		color: #FFFFFF;
		background-color: #0D6EFD;
	}
	.bg-Gelb-Schwarz {
		color: #000000;
		background-color: #FFFF00;
	}
	.bg-Orange-Weiss {
		color: #FFFFFF;
		background-color: #ff4a17;
	}
	.bg-Grau-Schwarz {
		color: #000000;
		background-color: #CCCCCC;
	}
	.bg-H-Grau-Schwarz {
		color: #000000;
		background-color: #F4F5F2;
	}
	.bg-L-Grau-Schwarz {
		color: #000000;
		background-color: #D8D8D8;
	}
	.bg-Grün-Weiss {
		color: #FFFFFF;
		background-color: #5CB85C;
	}
	.bg-L-Grün-Schwarz {
		color: #000000;
		background-color: #99FF33;
	}
	.bg-Gold-Schwarz {
		color: #000000;
		background-color: Gold;
	}
	.bg-Rot-Weiss {
		color: #FFFFFF;
		background-color: #FF0000;
	}
	.bg-warning-schwarz {
		color: #000000;
		background-color: #FFC107;
	}
	.bg-success-weiss {
		color: #FFFFFF;
		background-color: #198754;
	}
	.bg-info-schwarz {
		color: #000000;
		background-color: #0DCAF0;
	}
	.bg-danger-weiss {
		color: #FFFFFF;
		background-color: #DC3545;
	}
	/*-------------------------------------------------------------------------------------------------------------------------*/
	/*-------------------------------------------------------------------------------------------------------------------------*/

	/* Input Felder =======================================================================================================*/
	/*=====================================================================================================================*/
	.form-control:focus {
		border-color:#FFFF66!Important;
		background-color:#FFFF66!Important;
	}
	/*-------------------------------------------------------------------------------------------------------------------------*/
	/*-------------------------------------------------------------------------------------------------------------------------*/

	/* Input Radio Button =====================================================================================================*/
	/*=========================================================================================================================*/
	input[type=radio] {
		width:11px;
		height:11px;
		margin-left:-1px;
		padding-left:0px;
		padding-right:0px;
		border-radius:11px;
		background-color:#ECECEC;
	}
	input[type=radio]:hover {box-shadow:0px 0px 10px 10px #FFFF99;}

	.Radio-Green[type=radio] {
		width:11px;
		height:11px;
		margin-left:-1px;
		padding-left:0px;
		padding-right:0px;
		border-radius:11px;
		background-color:#ECECEC;
	}
	.Radio-Green[type=radio]:hover {
		box-shadow:0px 0px 10px 10px #00FF00;
	}
	/*-------------------------------------------------------------------------------------------------------------------------*/
	/*-------------------------------------------------------------------------------------------------------------------------*/

	/* Input Checkbox Schalter ================================================================================================*/
	/*=========================================================================================================================*/
	.checkbox-sBtn input[type=checkbox] {display:none;}

	.checkbox-sBtn {
		width:22px;
		height:22px;
		display:block;
		position:relative;
	}
	.checkbox-sBtn label {
		width:22px;
		height:22px;
		border:1px #888888 solid;
		cursor:pointer;
		z-index:1;
		position:absolute;
		background:#FF0000;
		border-radius:3px;
	}
	.checkbox-sBtn input[type=checkbox]:checked + label {
		border:1px #888888 solid;
		background:#66FF33;
		border-radius:3px;
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Get-Started - Hintergrund Bild auf zusatz Seiten ===================================================================*/
	/*=====================================================================================================================*/
	.get-started {
		width: 100%;
		padding: 80px 0;
		display: flex;
		position: relative;
		min-height: 100vh;
		align-items: center;
		justify-content: center;
		background-size:cover; 
		background-image:url("../_images/id_0000/bg-home2.jpg");
		background-repeat:no-repeat;
		background-attachment:fixed; 
	}
	.get-started img-1 {
		inset: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		display: block;
		position: absolute;
		object-fit: cover;
	}
	.get-started:before {
		inset: 0;
		content: "";
		z-index: 2;
		position: absolute;
		background: color-mix(in srgb, var(--background-color), transparent 30%);
	}
	.get-started .container {
		top: -280px;
		z-index: 3;
		position: relative;
	}
	.get-started h3 {
		margin: 0;
		font-size: 38px;
		font-weight: 660;
	}
	.get-started h5 {
		color: color-mix(in srgb, var(--default-color), transparent 20%);
		margin: 0 auto;
		font-size: 24px;
	}
	.get-started .btn-get-started {
		color: var(--contrast-color);
		display: inline-block;
		padding: 10px 30px;
		font-size: 14px;
		transition: 0.3s;
		background: var(--accent-color);
		font-weight: 400;
		border-radius: 4px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	.get-started .btn-get-started:hover {
		background: color-mix(in srgb, var(--accent-color), transparent 20%);
	}
	.get-started .btn-watch-video {
		color: var(--default-color);
		font-size: 16px;
		transition: 0.5s;
		margin-left: 25px;
		font-weight: 400;
	}
	.get-started .btn-watch-video i {
		color: var(--accent-color);
		font-size: 32px;
		transition: 0.3s;
		line-height: 0;
		margin-right: 8px;
	}
	.get-started .btn-watch-video:hover {
		color: var(--accent-color);
	}
	.get-started .btn-watch-video:hover i {
		color: color-mix(in srgb, var(--accent-color), transparent 20%);
	}
	@media (max-width: 768px) {
		.get-started h2 {
			font-size: 32px;
		}
		.get-started p {
			font-size: 18px;
		}
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Modal Format =======================================================================================================*/
	/*=====================================================================================================================*/
	.md-70 {
		top: -40px;
		width: 70%;
		margin: 0px auto;
	}
	.md-90 {
		min-width: 90%;
		margin: 20px auto;
	}
	.md-98 {
		min-width: 98%;
		margin: 20px auto;
	}
	.modal-dialog {
		border-radius: 8px;
		background-color: #FFFFFF;
	}
	.modal-content {
		padding: 30px 0px 30px 0px;
		border-radius: 8px;
	}
	.modal-titel {
		color: #0066FF;
		padding: 0px;
		font-size: 22px;
		border-bottom: 1px #0066FF solid;
	}
	.modal-titel-X {
		float: right;
		color: #75758e;
		border: 0px;
		font-size: 28px;
		font-weight: bold;
		margin-top: -8px;
		background-color: transparent;
	}
	.modal-titel-X:hover {
		color: #FF0000;
	}
	.modal-left {
		padding-left: 20px;
	}
	.modal-text-body {
		padding: 0px 50px 0px 50px;
		font-size: 16px;
	}
	.modal-text-body h5 {
		padding: 0px;
		font-size: 16px;
	}
	.modal-text-body .bo-ri {
		border-right: 0.5px #000000 solid;
	}
	.modal-titel-h {
		color: #0066FF;
		padding: 0px;
		font-size: 16px;
		font-weight: bold;
		border-bottom: 1px #0066FF solid;
	}
	.modal-colline {
		border: 1px #E5E5E5 solid;
		padding: 8px 0px 8px 15px;
	}
	.modal-close {
		padding: 7px 0px 7px 0px;
		text-align: center;
		border-top: 0.5px #0066FF solid;
	}
	.modal-footer {
		height: 14px;
		padding: 0px;
		border-top: 0.5px #0066FF solid;
		border-bottom: 3px #0066FF solid;
		border-radius: 0 !important;
	}
	@media (max-width:575.98px) {
		.md-70 {
			min-width: 100% !important; top: 0px;
		}
		.md-90 {
			min-width: 100% !important;
		}
		.md-98 {
			min-width: 100% !important;
		}
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Social Links ========================================================================================= Weiss-Yellow */
	/*=====================================================================================================================*/
	.social-links-wy a 		 {color:#FFFFFF; width:36px; height:36x; font-size:24px; justify-content:center;}
	.social-links-wy a:hover {color:#FFFF00;}

	/* Social Links ============================================================================================ Grau-Blau */
	/*=====================================================================================================================*/
	.social-links-gb a 		 {color:var(--default-color); width:36px; height:36x; font-size:24px; justify-content:center;}
	.social-links-gb a:hover {color:var(--accent-color);}
	
	/* Social Links Einstellung der Sektion ===============================================================================*/
	/*=====================================================================================================================*/
	.team .social-links-gb    {gap: 9px; display:flex;}
	.footer .social-links-wy  {gap: 1px; display:flex;}
	.kontakt .social-links-wy {gap:12px; display:flex;}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Impressum ==========================================================================================================*/
	/*=====================================================================================================================*/
	.modal-text-body a 	   	 {color:#000000 !important;}
	.modal-text-body a:hover {color:#FF0000 !important;background-color:transparent !important;}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Impressum Left =====================================================================================================*/
	/*=====================================================================================================================*/
	.left-impressum    {padding:0px;}
	@media (max-width:575.98px) {
		.left-impressum {padding-left:15px !important;}
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Carosell Bootstrap =================================================================================================*/
	/*=====================================================================================================================*/
	.carousel-item {
		background-size:cover; 
		background-position:center center;
	}
	.carousel-item .row {
		padding:70px 0px 20px 0px;
	}
	@media (max-width:575.98px) {
		.carousel-item .row {padding:0px 0px 20px 0px;}
	}
	.carousel-title {padding:40px; position:relative;}
	.carousel-title h2 {
		color:#FFFFFF;
		position:relative;
		font-size:28px; 
		font-weight:700; 
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Gallery ============================================================================================================*/
	/*=====================================================================================================================*/
	.gallery {border:none; position:relative; background:none;}

	.gallery-header120 {height:120px;}
	.gallery-header300 {height:300px;}

	.gallery figure {top:0; left:0; position:absolute;}
	.gallery figcaption {
		left:1em;
		color:white;
		bottom:0.5em;
		position:absolute;
		font-size:2em;
		font-weight:bold;
	}
	@-webkit-keyframes bilder {
		  0% {opacity: 1;} 
		 34% {opacity: 1;}
		 35% {opacity: 0;}
		100% {opacity: 0;}
	}
	@keyframes bilder {
		  0% {opacity: 1;} 
		 34% {opacity: 1;}
		 35% {opacity: 0;}
		100% {opacity: 0;}
	}
	.gallery figure:nth-of-type(1) {animation:bilder 15s 7s infinite;-webkit-animation:bilder 15s 7s infinite;}
	.gallery figure:nth-of-type(2) {animation: bilder 15s 2s infinite;-webkit-animation: bilder 15s 2s infinite;}
	.gallery figure:nth-of-type(3) {animation: bilder 15s 12s infinite;-webkit-animation: bilder 15s 12s infinite;}
	@-webkit-keyframes wechseln {
		  0% {opacity: 1; transform: scale(1,1); z-index: 20;}
		 20% {opacity: 1; transform: scale(1,1);}
		 34% {opacity: 0; transform: scale(0,0);}
		100% {opacity: 1; transform: scale(0,0);}
	}
	@keyframes wechseln {
		  0% {opacity: 1; transform: scale(1,1); z-index: 20;}
		 20% {opacity: 1; transform: scale(1,1);}
		 34% {opacity: 0; transform: scale(0,0);}
		100% {opacity: 1; transform: scale(0,0);}
	}
	.gallery figure:nth-of-type(4) {animation: wechseln 15s 10s infinite;-webkit-animation: wechseln 15s 10s infinite;}
	.gallery figure:nth-of-type(5) {animation: wechseln 15s 5s infinite;-webkit-animation: wechseln 15s 5s infinite;}
	.gallery figure:nth-of-type(6) {animation: wechseln 15s infinite;-webkit-animation: wechseln 15s infinite;}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Call To Action Section =============================================================================================*/
	/*=====================================================================================================================*/
	.call-to-action-01{
		min-height: 400px;
		background-size: cover;
		background-image: url("../_images/id_0000/bg-callto1.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}

	.call-to-action-02{
		min-height: 400px;
		background-size: cover;
		background-image: url("../_images/id_0000/bg-callto2.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-03{
		min-height: 400px;
		background-size: cover;
		background-image: url("../_images/id_0000/bg-callto3.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-04{
		min-height: 400px;
		background-size: cover;
		background-image: url("../_images/id_0000/bg-callto4.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-05{
		min-height: 400px;
		background-size: cover;
		background-image: url("../_images/id_0000/bg-callto5.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-06{
		min-height: 400px;
		background-size: cover;
		background-image: url("../_images/id_0000/bg-callto6.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	@media (max-width:768px) {
		.call-to-action-01{ min-height: 200px; background-attachment: scroll; }
		.call-to-action-02{ min-height: 200px; background-attachment: scroll; }
		.call-to-action-03{ min-height: 200px; background-attachment: scroll; }
		.call-to-action-04{ min-height: 200px; background-attachment: scroll; }
		.call-to-action-05{ min-height: 200px; background-attachment: scroll; }
		.call-to-action-06{ min-height: 200px; background-attachment: scroll; }
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/
	
	/* Preloader ==========================================================================================================*/
	/*=====================================================================================================================*/
	#preloader {
		position: fixed;
		inset: 0;
		z-index: 999999;
		overflow: hidden;
		background: var(--background-color);
		transition: all 0.6s ease-out;
	}
	#preloader:before {
		content: "";
		position: fixed;
		top: calc(50% - 30px);
		left: calc(50% - 30px);
		border: 6px solid #ffffff;
		border-color: var(--accent-color) transparent var(--accent-color) transparent;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		animation: animate-preloader 1.5s linear infinite;
	}
	@keyframes animate-preloader {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Scroll Top Button ==================================================================================================*/
	/*=====================================================================================================================*/
	.scroll-top {
		position: fixed;
		visibility: hidden;
		opacity: 0;
		right: 15px;
		bottom: 15px;
		z-index: 99999;
		background-color: var(--accent-color);
		width: 40px;
		height: 40px;
		border-radius: 4px;
		transition: all 0.4s;
	}
	.scroll-top i {
		font-size: 24px;
		color: var(--contrast-color);
		line-height: 0;
	}
	.scroll-top:hover {
		background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
		color: var(--contrast-color);
	}
	.scroll-top.active {
		visibility: visible;
		opacity: 1;
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Global Page Titles =====================================================================================================*/
/*=========================================================================================================================*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}
.page-title:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}
.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}
.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}
.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.page-title .breadcrumbs .btn-get-started {
	width: 200px;
	color: var(--contrast-color);
	padding: 10px 30px;
	display: inline-block;
	font-size: 14px;
	background: var(--accent-color);
	font-weight: 400;
	transition: 0.3s;
	border-radius: 4px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.page-title .breadcrumbs .btn-get-started:hover {
  background:color-mix(in srgb, var(--accent-color), transparent 20%);
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Pulsating Play Button ==================================================================================================*/
/*=========================================================================================================================*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}
.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}
@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* PHP Email Form Messages ================================================================================================*/
/*=========================================================================================================================*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Disable aos animation delay on mobile devices ==========================================================================*/
/*=========================================================================================================================*/
@media screen and (max-width: 768px) { [data-aos-delay] {transition-delay:0 !important;} }
/*-------------------------------------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/
