html,
body {
  height: 100vh;
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
  max-height: 100vh;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

a {
  color: inherit;

}

a:hover {
  color: inherit;
  filter: blur(1px)
}

ul {
  display: table;
  width: 100%;
  padding: 0px !important;
  margin: 0px !important;
  text-align: center;
}

ul li {
  display: table-cell;
  text-align: center;
}

.no-ul {
  text-decoration: none;
}

#logoImg {
  width: 100%;
}

.parent {
  overflow-y: scroll;
  height: 100vh;
  scroll-snap-points-y: repeat(100vh);
  scroll-snap-type: y mandatory;
}

section {
  height: 100vh;
  max-height: 100%;
  scroll-snap-align: start;
  position: relative;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  animation: throb 7s cubic-bezier(.2, .07, .19, .97) infinite;
}

#cubeCanv {
  z-index: -1;
  margin-inline: calc(4vh);
  margin-block: 4vh;
}

#bgCanv {
  width: 100vw;
  height: 100%;
  z-index: -2;
  display: block;
}

.content {
  height: 100%;
  max-height: 100%;
  padding: 0rem 1.4rem;
  padding-bottom: 0px !important;

}

.navbar {
  background: transparent;
  height: 100px;
}

.clr-dynamic {
  background-color: transparent;
  color: #000;
  transition: all .2s;

}

.logo-text {
  font-size: 4rem;
}

.twitter {
  font-size: 1.5rem !important;
}

.line-white {
  width: 80%;
  height: 3rem;
  background-color: transparent;
}

.circle-border {
  border-radius: 100px;
  padding-inline: 1rem;
}

.circle-border.left {
  border-left: 30px solid #fff;
  background-clip: padding-box;
}

.circle-border.right {
  border-right: 30px solid #fff;
  background-clip: padding-box;
}


/* Tabs */

/* Style the buttons inside the tab */
.tab {
  width: 100%;
  margin-block: 3rem 2rem;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: .5rem 0rem;
  margin-right: .5rem;
  font-size: 1rem;
  opacity: .5;
}

/* Change background color of buttons on hover */
.tab button:hover {
  /* background-color: #ddd; */
}

/* Create an active/current tablink class */
.tab button.active {
  opacity: 1;
  border-bottom: 5px solid #fff;
  outline-offset: -9px;
}

/* Style the tab content */
.tabcontent {
  display: none;
  font-size: 1.2rem;
  padding-block: .5rem;
}

.tabcontent.visible {
  display: block;
}

.tagcloud {
  margin: auto;
  margin-top: 1.5rem;
}

.hidden {
  display: none;
}

.founder-headshot {
  max-width: 100%;
  margin-block: 1.1rem;
  filter: grayscale(50%);
  border: 2px solid black;
  border-radius: 100%;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
}

.founder-headshot:hover {
  box-shadow: none;
}

.founder-sub {
  margin-inline: 1.1rem;

}

.founder-icon {
  padding-inline: .1rem;
  font-size: 1.3rem !important;
}

.founder-icon.first {
  margin-left: .5rem;
}

.founder-desc {
  margin: 1.1rem;
}

.logo-grid-img {
  max-width: 100%;
  padding-block: 1.1rem;
  filter: grayscale(100%)
}

.logo-grid-img.x-pad {
  padding-inline: 1.5rem;
}

.logo-grid-img:hover {
  filter: blur(2px) grayscale(100%);
}

.fade-in {
  opacity: 0;
  transition: opacity .25s ease-in;
}

.fade-in.appear {
  opacity: 1;
}

section.last {
  margin-bottom: 5rem;
}

.space-block {
  padding-block: 1rem;
}

@keyframes throb {
  0% {
    filter: blur(7px);
  }

  70% {
    filter: blur(0px);
  }

  100% {
    filter: blur(7px)
  }
}