.plagin-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.plagin-desc {
  flex-grow: 1;
}

.form-control::placeholder {
  color: #00000038;
  opacity: 1;
}

.hero-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.hero-btn-rocket {
  display: block;
  flex: 0 0 auto;
  width: 0;
  height: auto;
  margin-right: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: width 0.28s ease, margin-right 0.28s ease, opacity 0.2s ease,
    transform 0.28s ease;
  will-change: width, margin-right, transform, opacity;
}

.hero-btn-text {
  white-space: nowrap;
  transition: transform 0.28s ease;
}

.hero-btn:hover .hero-btn-rocket {
  width: 28px;
  margin-right: 8px;
  opacity: 1;
  transform: translateX(0);
}

.hero-btn:hover .hero-btn-text {
  transform: translateX(2px);
}
