#Stacks {
  height: auto !important;
  display: flex;
}

#dotCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.grad {
  position: absolute;
  width: 100%;
  height: 70px;
  z-index: 10;
}
.grad.top {
  top: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.17), rgba(0, 0, 0, 0));
}
.grad.bottom {
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.17));
}

.Stacks_container {
  position: relative;
  max-width: 900px;
  min-height: 100vh;
  padding: 0px 25px;
  padding-bottom: 130px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: visible;
}
.Stacks_container h1 {
  position: relative;
  padding-top: 120px;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 900;
  color: rgb(156, 107, 212);
}
.Stacks_container h2 {
  position: relative;
  padding-top: 5px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
.Stacks_container .stacks_wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: 700ms ease;
}
.Stacks_container .stacks_wrap.visible {
  opacity: 1;
  transform: translateY(0);
}
.Stacks_container .stacks_wrap.visible .subTitle span {
  transform: scale(1);
}
.Stacks_container .subTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 15px;
}
.Stacks_container .subTitle span {
  position: relative;
  padding: 6px 25px;
  margin-left: 30px;
  text-align: center;
  font-weight: 300;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  border: 1px solid rgb(50, 50, 60);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  transform: scale(1.3);
  transition: 700ms ease;
}
.Stacks_container .subTitle span img {
  width: 20px;
  height: 20px;
  margin: 0 15px;
}
.Stacks_container .subTitle.backend {
  margin-top: 40px;
}
.Stacks_container .stack_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 130px;
  padding: 0 30px;
}
.Stacks_container .stack_container ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}
.Stacks_container .stack_container ul li {
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 90px;
  height: 90px;
  background-color: #000000;
  border-radius: 0px;
  border: 1px solid rgb(30, 30, 35);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: 300ms ease;
}
.Stacks_container .stack_container ul li::before {
  position: absolute;
  content: "";
  left: -1px;
  top: 50%;
  width: 330px;
  min-height: 140px;
  background-color: #000000;
  border: 1px solid rgb(30, 30, 35);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(-50%);
  transition: 300ms ease;
  z-index: 1;
}
.Stacks_container .stack_container ul li img {
  position: relative;
  width: 50px;
  z-index: 2;
}
.Stacks_container .stack_container ul li img.height_icon {
  width: auto;
  height: 50px;
}
.Stacks_container .stack_container ul li img.postgres_icon {
  width: 66px;
}
.Stacks_container .stack_container ul li div {
  position: absolute;
  width: 180px;
  left: 150px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  opacity: 0;
  transition: left 250ms ease, opacity 400ms ease;
  cursor: default;
  z-index: 2;
}
.Stacks_container .stack_container ul li div p:first-child {
  font-weight: 700;
  font-size: 1.1rem;
}
.Stacks_container .stack_container ul li div p:last-child {
  font-weight: 300;
  font-size: 0.8rem;
  padding-right: 15px;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .Stacks_container {
    width: 100%;
    padding: 0 20px;
    padding-bottom: 90px;
  }
  .Stacks_container h1 {
    padding-top: 56px;
    font-size: 2.2rem;
  }
  .Stacks_container h2 {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    color: rgb(190, 193, 203);
    font-size: 0.78rem;
    line-height: 1.45;
  }
  .Stacks_container .subTitle {
    margin-top: 38px;
    margin-bottom: 14px;
    justify-content: center;
  }
  .Stacks_container .subTitle span {
    padding: 5px 18px;
    margin-left: 0px;
    font-size: 0.82rem;
    letter-spacing: 0;
  }
  .Stacks_container .stack_container {
    width: 100%;
    min-height: 0;
    padding: 0;
  }
  .Stacks_container .stack_container ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    place-items: stretch;
    box-sizing: border-box;
  }
  .Stacks_container .stack_container ul li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 92px;
    padding: 12px;
    background-color: rgb(10, 11, 14);
    border: 1px solid rgb(44, 47, 57);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
  }
  .Stacks_container .stack_container ul li::before {
    display: none;
  }
  .Stacks_container .stack_container ul li div {
    position: relative;
    left: auto;
    width: 100%;
    opacity: 1;
    min-width: 0;
    min-height: 0;
    margin-left: 8px;
    overflow: hidden;
  }
  .Stacks_container .stack_container ul li div p {
    padding: 0;
    cursor: auto;
  }
  .Stacks_container .stack_container ul li div p:first-child {
    font-size: 0.92rem;
    line-height: 1.2;
  }
  .Stacks_container .stack_container ul li div p:last-child {
    display: -webkit-box;
    margin-top: 4px;
    color: rgb(196, 199, 207);
    font-size: 0.72rem;
    line-height: 1.35;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .Stacks_container .stack_container ul li img {
    width: 38px;
    justify-self: center;
  }
  .Stacks_container .stack_container ul li img.height_icon {
    width: auto;
    height: 38px;
  }
  .Stacks_container .stack_container ul li img.postgres_icon {
    width: 48px;
  }
}
@media (max-width: 500px) {
  .Stacks_container {
    padding: 0 14px;
    padding-bottom: 72px;
  }
  .Stacks_container h1 {
    padding-top: 44px;
    font-size: 1.9rem;
  }
  .Stacks_container .subTitle {
    margin-top: 32px;
    margin-bottom: 12px;
  }
  .Stacks_container .stack_container {
    padding: 0;
  }
  .Stacks_container .stack_container ul {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .Stacks_container .stack_container ul li {
    grid-template-columns: 50px minmax(0, 1fr);
    max-width: none;
    min-width: 100%;
    min-height: 78px;
    padding: 10px 12px;
  }
  .Stacks_container .stack_container ul li div {
    margin-left: 8px;
  }
  .Stacks_container .stack_container ul li img {
    width: 36px;
  }
  .Stacks_container .stack_container ul li img.height_icon {
    width: auto;
    height: 36px;
  }
  .Stacks_container .stack_container ul li img.postgres_icon {
    width: 46px;
  }
  .Stacks_container .stack_container ul li div p:last-child {
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 921px) {
  .stack_container ul li:hover,
  .stack_container ul li.active {
    overflow: visible;
    z-index: 5;
  }
  .stack_container ul li:hover::before,
  .stack_container ul li.active::before {
    opacity: 1;
  }
  .stack_container ul li:hover div,
  .stack_container ul li.active div {
    left: 90px;
    width: 225px;
    min-height: 140px;
    opacity: 1;
  }
} /*# sourceMappingURL=Stacks.css.map */
