/*=========================================================================================================================*/
/* 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:#FF4A17;     /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--default-color:#444444;    /* Default color used for the majority of the text content across the entire website */
	--heading-color:#273D4E;    /* Color for headings, subheadings and title throughout the website */
	--surface-color:#FFFFFF;    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color:#FFFFFF;   /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
	--background-color:#FFFFFF; /* Background color for the entire website, including individual sections */
}
/* Nav Menu Colors - Die Farbvariablen werden für das Navigationsmenü verwendet. Sind von den globalen Farben getrennt ====*/
/*=========================================================================================================================*/
:root {
	--nav-color:#FFFFFF;                     /* The default color of the main navmenu links */
	--nav-hover-color:#FFFFFF;               /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color:#FF4A17;   /* Used as the background color for mobile navigation menu */
	--nav-dropdown-color:#E5EAEE;            /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color:#FFFFFF;      /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
	--nav-dropdown-background-color:#FF4A17; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* 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:#F0F0F0;  /* #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);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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);
	color:var(--default-color);
	margin:0 auto;
	z-index:997;
	padding:10px 0px 16px 0px;
	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 .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:50px;margin-right:0px;}
	.header .logo h3  {font-size:20px; 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;}
}

.scrolled .header {box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Header Transparent to Color on Scroll ==================================================================================*/
/*=========================================================================================================================*/
/* Farbgebung: Standartwert: rgba(21, 34, 43, 0.85) / Orange: rgba(255, 74, 23, 0.85) =====================================*/
.scrolled .header {--background-color:rgba(21, 34, 43, 0.85);}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* 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 ================================================================================================================*/
/*=========================================================================================================================*/
section,
.section {
	color:var(--default-color);
	padding:20px 0;
	overflow:clip;
	background-color:var(--background-color);
	scroll-margin-top:90px;
}

@media (max-width: 1199px) {
  section,
  .section {scroll-margin-top:76px;}
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Section Top ============================================================================================================*/
/*=========================================================================================================================*/
.section-top {margin-top:-126px; padding-top:126px;}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Section Titel ==========================================================================================================*/
/*=========================================================================================================================*/
.section-title {padding-top:20px; padding-bottom:30px; position:relative;}

.section-title h2 {
	color:var(--accent-color);
	position:relative;
	font-size:28px; 
	font-weight:700; 
	border-bottom:1px solid;
	text-transform:uppercase;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Home ===================================================================================================================*/
/*=========================================================================================================================*/
.home {
	width:100%;
	padding:80px 0;
	display:flex;
	position:relative;
	min-height:100vh;
	align-items:center;
	justify-content:center;
}

.home .home-bg::before {
	inset:0;
	z-index:2;
	content:"";
	position:absolute;
	background:color-mix(in srgb, var(--background-color), transparent 30%);
}

.home img {
	inset:0;
	width:100%;
	height:100%;
	display:block;
	z-index:1;
	position:absolute;
	object-fit:cover;
}

.home .container {
	top:-100px;
	z-index: 3;
	position: relative;
}

.home h3 {
	margin:0;
	font-size:38px;
	font-weight:700;
	text-transform:uppercase;
}

.home p {
	color:color-mix(in srgb, var(--default-color), transparent 20%);
	margin:10px 0 0 0;
	font-size:24px;
}

.home .btn-get-started {
	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;
}

.home .btn-get-started:hover {
  background:color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .home h3 {font-size: 22px;}

  .home p  {font-size: 18px;}
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* About ==================================================================================================================*/
/*=========================================================================================================================*/
.about {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 {position:absolute; left:calc(50% - 47px); top:calc(50% - 47px);}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------
# Features Alt Section
--------------------------------------------------------------*/
.features-alt .nav-tabs {
 padding:30px;}

.features-alt .titelH4 {
	color:var(--accent-color);
	position:relative;
	padding-bottom:4px;
	text-align:left;
	font-size:22px; 
	font-weight:700; 
	border-bottom:1px solid;
}

.features-alt .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.features-alt .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.features-alt .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.features-alt .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features-alt .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features-alt .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.features-alt .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.features-alt .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.features-alt .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features-alt .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features-alt .tab-content .content-box h4 {color:var(--accent-color); font-size:20px; font-weight:700; margin-bottom: 20px; border-bottom:1px solid;}

.features-alt .tab-content .content-box h5 {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  font-size: 16px;
  padding: 10px;
  border-radius: 12px;
  position: relative;
}


.features-alt .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.features-alt .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.features-alt .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features-alt .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.features-alt .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.features-alt .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.features-alt .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features-alt .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.features-alt .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.features-alt .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.features-alt .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-alt .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.features-alt .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.features-alt .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.features-alt .tab-pane {
  transition: all 0.4s ease;
}

.features-alt .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features-alt .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .features-alt .nav-tabs {
    margin-bottom: 30px;
  }

  .features-alt .nav-tabs .nav-link {
    padding: 15px;
  }

  .features-alt .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features-alt .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features-alt .tab-content .content-box {
    padding: 30px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features-alt .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features-alt .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features-alt .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features-alt .tab-content .content-box {
    padding: 25px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features-alt .tab-content .content-box p {
    font-size: 15px;
  }
}



/* Privat Antrag ==========================================================================================================*/
/*=========================================================================================================================*/
.p-antrag {
	width: 100%;
}
.p-antrag .p-antrag-member {
	width: 100%;
	height: 100%;
	padding: 10px;
	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) {
	.p-antrag .p-antrag-member {
		flex-direction: column;
		justify-content: center !important;
		align-items: center !important;
	}
}
.p-antrag .p-antrag-member .pic {
	width: 40px;
	overflow: hidden;
	flex-shrink: 0;
	border-radius: 50%;
}
.p-antrag .p-antrag-member .pic img {
	transition: ease-in-out 0.3s;
}
.p-antrag .p-antrag-member:hover {
	transform: translateY(-10px);
}
.p-antrag .p-antrag-member .member-info {
	padding: 8px 0px 0px 10px;
}
@media (max-width: 468px) {
	.p-antrag .p-antrag-member .member-info {
		padding: 30px 0 0 0;
		text-align: center;
	}
}
.p-antrag .p-antrag-member h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}
.p-antrag .p-antrag-member span {
	display: block;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 10px;
}
@media (max-width: 468px) {
	.p-antrag .p-antrag-member span::after {
		left: calc(50% - 25px);
	}
}
.p-antrag .p-antrag-member p {
	margin: 10px 0 0 0;
	font-size: 14px;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Kontakt ================================================================================================================*/
/*=========================================================================================================================*/
.kontakt {
	margin:0 auto; 
	padding:20px 0; 
}

.kontakt h4 {color:var(--accent-color); font-size:22px; font-weight:700; margin-bottom:20px; border-bottom:1px solid;}

.kontakt .kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .kontakt .kontakt-info {
    margin-bottom: 40px;
  }
}

.kontakt .kontakt-card {
	
	  	background-color:#e8e8e8;      /* #f9f9f9 */ 

 /* background-color: var(--surface-color);*/
  font-size: 18px;
  border-radius: 10px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.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 {
    padding: 60px 0;
  }

  .kontakt .kontakt-card h3 {
    font-size: 20px;
  }

  .kontakt .newsletter-card h3 {
    font-size: 18px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------*/


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

/* Footer =================================================================================================================*/
/*=========================================================================================================================*/
.footer {
	color: #FFFFFF;
    width: 100%;
	min-height: 41vh;
	background-size: cover;
	background-image: url('../_images/id_0012/bg_footer1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
}

@media (max-width:575.98px) {.footer {height:100%;} }

.footer .footer-top {
	margin-top: 132px;
	height: 407px;
	margin: 0;
	padding: 0;
}

.footer .footer-bottom {
    color: #FFFFFF;
	width: 100%;
    bottom: 0;
    font-size: 15px;
	background: color-mix(in srgb, var(--background-color), transparent 20%);
}

.footer .row {
	padding: 10px;
}


.footer .col-link    {padding:20px 50px 0px 40px;}
.footer .col-link h5 {color:#FFFFFF;}
.footer .col-link h6 {color:#FFFFFF;}

.footer a 	    {
	color:#FFFFFF!important;
	font-size:17px!important;
}
.footer a:hover {
	color:#FF4A17!important;
	cursor: pointer;
	background-color:transparent!important;
}
.footer .copyright a {
    color: #FFFFFF !important;
    font-size: 14px !important;
}
.footer .copyright a:hover {
    color: #FF4A17 !important;
	cursor: pointer;
    background-color: transparent !important;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/

/* Footer-klein  ==========================================================================================================*/
/*=========================================================================================================================*/
.footer-klein{
	color: #FFFFFF;
    width: 100%;
	height: 360px;
	padding: 0;
	font-size: 15px;
	background-size: 100% 100%;
	background-image: url('../_images/id_0012/bg_footer1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
}

@media (max-width:575.98px) {.footer {height:100%;} }

.footer-klein .footer-bottom {
	height: 360px;
	margin-top: -20px;
	background: color-mix(in srgb, var(--background-color), transparent 20%);
}
.footer-klein .col-link {
	padding: 20px 50px 0px 40px;
}
.footer-klein .col-link h5 {
	color: #FFFFFF;
}
.footer-klein .col-link h6 {
	color: #FFFFFF;
}
.footer-klein a {
    color: #FFFFFF !important;
    font-size: 17px !important;
}
.footer-klein a:hover {
    color: #FF4A17 !important;
	cursor: pointer;
    background-color: transparent !important;
}
.footer-klein .copyright a {
    color: #FFFFFF !important;
    font-size: 14px !important;
}
.footer-klein .copyright a:hover {
    color: #FF4A17 !important;
	cursor: pointer;
    background-color: transparent !important;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/


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

	/* Buttons Text Left ==================================================================================================*/
	/*=====================================================================================================================*/
	.btn-TL {text-align: left;}

	/* Buttons Width ======================================================================================================*/
	/*=====================================================================================================================*/
	.btn-100 {width: 100% ;}
	.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;
	}
	/*-------------------------------------------------------------------------------------------------------------------------*/
	/*-------------------------------------------------------------------------------------------------------------------------*/

	/* Input Felder =======================================================================================================*/
	/*=====================================================================================================================*/
	.form-control:focus {
		background-color:#FFFF66!Important;
	}
	.form-select:focus {
		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 ============================================================================================================*/
	/*=========================================================================================================================*/
	.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_home.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 {
		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: #FF4A17;
		padding: 0px;
		font-size: 22px;
		border-bottom: 1px #FF4A17 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: #FF4A17;
		padding: 0px;
		font-size: 16px;
		font-weight: bold;
		border-bottom: 1px #FF4A17 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 #FF4A17 solid;
	}
	.modal-footer {
		height: 14px;
		padding: 0px;
		border-top: 0.5px #FF4A17 solid;
		border-bottom: 3px #FF4A17 solid;
		border-radius: 0 !important;
	}
	/
	@media (max-width:575.98px) {
		.md-70 {
			min-width: 100% !important;
		}
		.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-title {padding:40px; position:relative;}
	.carousel-title h2 {
		color:#FFFFFF;
		position:relative;
		font-size:28px; 
		font-weight:700; 
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/

	/* Carousel 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{
		background-image: url("../_images/id_0000/bg-callto1.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-02{
		background-image: url("../_images/id_0000/bg-callto2.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-03{
		background-image: url("../_images/id_0000/bg-callto3.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-04{
		background-image: url("../_images/id_0000/bg-callto4.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-05{
		background-image: url("../_images/id_0000/bg-callto5.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	.call-to-action-06{
		background-image: url("../_images/id_0000/bg-callto6.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
	/*---------------------------------------------------------------------------------------------------------------------*/
	/*---------------------------------------------------------------------------------------------------------------------*/
	
	/* 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: 100px 0px 8px 0px;
    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;} }
/*-------------------------------------------------------------------------------------------------------------------------*/

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