html {
  scroll-behavior: smooth;
}
body {
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 400;
    font-size: 1.1rem;
    line-height: ;
	letter-spacing: 0;
    word-break: break-word;
	color: rgba(0,0,0,1);
	background-color: rgba(255,255,255,1);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%; 
	height:100%;
	position: relative;
    margin:0;
    padding: 0;
}
* {
	font-family: 'Roboto';
}

a {
    color: rgba(0,0,0,1);
    text-decoration: underlineXXX;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
a:hover {
    color: rgba(0,0,0,0.75);
}

h1, h2, h3, h4, h5,
.fw-bold.fs-1, .fw-bold.fs-2, .fw-bold.fs-3, .fw-bold.fs-4, .fw-bold.fs-5 {
    padding: 0;
    margin: 0;
    font-weight: 600;
    color: var(--c-teal);
}
h1, .fs-1 {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
}
header h1, header .fs-1,
footer h1, footer .fs-1 {
    line-height: normal;
}
h2, .fs-2 {
    font-size: 2.8rem !important;
    line-height: 3.2rem !important;
}
h3, .fs-3 {
    font-size: 2.4rem !important;
    line-height: 2.8rem !important;
}
h4, .fs-4 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
}
h5, .fs-5 {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}
p {
    margin: 15px 0;
    padding: 0;
}
h1 p, h2 p, h3 p, h4 p, h5 p {
    margin: 0;
    padding: 0;
}
.p-plain * {
    margin: 0;
    padding: 0;
}
strong {
    font-weight: 700;
}
.pointer {
    cursor: pointer;
}
@media (max-width: 991px) {
	h1 {
		font-size: 2rem;
        line-height: 2.5rem;
	}
	h2 {
		font-size: 2rem;
        line-height: 2.5rem;
	}
	h3 {
		font-size: 1.5rem !important;
        line-height: 2rem !important;
	}
	h4 {
		font-size: 1.3rem !important;
        line-height: 1.8rem !important;
	}
	h5 {
		font-size: 1.1rem !important;
        line-height: 1.5rem !important;
	}
}


.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.img-object-fit-cover {
    display: grid; 
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.img-object-fit-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    grid-row: 1; 
    grid-column: 1;
}

.img-w-100 img {
    width: 100%;
    margin: 1.5rem 0;
}

.vh-50 {
    height: 50vh;
}
.vh-75 {
    height: 75vh;
}
.min-vh-50 {
    min-height: 50vh;
}
.min-vh-75 {
    min-height: 75vh;
}
.height-100 {
    height: 100px;
}
.height-150 {
    height: 150px;
}
.height-200 {
    height: 200px;
}
.height-300 {
    height: 300px;
}
.height-500 {
    height: 500px;
}
.height-m300 {
    min-height: 300px;
}
.height-m400 {
    min-height: 400px;
}
.height-m500 {
    min-height: 500px;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}
.my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

@media (max-width: 991px) {
}

/* MODULE */
/* Collapse-Animation komplett deaktivieren (global) */
.collapse,
.collapsing,
.accordion .accordion-collapse {
  transition: none !important;
}
.collapsible .eintrag .fa-plus {
    display: inline-block;
}
.collapsible .eintrag[aria-expanded="true"] .fa-plus {
    display: none;
}
.collapsible .eintrag .fa-minus {
    display: none;
}
.collapsible .eintrag[aria-expanded="true"] .fa-minus {
    display: inline-block;
}