.layout-33-container {
  display: flex;
  justify-content: center;
  gap: 1vw;
}

.layout-33-wrapper {
  background-color: #2d2d2d;
  padding: 10px;
  border-radius: 10px;
  width: 380px;
}

.layout-33-wrapper:hover {
  background-color: #ffffff;
  color: #1c1c1c;
}

.boost-title {
  font-size: 28px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: 700;
}

.boost-price{
  font-size: 23px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: 700;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 10%,
    rgba(255, 255, 255, 0.7) 20%,
    #fff 50%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.4) 90%,
    transparent 100%
  );
  /* transition: background 0.3sease, height 0.3sease; */
}

.layout-33-wrapper:hover .horizontal-line {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 10%,
    rgba(0, 0, 0, 0.7) 20%,
    #000 50%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0.4) 90%,
    transparent 100%
  );
  height: 1px;
}

.boost-text {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-family: "avenir";
}

.boost-text,
.horizontal-line {
  margin-bottom: 20px;
}

.overview-anchor {
  text-align: center;
}

.overview-anchor a {
  color: #f47521;
  text-decoration: none;
  font-family: "avenir";
  font-weight: 800;
}

.bold-800 {
  font-weight: 800;
}

.bold-900 {
  font-weight: 900;
}

