/* GLOBALE WEBSEITEN EINSTELLUNGEN*/
body {color: #fcfcfc; filter: drop-shadow(2px 3px 1px black);}                              /*Schriftfarbe für alle Texte auf der gesamten Webseite*/
body {background-image: url('/images/BACKGROUND/BERLIN-BASS-ELITE-BACKGROUND-04.jpg');}	    /*Hintergrundgrafik auf der gesamten Internetseite*/
body {display: flex;
justify-content: center;}
body {background-size: cover;}										                        /*Die Grafik wird auf Bildschirmbreite gestreckt*/

/* DOKUMENTIERTE MENÜ EINSTELLUNGEN*/
.container-header {background-image: linear-gradient(90deg,#220c2f 0,#161753 100%);}         /*Hintergrundfarbverlauf des Header Containers*/
.container-header .mod-menu {text-decoration: none;}
.container-header .mod-menu {font-size: 2em;}                                                /*Schriftgröße der Menüschrift*/
.container-header .mod-menu {filter: drop-shadow(2px 3px 1px black);}                        /*Farbiger Schatten hinter der Menüschrift*/
.container-header .container-nav {padding-bottom: 0em;justify-content: space-evenly; 	/*Extrem wichtig: CSS Responsive Funktion innerhalb des Menüe zwischen Logo und Menü*/}
.container-header {border-bottom: 3px solid black;}	                                         /*Farbige Linie am unteren Rand des Header Containers*/
.container-header {border-top: 3px solid black;}	                                         /*Farbige Linie am oberen Rand des Header Containers*/
.metismenu.mod-menu .metismenu-item {font-size: 2em;}

/* DOKUMENTIERTE FOOTER EINSTELLUNGEN*/
.footer {background-color: #110e0e;}                                                          /*Hintergrundfarbe des Footer Containers*/
.footer {background-image: linear-gradient(90deg,#220c2f 0,#161753 100%);}                    /*Hintergrundfarbverlauf des Footer Containers*/
.footer {border-bottom: 3px solid black;}											          /*Farbige Linie am unteren Rand des Footer Containers*/
.footer {border-top: 3px solid black;}												          /*Farbige Linie am oberen Rand des Footer Containers*/
.footer .grid-child {padding-top: 20px;}                                                      /*Abstand der Schrift zum Rand des Footer Containers*/
.footer .grid-child {padding-bottom: 20px;}                                                   /*Abstand der Schrift zum Rand des Footer Containers*/


/* TOTAL INSANE MEDIA - COOL CSS BUTTON 001*/
/* TOTAL INSANE MEDIA - COOL CSS BUTTON 001 - CONTAINER CONFIGURATION*/
.timccb001container {background: #0000;}
.timccb001container {justify-content: center;}
.timccb001container {align-items: center;}
.timccb001container {min-height: 200px;}
.timccb001container {display: flex;}
.timccb001container {width: 100%;}
.timccb001container {flex-wrap: wrap;}
/* TIM - Cool CSS BUTTON 001 - BUTTON CONFIGURATION*/
.timccb001 {padding: 10px 50px;}                                                             /*Abstandsregelung von Schrift und Rahmen*/
.timccb001 {font-size: 2.0rem;}                                                              /*Hier wird die Größe der Schrift eingestellt*/
.timccb001 {color: var(--color);}                                                            /*Die Schriftfarbe entspricht dem HTML-Link*/

.timbutton {
  position: relative;
  padding: 10px 50px;
  font-size: 2.0rem;
  color: var(--color);
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  text-shadow: 0 0 2px var(--color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: 0.5s;
  z-index: 1;
}
.timbutton:hover {
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 0px var(--color);
}

.timbutton::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  z-index: -1;
  transform: scale(0);
  transition: 0.5s;
}

.timbutton:hover::before {
  transform: scale(1);
  transition-delay: 0.5s;
  box-shadow: 0 0 10px var(--color),
    0 0 30px var(--color),
    0 0 60px var(--color);
}

.timbutton span {
  position: absolute;
  background: var(--color);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color),
    0 0 20px var(--color),
    0 0 30px var(--color),
    0 0 50px var(--color),
    0 0 100px var(--color);
  transition: 0.5s ease-in-out;
  transition-delay: 0.25s;
}

.timbutton:hover span {
  opacity: 0;
  transition-delay: 0s;
}

.timbutton span:nth-child(1),
.timbutton span:nth-child(3) {
  width: 40px;
  height: 4px;
}

.timbutton:hover span:nth-child(1),
.timbutton:hover span:nth-child(3) {
  transform: translateX(0);
}

.timbutton span:nth-child(2),
.timbutton span:nth-child(4) {
  width: 4px;
  height: 40px;
}

.timbutton:hover span:nth-child(1),
.timbutton:hover span:nth-child(3) {
  transform: translateY(0);
}

.timbutton span:nth-child(1) {
  top: calc(50% - 2px);
  left: -50px;
  transform-origin: left;
}

.timbutton:hover span:nth-child(1) {
  left: 50%;
}

.timbutton span:nth-child(3) {
  top: calc(50% - 2px);
  right: -50px;
  transform-origin: right;
}

.timbutton:hover span:nth-child(3) {
  right: 50%;
}

.timbutton span:nth-child(2) {
  left: calc(50% - 2px);
  top: -50px;
  transform-origin: top;
}

.timbutton:hover span:nth-child(2) {
  top: 50%;
}

.timbutton span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -50px;
  transform-origin: bottom;
}

.timbutton:hover span:nth-child(4 ) {
  bottom: 50%;
}



/* TOTAL INSANE MEDIA - COOL CSS BUTTON 002*/
/* TOTAL INSANE MEDIA - COOL CSS BUTTON 002 - CONTAINER CONFIGURATION*/
.timccb002container {background: #0000;}
.timccb002container {justify-content: center;}
.timccb002container {align-items: center;}
.timccb002container {min-height: 500px;}
.timccb002container {display: flex;}
.timccb002container {width: 100%;}
/* TOTAL INSANE MEDIA - COOL CSS BUTTON 002 - BUTTON CONFIGURATION*/
:root {--glow-color: hsl(186 100% 69%);}
* {box-sizing: border-box;}
*::before {box-sizing: border-box;}
*::after {box-sizing: border-box;}
.glowing-btn {color: var(--glow-color);perspective: 2em;}
.glowing-btn {font-size: 2em;letter-spacing: 1em;background: none;}
.glowing-btn {position: relative;cursor: pointer;}
.glowing-btn {padding: 0.35em 1em;}
.glowing-btn {border: 0.15em solid var(--glow-color);border-radius: 0.45em;}
.glowing-btn {-webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),0px 0px 0.5em 0px var(--glow-color);}
.glowing-btn {-moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),0px 0px 0.5em 0px var(--glow-color);}
.glowing-btn {box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),0px 0px 0.5em 0px var(--glow-color);}
.glowing-btn {animation: border-flicker 2s linear infinite;}
.glowing-txt {float: left;margin-right: -0.8em;}
.glowing-txt {-webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),0 0 0.45em var(--glow-color);}
.glowing-txt {-moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),0 0 0.45em var(--glow-color);}
.glowing-txt {text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);}
.glowing-txt {animation: text-flicker 3s linear infinite;}
.faulty-letter {opacity: 0.5;animation: faulty-flicker 2s linear infinite;}
.glowing-btn::before {content: "";position: absolute;top: 0;bottom: 0;}
.glowing-btn::before {left: 0;right: 0;opacity: 0.7;filter: blur(1em);}
.glowing-btn::before {transform: translateY(120%) rotateX(95deg) scale(1, 0.35);}
.glowing-btn::before {background: var(--glow-color);pointer-events: none;}

.glowing-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--glow-color);
  box-shadow: 0 0 2em 0.2em var(--glow-color);
  transition: opacity 100ms linear;}
.glowing-btn:hover {color: rgba(0, 0, 0, 0.8);text-shadow: none;animation: none;}
.glowing-btn:hover .glowing-txt {animation: none;}
.glowing-btn:hover .faulty-letter {animation: none;text-shadow: none;opacity: 1;}
.glowing-btn:hover:before {filter: blur(1.5em);opacity: 1;}
.glowing-btn:hover:after {opacity: 1;}
@keyframes faulty-flicker {
  0% {opacity: 0.1;}
  2% {opacity: 0.1;}
  4% {opacity: 0.5;}
  19% {opacity: 0.5;}
  21% {opacity: 0.1;}
  23% {opacity: 1;}
  80% {opacity: 0.5;}
  83% {opacity: 0.4;}
  87% {opacity: 1;}}

@keyframes text-flicker {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 1;
  }

  8% {
    opacity: 0.1;
  }

  9% {
    opacity: 1;
  }

  12% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.2;
  }

  77% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes border-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.1;
  }

  8% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .glowing-btn{
    font-size: 1em;
  }
}
