/* Fonts */

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v32-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/poppins-v21-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Globals */

/* Fonts */
:root {
  --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: "Roboto",  sans-serif;
  --sans-font: "Poppins",  sans-serif;
}

/* Color */
:root { 
	--orange-light: #f9e7dc;
	--orange: #e08752;
	--orange-dark: #a8653d;
	
	--blue-light-2: #c6e6f5;
	--blue-light-1: #8eceeb;
	--blue: #53b4e0;
	--blue-dark: #3e87a8;
	
	--grey: #575c69; /* Farbe der Logo-Subline */
	--grey-light: #abadb4; /*#a8a9b4;*/
	
	--black: #000000;
	
	--white: #ffffff;
	
	--font-color: #2b1600; /* Orange mit 95% K */
	--font-color: #295a70; /* 50% schwarz auf blau */
	--font-color-inv: #eee;
	
	
	--background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
}


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

/*--------------------------------------------------------------
	# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
	font-size: 18px;
	scroll-behavior: smooth;
}
@media(min-width: 768px) {
	html {
		font-size: 20px;
	}
}

body {
  color: var(--font-color);
  background-color: var(--white);
  font-family: var(--default-font);
	font-size: 1rem;
	line-height: 1.4em;
  font-style: normal;
  font-weight: 400;
}

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

a:hover {
  color: var(--orange);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--font-color);
  font-family: var(--heading-font);
}

h1.sitename {
	display: none;
}

h3 {
	font-family: var(--default-font);
	color: var(--font-color);
	font-size: 1.4rem;
	font-weight: 400;
	margin: 1.5em 0 0.5em;
}
@media (min-width:576px) {
	h3 {
		font-size: 1.5rem;
	}
}
@media (min-width:768px) {
	h3 {
		font-size: 1.6rem;
	}
}
@media (min-width:992px) {
	h3 {
		font-size: 1.8rem;
	}
}

h4 {
	font-size: 1.125rem;
	font-weight: 500;
	margin: 1.5em 0 0.5em;
}

@media (min-width:576px) {
	h4 {
		font-size: 1.2rem;
	}
}
@media (min-width:768px) {
	h4 {
		font-size: 1.25rem;
	}
}
@media (min-width:992px) {
	h4 {
		font-size: 1.3rem;
	}
}

strong, .strong {
	font-weight: 500;
}

/*--------------------------------------------------------------
	# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--font-color-inv);
  background-color: var(--orange);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  /*border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
}

.header .profile-img img {
  margin: 2rem auto;
  display: block;
  max-width: 200px;
  border: 0 none;
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

@media (min-width: 1200px) {
	
  .header~main,
  .header~#footer {
    margin-left: 300px;
	}
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
	}
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--white);
  background-color: var(--blue);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--white);
  background-color: var(--blue);
}

/*--------------------------------------------------------------
	# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 20px;
  margin: 0;
}

.navmenu a/*,
	.navmenu a:focus*/ {
  color: var(--orange-light);
  padding: 15px 10px;
  font-family: var(--sans-font);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--white);
}

.navmenu a:hover .navicon {
	color: var(--blue-light-2);
}
.navmenu .active .navicon,
.navmenu .active:focus .navicon,
.navmenu .active:hover .navicon,
.navmenu .active:focus:hover .navicon{
  color: var(--blue-light-1);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: var(--blue);
  color: var(--white);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--font-color), transparent 90%);
  box-shadow: none;
  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);
}

/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--orange);
  padding: 15px 0 12px;
  color: var(--white);
	font-family: var(--sans-font);
}

#footer .copyright {
  text-align: center;
	font-size: 0.8rem;
}

#footer .links {
  padding-top: 6px;
  text-align: center;
  font-size: 0.9rem;
	font-weight: 400;
  color: var(--white);
}

#footer .links a {
  color: var(--white);
}

#footer .links a:hover {
  color: var(--orange-light);
}

/*--------------------------------------------------------------
	# 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(--blue) transparent var(--blue) 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(--blue);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--blue-light-1);;
  color: var(--white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
	# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 500;
}

/*--------------------------------------------------------------
	# Global Sections
--------------------------------------------------------------*/
section,
.section {
  background-color: var(--background-color);
  padding: 80px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
	# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 400;
	line-height: 1em;
	color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 20px;
	padding-left: 80px;
  position: relative;
	z-index: 1;
}

@media (min-width:576px) {
	.section-title h2 {
		font-size: 2.25rem;
		padding-left: 97px;
	}
}

@media (min-width:768px) {
	.section-title h2 {
		font-size: 2.5rem;
		padding-left: 110px;
	}
}

@media (min-width:992px) {
	.section-title h2 {
		font-size: 3.5rem;
		padding-left: 125px;
	}
}

.section-title h2::before {
  content: url("../img/bb-rechteck.svg");
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 70px;
  height: auto;
  z-index: -1;
}

@media (min-width:576px) {
	.section-title h2::before {
		bottom: -10px;
		width: 80px;
	}
}

@media (min-width:768px) {
	.section-title h2::before {
		bottom: -12px;
		width: 90px;
	}
}

@media (min-width:992px) {
	.section-title h2::before {
		bottom: -15px;
		width: 100px;
	}
}

/*--------------------------------------------------------------
	# Hero Section
--------------------------------------------------------------*/
section.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
	background-color: var(--orange);
}

.bb-hero-s {
	display: block;
}
.bb-hero-m {
	display: none;
}
.bb-hero-l {
	display: none;
}

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

.hero:before {
  content: "";
  background: rgba(255,255,255,0);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero p.einleitung {
  margin: 0;
  font-size: 1.75rem;
	color: var(--orange);
	text-align: center;
	line-height: 1.4em;
	/*text-shadow: 0 0 18px rgba(0,0,0,1),4px 4px 6px rgba(0,0,0,0.5),-4px -4px 6px rgba(0,0,0,0.5);*/
}
@media (min-width: 576px) {
	.hero p.einleitung {
    font-size: 2rem;
	}
}
@media (min-width: 768px) {
  .bb-hero-s {
		display: none;
	}
	.bb-hero-m {
		display: block;
	}
	.bb-hero-l {
		display: none;
	}
	.hero p.einleitung {
    font-size: 2rem;
	}
}
@media (min-width: 992px) {
  .hero p.einleitung {
    font-size: 2.25rem;
	}
}
@media (min-width: 1200px) {
  .bb-hero-s {
		display: none;
	}
	.bb-hero-m {
		display: none;
	}
	.bb-hero-l {
		display: block;
	}
	.hero p.einleitung {
    font-size: 2.5rem;
	}
}
@media (min-width: 1400px) {
  .hero p.einleitung {
    font-size: 3rem;
	}
}

.hero p.einleitung a {
  margin: 0;
  font-size: 0.8em;
	color: var(--orange);
	text-align: center;
	line-height: 1.4em;
}
.hero p.einleitung a:hover {
	color: var(--orange-dark);
}

/*--------------------------------------------------------------
	# Beratungsforum Braunschweig Section
--------------------------------------------------------------*/
section.beratungsforum-braunschweig {
	background-color: var(--white);
}

section.beratungsforum-braunschweig h2 {
  margin: 0 0 1em 0;
  font-size: 1.33rem;
	font-weight: 400;
	color: var(--font-color);
	text-align: center;
	line-height: 1.4em;
}
@media (min-width: 576px) {
  section.beratungsforum-braunschweig h2 {
	font-size: 1.5rem;
}
}

@media (min-width: 768px) {
  section.beratungsforum-braunschweig h2 {
    font-size: 1.5rem;
	}
}
@media (min-width: 992px) {
  section.beratungsforum-braunschweig h2 {
    font-size: 1.5rem;
	}
}
@media (min-width: 1200px) {
  section.beratungsforum-braunschweig h2 {
    font-size: 1.5rem;
	}
}
@media (min-width: 1400px) {
  section.beratungsforum-braunschweig h2 {
    font-size: 1.75rem;
	}
}

/*--------------------------------------------------------------
	# MPU-Vorbereitung Section
--------------------------------------------------------------*/
section.mpu-vorbereitung {
	background-color: var(--orange-light);
}

/* -- Link-Card -- */

a.link-card {
	display: block;
	background-color: var(--orange);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2); 
	border-radius: 1rem;
}
a.link-card:hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
}

.link-card-icon {
	color: var(--white);
	font-size: 5rem;
	text-align: center;
	padding: 1.5rem;
}

.link-card-text h4 {
	color: var(--white);
	font-size: 2rem;
	text-align: center;
	padding: 1rem;
}

.link-card-text h4 span {
	font-size: 1rem;
	line-height: 1rem;
}

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

/*--------------------------------------------------------------
	# Kosten Section
--------------------------------------------------------------*/
section.kosten {
	background-color: var(--white);
}

.kosten-item {
	
}

.kosten-inner {
	padding: 1rem;
	background-color: var(--orange-light);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2); 
	border-radius: 1rem;
	height: 100%;
}

.kosten-inner h4 {
	margin-top: 0;
	padding-bottom: 1rem;
	margin-bottom: 0.8rem;
	border-bottom: 1px solid rgba(43,22,0,0.1);
}

/*--------------------------------------------------------------
	# Kontakt Section
--------------------------------------------------------------*/
section.kontakt {
	background-color: var(--orange-light);
}

ul.fa-ul.adresse {
	margin-left: 1.5rem;
}

ul.fa-ul.adresse li {
	line-height: 1.4em;
	margin-bottom: 0.5rem;
}


ul.fa-ul.adresse li  i {
	color: var(--blue);
}

/*--------------------------------------------------------------
	# Über mich Section
--------------------------------------------------------------*/
section.ueber-mich {
	background-color: var(--white);
}

/*--------------------------------------------------------------
	# Offcanvas
--------------------------------------------------------------*/

.offcanvas.offcanvas-start {
  width: 95vw;
}
@media(min-width: 576px) {
	.offcanvas.offcanvas-start {
		width: 90vw;
	}
}
@media(min-width: 768px) {
	.offcanvas.offcanvas-start {
		width: 66vw;
	}
}
@media(min-width: 992px) {
	.offcanvas.offcanvas-start {
		width: 560px;
	}
}

#offcanvasImpressum.offcanvas,
#offcanvasDatenschutz.offcanvas,
.offcanvas h2,
.offcanvas h3,
.offcanvas h4,
.offcanvas h5 {
	font-family: var(--default-font);
}

.offcanvas {
	color: var(--font-color);
}

.offcanvas p {
	text-align: justify;
	hyphens: auto;
}

.offcanvas .offcanvas-header {
	background-color: var(--orange);
}

.offcanvas .offcanvas-header h2.offcanvas-title {
	color: var(--white);
	line-height: 1em;
}

.offcanvas .offcanvas-header h2.offcanvas-title span {
	font-size: 0.66em;
}

.offcanvas h3 {
	font-size: 1.25rem;
	font-weight: 500;
	margin: 1.5em 0 0.5em;
}
@media (min-width:576px) {
	.offcanvas h3 {
		font-size: 1.5rem;
	}
}
@media (min-width:768px) {
	.offcanvas h3 {
		font-size: 1.5rem;
	}
}
@media (min-width:992px) {
	.offcanvas h3 {
		font-size: 1.75rem;
	}
}

.offcanvas h4 {
	font-size: 1.125rem;
	font-weight: 500;
	margin: 1.5em 0 0.5em;
}

/*--------------------------------------------------------------
	# PS
--------------------------------------------------------------*/
.row-flex {
  display: flex;
  flex-wrap: wrap;
}

