:root {
  --main-color: #07D2FA;
  --background: #1d1d1e;
  --secondary: #262626;
  --link: #2600ff;
  --text-color: #fff;
  --secondary-text-color: #dcdcdc;
  --green: #228B22;
}

/* scroll bar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

.footer-dark {
  padding: 50px 0;
}

.footer-dark .item.text {
  margin-bottom: 36px;
}

.footer-dark .item.social {
  text-align: center;
}

.footer-dark .item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

.footer-dark .item.social > a:hover {
  background-color: #474350;
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
}

/* features */

.features-boxed {
  color: #313437;
  background-color: #eef4f7;
}

.features-boxed p {
  color: #7d8285;
}



@media (max-width:767px) {
  .features-boxed h2 {
    margin-bottom: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
}

.features-boxed .intro {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.features-boxed .intro p {
  margin-bottom: 0;
}

.features-boxed .features {
  padding: 50px 0;
}

.features-boxed .item {
  text-align: center;
}

.features-boxed .item .box {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 30px;
}

.features-boxed .item .icon {
  font-size: 60px;
  color: #1485ee;
  margin-top: 20px;
  margin-bottom: 35px;
}

.features-boxed .item .name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 0;
  color: inherit;
}

.features-boxed .item .description {
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
}

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

.shadow-lg.box:hover {
  background: rgb(244,241,241);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

a {
  color: var(--main-color);
}

/* accordion */

* {
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
  padding: 4rem;
  color: var(--secondary-text-color);
}

.accordion .accordion-item {
  border-bottom: 1px solid var(--text-color);
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid var(--link);
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--text-color);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: var(--link);
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--link);
  border-right: 1px solid var(--link);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: var(--link);
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 250em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

div#features {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  border-radius: 25px;
  background: var(--background);
}

div#features:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.partner:hover {
  border-radius: 598px;
  border-style: solid;
  border-color: var(--main-color);
}

.partner {
  width: 160px;
  height: 160px;
  transition: all 200ms linear;
}

.yeet {
  text-align: center;
  padding: 18px;
}

/* menu */

/* Zurücksetzen von Standard-Margins und Padding */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Haupt-Menüleiste */
.menu-bar {
  text-align: center;
  padding: 0px 0; /* Etwas mehr Abstand oben und unten */
  border-radius: 8px; /* Abgerundete Ecken */
  margin-left: 100px;
}

.menu-bar ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-bar ul li {
  position: relative;
  margin: 0 15px;
  padding: 5px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: normal; /* Normalgewicht für den Text */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Sanfte Übergänge */
  border-radius: 5px; /* Abgerundete Ecken für die Menüeinträge */
}

/* Menü-Link */
.menu-bar ul li a {
  text-decoration: none;
  color: #ccc; /* Dezente Textfarbe */
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease; /* Übergangseffekt für die Farbe */
}

/* Standardzustand für das Menü - nicht fett */
.menu-bar ul li {
  background-color: #333;
}

/* Hover-Effekt für Menüeinträge */
.menu-bar ul li:hover {
  background-color: #444; /* Etwas hellere Farbe bei Hover */
  transform: translateY(-3px); /* Leichtes Heben des Elements */
}

/* Hover-Effekt für Links */
.menu-bar ul li:hover a {
  color: #fff; /* Textfarbe beim Hover */
}

/* Aktiver Zustand (wenn der Button aktiv ist) */
.menu-bar ul li.active {
  background-color: #f39c12; /* Akzentfarbe für den aktiven Button */
  transform: translateY(-3px); /* Heben, wenn aktiv */
}

.menu-bar ul li.active a {
  color: #fff; /* Weißer Text für aktive Links */
}

/* Sub-Menü-1 (Untermenü) */
.sub-menu-1 {
  display: none;
  position: absolute;
  top: 100%;
  left: -120px;
  background: #222;
  margin-top: 5px;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
  z-index: 10;
  width: 180px;
}

.menu-bar ul li:hover .sub-menu-1 {
  display: block;
}

.menu-bar ul li:hover .sub-menu-1 ul {
  display: block;
  margin: 0;
  padding: 0;
}

.menu-bar ul li:hover .sub-menu-1 ul li {
  padding: 10px 20px;
  text-align: left;
  border-bottom: 1px solid #444;
  background: transparent;
  color: #fff;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.menu-bar ul li:hover .sub-menu-1 ul li:hover {
  background-color: #555; /* Sub-Menü Hover-Effekt */
}

.menu-bar ul li:hover .sub-menu-1 ul li:last-child {
  border-bottom: none;
}


/*new profile*/

.profile{
	background: #main-color;
	text-align: right;
}
.profile ul{
	display: inline-flex;
	list-style: none;
	color: #fff;
}
.profile ul li{
	width: 70px;
	margin: 5px;
	padding: 5px;
}
.profile ul li a{
	text-decoration: none;
	color: #fff;
}
.active, .menu ul li:hover{
	border-radius: 3px;
}
.sub-profile{
	display: none;
}
.profile ul li:hover .sub-profile{
	display: block;
	position: absolute;
	background: #000000;
	margin-top: 5px;
	margin-left: -120px;
}
.profile ul li:hover .sub-profile ul{
	display: block;
	margin: 10px;
}
.profile ul li:hover .sub-profile ul li{
	width: 150px;
	padding: 10px;
	border-bottom: 1px solid white;
	background: transparent;
	border-radius: 0;
	text-align: left;

}
.profile ul li:hover .sub-profile ul li:last-child{
	border-bottom: none;
}
