/* bullet_points.tpl */
.bullet-points-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bullet-point-btn {
  display: flex;
  border-radius: 3rem;
  border: 1px solid #0282c8;
  align-items: center;
  justify-content: center;

  color: #0282c8;
  padding: 0.25rem 1rem;
}
.bullet-point-icon {
  width: 26px;
  /*? remove White bg of the img */
  mix-blend-mode: multiply;
}

/* bullet_points_sections.css */
.bullet-points-section-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
.bullet-point-section {
  display: flex;
  gap: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.06);
    width: 100%;
}

.bullet-point-section:last-child {
  margin-bottom: 4rem;
}

/* bullet point PDP*/

.bullet-point-section.even, .bullet-point-section.odd {
    background: #ffffff
}

.bullet-point-section.even .bullet-point-images {
  order: 1;
}
.bullet-point-section.even .bullet-point-content {
  order: 2;
}

.bullet-point-content {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
    flex: auto;
}
.bullet-point-title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.bullet-point-content .bullet-point-icon {
  border-radius: 100%;
  border: 1px #0282c8 solid;
  width: 5rem;
}

.bullet-point-images img {
  width: 610px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .bullet-points-section-container {
    padding: 0;
  }
  .bullet-point-section {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .bullet-point-content,
  .bullet-point-images {
    text-align: center;
  }
  .bullet-point-images {
    height: 160.2px;
  }
  .bullet-point-section.even .bullet-point-content {
    order: 1;
  }
  .bullet-point-section.even .bullet-point-images {
    order: 2;
  }

  .bullet-point-img {
    width: 100% !important;
  }

  .bullet-point-content .bullet-point-icon {
    width: 3rem;
  }
}
