
nav ul a,
nav .brand-logo {
  color: #444;
}

p {
  line-height: 2rem;
}

.sidenav-trigger {
  color: #26a69a;
}

.parallax-container {
  min-height: 380px;
  line-height: 0;
  height: auto;
  color: rgba(255,255,255,.9);
}

.parallax-container .section {
  width: 100%;
}

@media only screen and (max-width : 992px) {
  .parallax-container .section {
    position: absolute;
    top: 40%;
  }
  #index-banner .section {
    top: 10%;
  }
}

@media only screen and (max-width : 600px) {
  #index-banner .section {
    top: 0;
  }
}

.icon-block {
  padding: 0 15px;
}
.icon-block .material-icons {
  font-size: inherit;
}

footer.page-footer {
  margin: 0;
}

.urbanist {
  font-family: 'Urbanist', sans-serif;
}

.rubik {
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
}

.animate {
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

.btn-zgen {
  position: relative;
  border-radius: 50px;
  border-bottom: 5px solid #263238;
  border-top: 1px solid #263238;
  border-left: 1px solid #263238;
  border-right: 1px solid #263238;
}

.btn-zgen:hover {
  background-color: #8c9eff !important;
  color: white !important;
}

.btn-zgen:active {
  transform: translate(0px,5px);
  -webkit-transform: translate(0px,5px);
  border-bottom: 1px solid;
}

.hoverable:hover {
    -webkit-box-shadow: 0 25px 32px 3px rgb(0 0 0 / 20%), 5px 14px 0px 0 rgb(0 0 0 / 42%);
    box-shadow: 0 25px 32px 3px rgb(0 0 0 / 20%), 5px 14px 0px 0 rgb(0 0 0 / 42%);
}

.scrolling-indices {
  display: block;
  margin: 0px auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40px;
}
 
.scrolling-indices div {
  position: absolute;
  min-width: 100%;
} 
 
.scrolling-indices div span {
  position: relative;
  top:0; left:0;
  display: inline-block;
  white-space: nowrap;
  line-height: 40px;
}
 
.scrolling-indices div span:first-child {
  animation: defilement 20s infinite linear;
}
 
.scrolling-indices div span:last-child {
  position: absolute;
  animation: defilement2 20s infinite linear;
}
 
@keyframes defilement {
  0% { margin-left: 0; }
  100% { margin-left: -100%; }
}
 
@keyframes defilement2 {
  0% { margin-left: 100%; }
  100% { margin-left: 0%; }
}


.full-page {
  margin: auto;
  text-align: center;
}

.full-height {
  height: 100%;
}

.body-flex {
  display: flex;
  height: 100%;
}

.bg-circle {
  background: radial-gradient(#FFF, #808DF7);
}
.bg-teal {
  background: linear-gradient(to bottom right, white, #64ffda);
}

.progress {
  display: none;
  background-color: #555;
}

.send-to-auction-bloc {
  display: none;
}

.carousel .indicators .indicator-item {
  background-color: #8C9EFF;
}

.carousel .indicators .indicator-item.active {
  background-color: #fff176;
}

#done {
  display: none;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #8C9EFF #64ffda;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #64ffda;
}

*::-webkit-scrollbar-thumb {
  background-color: #8C9EFF;
  border-radius: 20px;
  border: 3px solid #64ffda;
}

.tap-target {
  background: #8C9EFF;
}

.word-container .word-carousel {
  line-height: 60px;
  grid-template-columns: 1fr 2fr;
}
.word-container .word-carousel .change-word {
  overflow: hidden;
  height: 60px;
}
.word-container .word-carousel .change-inner {
  animation: word-rotate 5s ease-in-out infinite;
}

@keyframes word-rotate {
  0%, 5% {
    transform: translateY(0);
  }
  8%, 13% {
    transform: translateY(-60px);
  }
  16%, 21% {
    transform: translateY(-120px);
  }
  24%, 29% {
    transform: translateY(-180px);
  }
  32%, 37% {
    transform: translateY(-240px);
  }
  40%, 45% {
    transform: translateY(-300px);
  }
  48%, 53% {
    transform: translateY(-360px);
  }
  56%, 61% {
    transform: translateY(-420px);
  }
  64%, 69% {
    transform: translateY(-480px);
  }
  72%, 77% {
    transform: translateY(-540px);
  }
  80%, 85% {
    transform: translateY(-600px);
  }
  88%, 93% {
    transform: translateY(-660px);
  }
}