
/* --------------------------------------------------
  xx. Import von anderen CSS-Dateien
-------------------------------------------------- */
@import url("abstaende.css");

/*@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@200;300;400;500;600;700;800&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --------------------------------------------------
  xx. Variablen
-------------------------------------------------- */
:root {
	/*--body-font: "Work Sans", Helvetica, Arial, sans-serif;*/
	/*--title-font: "Bebas Neue", Helvetica, Arial, sans-serif;*/
	--body-font: "Poppins", sans-serif;
	--title-font: "Poppins", sans-serif;
	
	--primary-color: #F34668;
	--secondary-color: #2b2785;
	--tertiary-color: #EADFD3;
}

/* --------------------------------------------------
  xx. Farben
-------------------------------------------------- */
.bg-color-01 {
	background-color: #EADFD3;
}
.bg-color-02 {
	background-color: #2b2785;
}
.bg-color-03 {
	background-color: #F34668;
}

.color-01 {
	color: #EADFD3;
}
.color-02 {
	color: #2b2785;
}
.color-03 {
	color: #F34668;
}


.bg-dark {
    color: #ffffff;
}


/* --------------------------------------------------
  xx. Container-Layout
-------------------------------------------------- */

@media (min-width: 576px) {
	.container-880px {
	  max-width: 540px;
	}
  }
  @media (min-width: 768px) {
	.container-880px {
	  max-width: 720px;
	}
  }
  @media (min-width: 992px) {
	.container-880px {
		max-width: 880px;
	}
  }
  @media (min-width: 1200px) {
	.container-880px {
		max-width: 880px;
	}
  }
  @media (min-width: 1400px) {
	.container-880px {
	  max-width: 880px;
	}
  }

/* --------------------------------------------------
  xx. Schriften
-------------------------------------------------- */
.poppins-thin {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: normal;
}

.poppins-extralight {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
}

.poppins-light {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.poppins-black {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: normal;
}

.poppins-thin-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: italic;
}

.poppins-extralight-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: italic;
}

.poppins-light-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
}

.poppins-regular-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.poppins-medium-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: italic;
}

.poppins-semibold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
}

.poppins-bold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: italic;
}

.poppins-extrabold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: italic;
}

.poppins-black-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: italic;
}

/* --------------------------------------------------
  xx. Global
-------------------------------------------------- */

body {
	margin-top: 88px;
	font-size: 1.25rem;
}

main section {
	padding: 150px 0px 100px 0px;
}

/* Ueberschriften */
main h1, 
main h2, 
main h4, 
main h3, 
main h5, 
main h6 {
    margin-top: 0;
    font-family: var(--title-font);
    /*font-weight: bold;*/

	text-transform: uppercase;
}


main h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

main h2 {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 52px;
}

main h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

main h4 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

main h5 {
    font-size: 18px;
}

main .bg-dark a {
	color: var(--tertiary-color);
}
main .bg-color-01 a {
	text-decoration: none;
	color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

main .bg-dark a:hover,
main .bg-color-01 a:hover {
	color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.wm {
    font-size: 200px;
    opacity: .05;
    position: absolute;
    left: 0;
    z-index: 0;
    width: 100%;
    text-align: center;
    font-family: var(--title-font);
    line-height: 70px;
    letter-spacing: 1rem;

	display: none; /* 12.04.2024 */
}

.bg-dark .wm {
    color: #ffffff;
}

main .bg-color-02 h2,
main .bg-color-02 h4,
main .bg-color-02 p,
main .bg-color-02 ol li {
    color: #ffffff;
}


.small-border {
    width: 50px;
    height: 2px;
    background: rgba(0, 0, 0, .5);
    border-left: none;
    border-right: none;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

.bg-color {
    background: var(--primary-color) !important;
}

.btn-secondary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--secondary-color);
	--bs-btn-hover-border-color: var(--secondary-color);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--primary-color);
	--bs-btn-active-border-color: var(--primary-color);
	color: white !important;
	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

/* 
-------------------------------------------------- */
.content-1-item {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 78px;
}

.content-2-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 78px;
}

.content-3-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 52px;
}

.content-4-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.content-5-items {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.content-6-items {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}


/* --------------------------------------------------
  xx. Header :: Menu
-------------------------------------------------- */

.navbar {
	--bs-navbar-padding-y: 1.5rem;

	-webkit-transition:padding 0.2s linear;
	-moz-transition:padding 0.2s linear;  
	-o-transition:padding 0.2s linear;
	transition:padding 0.2s linear;  
}

.navbar.shrink {
	--bs-navbar-padding-y: 0.5rem;

	-webkit-transition:padding 0.2s linear;
	-moz-transition:padding 0.2s linear;  
	-o-transition:padding 0.2s linear;
	transition:padding 0.2s linear;  
}

/* Farbe :: on ScrollSpy */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
	--bs-navbar-active-color: var(--primary-color);
	color: var(--bs-navbar-active-color);
}

.navbar li a {
	text-transform: uppercase;
}

.navbar.bg-dark a {
	--bs-navbar-color: rgba(255, 255, 255, 0.55);
}
.navbar.bg-dark a:hover {
	color: var(--primary-color);
}

.navbar.bg-color-01 a {
	color: var(--primary-color);
	
	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.navbar.bg-color-01 a:hover {
	color: var(--secondary-color);
}

.navbar-toggler {
	background-color: var(--primary-color);
	color: var(--primary-color);
}

/* --------------------------------------------------
  xx. Header :: Logo
-------------------------------------------------- */
.navbar .logo {
	width: 550px;
}

.navbar.shrink .logo {
	width: 250px;
}

.logo-jahr {
	line-height: 1;

	font-family: "Poppins", sans-serif;
	font-weight: 400;
	/*font-style: normal;*/
	font-weight: bolder;

	font-size: 46px;
	margin-left: 20px;
	color: #212529;
	text-shadow: 1px 1px 2px white, 0 0 3em white, 0 0 0.2em white;
	/*border: 1px solid red;*/
}

/* --------------------------------------------------
  xx. Header :: Carousel
-------------------------------------------------- */

/* Carousel base class */
.carousel {
	height: 100vh;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
	/* TODO: vertikal zentrieren */
	bottom: 25rem;
	z-index: 10;
}


/* Declare heights because of positioning of img element */
.carousel-item {
	height: 100vh;
}

/* --------------------------------------------------
  xx. Header :: Static
-------------------------------------------------- */
header .header-static img {
	width: 100%;
}

/* --------------------------------------------------
  xx. Main
-------------------------------------------------- */

/* --------------------------------------------------
  xx. Konzerte
-------------------------------------------------- */
.konzerte {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.konzerte .konzert {
	position: relative;
	border: 1px solid var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.konzerte .konzert .datum {
	padding: 10px 0px;

	font-size: 24px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;

	background-color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.konzerte .konzert .details {
	padding: 40px 20px;
	min-height: 550px;
	text-align: center;
}

.konzerte .konzert .details .programm {
	margin-bottom: 30px;
	/*font-size: 17px;*/
}

.konzerte .konzert .details .zeit {
	font-size: 20px;
	font-weight: bolder;

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.konzerte .konzert .details .band-name, 
.konzerte .konzert .details .ankuendigung-termin{
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-size: 30px;
	font-style: normal;
	text-transform: uppercase;

	color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.konzerte .konzert .details .ankuendigung-termin{
	font-size: 26px;
}

.konzerte .konzert .details .band-text {
	font-size: 20px;
}

.konzerte .konzert .ticket-bestellung {
	position: absolute;
	bottom: 0px;
	width: 100%;

	padding: 10px 0px;

	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 28px;

	background-color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.konzerte .konzert .ticket-bestellung a,
.konzerte .konzert .ticket-bestellung a:hover {
	text-decoration: none;
	color: white;
}

/* Effekt on Hover */
.konzerte .konzert:hover {
	border-color: var(--secondary-color);
}

.konzerte .konzert:hover .datum {
	background-color: var(--secondary-color);
}

/*
.konzerte .konzert:hover .details .zeit {
	color: var(--secondary-color);
}
*/
.konzerte .konzert:hover .details .band-name,
.konzerte .konzert:hover .details .ankuendigung-termin {
	color: var(--secondary-color);
}

.konzerte .konzert:hover .ticket-bestellung {
	background-color: var(--secondary-color);
}

@media (max-width: 1199.98px) {
	.konzerte {
		grid-template-columns: repeat(2, 1fr);
	}

	.konzerte .konzert .ticket-bestellung {
		font-size: 20px;
	}
}

/*
@media (max-width: 991.98px) {
	.konzerte .konzert .datum {
		font-size: 16px;
	}
	.konzerte .konzert .ticket-bestellung {
		font-size: 16px;
	}
	.konzerte .konzert .details .programm {
		font-size: 14px;
	}
}
*/

@media (max-width: 767.98px) {
	.konzerte {
		/*grid-template-columns: repeat(2, 1fr);*/
		display: block;
	}
	/*
	.konzerte {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 26px;
	}
	*/
	.konzerte .konzert {
		margin-bottom: 40px;
	}

	.konzerte .konzert .details {
		padding: 10px;
		min-height: auto;
	}

	.konzerte .konzert .details .programm {
		margin-top: 10px;
		margin-bottom: 10px;
	}


	.konzerte .konzert .datum {
		padding: 5px 0px;
		font-size: 14px;
	}

	.konzerte .konzert .details .zeit {
		font-size: 14px;
	}

	.konzerte .konzert .details .band-name,
	.konzerte .konzert .details .ankuendigung-termin {
		font-size: 18px;
	}

	.konzerte .konzert .details .band-text {
		font-size: 14px;
	}

	.konzerte .konzert .ticket-bestellung {
		position: relative;
		padding: 5px 0px;
		font-size: 14px;
	}
}


/* --------------------------------------------------
  xx. Bands
-------------------------------------------------- */
.bands {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	margin: 200px;
}

.bands .band {
	position: relative;
	border: 1px solid var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.bands .band .bild {
	/*height: 400px;*/
	height: 500px;
	overflow: hidden;
}

.bands .band .bild img {
	height: 100%;
	width: 100%;
	/*object-fit: contain;*/	/* auf max Höhe & Breite skalieren ohne Bild zu verzerren */
	/*object-fit: cover;*/	/* auf Breite / Höhe skalieren => wenn Verhältnis nicht passt, wird Rest abgeschnitten*/

	object-fit: cover;
}

.bands .band .name {
	position: absolute;
	bottom: 0px;
	width: 100%;
	padding: 10px 0px;

	background-color: var(--primary-color);
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.bands a .name,
.bands a:hover .name {
	text-decoration: none;
	color: white;
}

/* Effekt on Hover */
.bands .band:hover {
	border-color: var(--secondary-color);
}

.bands .band:hover .name {
	background-color: var(--secondary-color);
}


.modal {
	--bs-modal-bg: #212529;
	color: white;
}

.modal h2 {
	font-size: 24px;
	text-transform: uppercase;
}

.modal .modal-body {
	font-size: 20px;
}

.modal .btn-close {
	filter: brightness(0) invert(1);
}

.modal .btn-secondary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--secondary-color);
	--bs-btn-hover-border-color: var(--secondary-color);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--primary-color);
	--bs-btn-active-border-color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

@media (max-width: 1399.98px) {
	.bands {
		grid-template-columns: repeat(3, 1fr);
		margin: 0px;
	}
	.bands .band .bild {
		height: 400px;
	}
	.bands .band .name {
		padding: 8px 0px;
		font-size: 18px;
	}

}

@media (max-width: 1199.98px) {
	.bands {
		grid-template-columns: repeat(3, 1fr);
	}
	.bands .band .bild {
		height: 400px;
	}

	.bands .band .name {
		padding: 8px 0px;
		font-size: 16px;
	}
}
@media (max-width: 991.98px) {
	.bands {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.bands {
		/*grid-template-columns: repeat(2, 1fr);*/
		display: block;
	}
	.bands a {
		text-decoration: none;
	}

	.bands .band {
		margin-bottom: 30px;
	}

	.bands .band .bild {
		height: auto;
	}
	.bands .band .bild img {
		object-fit: contain;
	}

	.bands .band .name {
		position: relative;
		padding: 5px 0px;
		font-size: 14px;
	}

	main .modal h2 {
		font-size: 20px;
	}
}

/* --------------------------------------------------
  xx. Rückblick
-------------------------------------------------- */

.rueckblick-galerien {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.rueckblick-galerien .galerie {
	position: relative;
}

.rueckblick-galerien .galerie .titel {
	position: absolute;
	bottom: 0px;
	width: 100%;
	padding: 5px;

	font-size: 20px;
	background-color: var(--primary-color);
	color: #fff;

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.rueckblick-galerien .galerie:hover .titel {
	background-color: var(--secondary-color);
}

.rueckblick-galerien .galerie img {
	height: 300px;
	width: 100%;
	object-fit: cover;
	overflow: hidden;
}

@media (max-width: 1199.98px) {
	.rueckblick-galerien {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 767.98px) {
	
	.rueckblick-galerien {
		grid-template-columns: repeat(3, 1fr);
	}

	.rueckblick-galerien .galerie img {
		height: 150px;
	}

	.rueckblick-galerien .galerie .titel {
		font-size: 14px;
	}

}

/* --------------------------------------------------
  xx. Sponsoren
-------------------------------------------------- */
.sponsoren img {
	width: 100%;
}

/* --------------------------------------------------
  xx. Kontakt :: Google Map
-------------------------------------------------- */

#kontakt-map {
	height: 500px;
}

@media (max-width: 767.98px) {
	#kontakt-map {
		height: 250px;
	}
}

/* --------------------------------------------------
  xx. Footer
-------------------------------------------------- */

footer section {
	padding: 75px 0px;
}

footer h3 {
	font-family: var(--title-font);
    font-size: 22px;
    margin-bottom: 20px;
}


footer .table span {
	color: var(--primary-color);
}

footer .table a {
	text-decoration: none;
	color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

footer .table a:hover {
	color: var(--secondary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.quick-links ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.quick-links ul li a {
	text-decoration: none;
	color: var(--primary-color);

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.quick-links ul li a:hover {
	color: var(--secondary-color);
	
	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.social-icons {
	padding-top: 20px;
}

.social-icons ul {
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 0px;
}

.social-icons ul li {
	margin-right: 5px;
}

.social-icons ul li a {
	background-color: var(--primary-color);
	color: #fff;
	padding: 20px;

	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.social-icons ul li a:hover {
	background-color: var(--secondary-color);
}

/* --------------------------------------------------
  xx. Back To Top / Scroll To Top
-------------------------------------------------- */

#scrollUp {
	bottom: 20px;
	right: 20px;
	padding: 10px;
	background-color: transparent;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	color: var(--primary-color);
	text-decoration: none;
	
	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	
}

#scrollUp i {
	display: block;
	font-size: 10px;
}

#scrollUp:hover {
	background-color: var(--primary-color);
	color: #fff;
	text-decoration: none;
	
    transform: scale(1.5);
}

/* --------------------------------------------------
  xx. Effekte
-------------------------------------------------- */
.img-scale {
	overflow: hidden;
}

.img-scale img {
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	width: 100%;
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.img-scale:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

/* --------------------------------------------------
	Responsive-Design
-------------------------------------------------- */

/* Small devices (landscape phones, 576px and up)
-------------------------------------------------- */
@media (min-width: 576px) {

}


/* Medium devices (tablets, 768px and up)
-------------------------------------------------- */

@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up)
-------------------------------------------------- */

@media (min-width: 992px) {

}


/* X-Large devices (large desktops, 1200px and up)
-------------------------------------------------- */
@media (min-width: 1200px) {

}


/* XX-Large devices (larger desktops, 1400px and up)
-------------------------------------------------- */
@media (min-width: 1400px) {  
	.carousel-caption p {
		margin-bottom: 1.25rem;
		font-size: 1.25rem;
		line-height: 1.4;
	}
}

/* X-Large devices (large desktops, less than 1400px)
-------------------------------------------------- */
@media (max-width: 1399.98px) {

}

/* Large devices (desktops, less than 1200px)
-------------------------------------------------- */
@media (max-width: 1199.98px) {
	
}

/* Medium devices (tablets, less than 992px)
-------------------------------------------------- */
@media (max-width: 991.98px) {
	body {
		margin-top: 72px;
	}
	
	.navbar {
		--bs-navbar-padding-y: 1.0rem;
	}

	.navbar .logo {
		width: 350px;
		/*border: 1px solid red;*/
	}
	.logo-jahr {
		margin-top: 5px;
		font-size: 28px;
		margin-left: 15px;
	}
	
	.navbar.shrink .logo {
		width: 250px;
	}
	
	main h1 {
		font-size: 45px;
	}

	main h2 {
		font-size: 36px;
	}

	main h3 {
		font-size: 18px;
	}

	main h4 {
		font-size: 15px;
	}

	main h5 {
		font-size: 14px;
	}

	.wm {
		font-size: 80px;
		letter-spacing: 0.25rem;
		line-height: 35px;
		/*display: none;*/
	}

}

/* Small devices (landscape phones, less than 768px)
-------------------------------------------------- */
@media (max-width: 767.98px) {

	.mb-100 {
		margin-bottom: 50px;
	}

	main section {
		padding: 75px 0px 50px 0px;
	}

	footer .col-xxl-4 {
		margin-bottom: 50px;
	}
	
}

/* X-Small devices (portrait phones, less than 576px)
-------------------------------------------------- */
@media (max-width: 575.98px) {

}

/* 
-------------------------------------------------- */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* 
-------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991.98px) {

}

/* 
-------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* 
-------------------------------------------------- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}
