/* ------------------ Main --------------------- */
main {
  flex: 1;
}
.hero {
  margin-top: 100px;
}
.brandlogo{
width: 30%;
min-width: 250px;
}
.welcome {
  font-size: clamp(12px, 4vw, 24px);
  margin: 0 10vw;
}
.description {
  color: #aaa;
  font-size: clamp(10px, 2vw, 16px);
  margin: 20px 10vw;
}
.Options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 80px;
  flex-wrap: wrap;
}
.optionsbox {
  background: #0f0f0f;
  border-radius: 20px;
  height: 260px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.optionsbox:hover {
  transform: translateY(-5px);
  transform: scale(1.2);
  background: #151515;
}
.icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.icon img {
  width: 70px;
}

.optionsbox h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.optionsbox p {
  color: #aaa;
  font-size: 14px;
  max-width: 220px;
}
.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.badge {
  color: #aaa;
  font-size: 14px;
  max-width: 220px;
}


@media (max-width: 600px) {
  .optionsbox{
    min-width: 230px;
  }
}