.single-biz-registar-content {
  display: flex;
  padding-top: 0;
}
.single-biz-registar-content-text {
  flex: 1;
}
.single-biz-registar-content-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-left: 30px;
  display: none;
}
.hexagon {
  width: 100%; /* Adjust as needed */
  aspect-ratio: 1 / 0.866; /* Ensures equal sides */
  position: relative;
  margin: 20px auto;

  /* Hexagon border effect */
  background: linear-gradient(to left, rgb(200, 1, 1), rgb(25, 38, 86));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Inner Image (Hexagon shape) */
.hexagon-img {
  position: absolute;
  top: 5%; /* Shrink to create border effect */
  left: 5%;
  width: 90%;
  height: 90%;
  object-fit: cover;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.biz-info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 20px auto;
  gap: 20px;
}
.biz-info a {
  text-decoration: none;
  color: black;
}
.biz-info-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.biz-reg-icon {
  width: 50px;
}
@media (min-width: 992px) {
  .single-biz-registar-content-image-wrapper {
    display: flex;
  }
}
@media (min-width: 576px) {
  .biz-info {
    flex-direction: row;
    margin: 60px auto;
  }
}
