.open-business-potential-container {
  color: white;
  overflow-x: hidden;
  overflow-y: visible;
}

.open-business-potential-container {
  text-align: center;
}

.open-business-potential-container > div {
  display: flex;
  flex-direction: column;
}
.open-business-potential-container .h1 {
  max-width: 1000px;
  margin: auto;
}

/* Cards wrapper */
.business-potential-swiper {
  /* display: flex;
  align-items: center;
  gap: 32px; */
  align-self: stretch;
  margin-top: 64px;
}

/* Card */
.business-potential-card-wrapper {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  box-shadow: none;
  border-radius: 8px;
  border: 1px solid var(--primary800);
  background: linear-gradient(
    180deg,
    rgba(60, 74, 193, 0) 0%,
    rgba(60, 74, 193, 0.1) 100%
  );
  transition: box-shadow 0.3 ease;
}

.business-potential-card-wrapper:hover {
  box-shadow: 0 0 12px 0 rgba(46, 59, 170, 0.25);
}

.business-potential-card-title-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: start;
}

/* Card img */
.business-potential-card-img {
  width: 50px;
  height: 50px;
}

.business-potential-card-img img,
.business-potential-card-img picture {
  height: 100%;
  width: 100%;
}

/* Tags */
.business-potential-card-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-potential-card-tag {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--neutral500, #636363);
}

/* Swiper */
.swiper-wrapper {
  gap: 32px;
}
.swiper-slide {
  width: 392px;
  flex-shrink: 0;
}

@media (max-width: 1455px) {
  .swiper-wrapper {
    gap: 0px;
  }
}

@media (max-width: 800px) {
  .open-business-potential-container {
    padding: 0px 0px 50px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide {
    width: 260px;
  }

  .business-potential-card-wrapper {
    padding: 24px 16px;
    gap: 24px;
  }

  .business-potential-swiper {
    margin-top: 40px;
  }

  .swiper-wrapper {
    gap: 0px;
  }

  .business-potential-card-img {
    width: 40px;
    height: 40px;
  }
}
