@charset "utf-8";
/* CSS Document */

body{font-family: "Noto Sans", sans-serif;
}



.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #ffffff !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: black !important;
    border: 0;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgb(243 243 243) !important;
}

.herobanner{
background-image:url(../images/stars.gif);
padding:120px 20px 40px 20px;
width:100%;
background-color:#000000;}


.statszone{
padding:60px 0px;
text-align:center;
background-color:#000000;
width:100%;
color:#000000;}


.wheelzone{
padding:60px 0px;
text-align:center;
background-color:#000000;
width:100%;
color:#000000;}

.gradtxt{
background: -webkit-linear-gradient(#0066CC, #990094); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;}




.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {

  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  

}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius:16px;

}

.flip-card-front {

  background-color: #bbb;
  color: black;

}

.flip-card-back {

  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}

.flipped .flip-card-inner {
  transform: rotateY(180deg);
}




.block {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  margin: 50px;
  display: inline-block;
  top:-50%;
}

.beacon {
  background: #ccc0;
}

.beacon-1:before, .beacon-1:after {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #22306B;
  position: absolute;
  top: 0;
  left: 0;
  animation: beacon 2.4s linear 0.6s infinite;
}
.beacon-1:after {
  animation: beacon 1.8s linear infinite;
}

@keyframes beacon {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.beacon-center {
  width: 10px;
  height: 10px;
  /*background: #22306B;*/
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}




.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    text-align: left;
    /*background-color: #fff;*/
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#181819+0,9fa257+100 */
background: linear-gradient(135deg,  #181819 0%,#9fa257 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}



.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #e7f1ff00;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}


.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe00;
    outline: 0;
    box-shadow: none !important;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    filter: invert(1);
}




a {
	position: relative;
	text-decoration: none;
	overflow: hidden;
}


a span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #FF0066, #0066FF);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

a span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #FF0066, #0066FF);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

a span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #FF0066, #0066FF);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

a span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #FF0066, #0066FF);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}








@media (min-width: 320px) and (max-width: 800px) {

.imgtops{
margin-top: -72% !important;}

}


