/*course card css start */
.a2n_bundle_course {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 388px;
  border: 1px solid rgb(237, 237, 237);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  font-family: "Open Sans", sans-serif;
}

.a2n_bundle_course:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.a2n_bundle_course .bundle-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.a2n_bundle_course .bundle-image-container {
  position: relative;
  height: 240px;
  width: 100%;
}

.a2n_bundle_course .bundle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.a2n_bundle_course .bundle-image-container .course-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgb(138, 210, 241);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 16px;
  color: rgb(0, 66, 94);
}

.a2n_bundle_course .bundle-details {
  padding: 24px 16px;
}

.a2n_bundle_course .bundle-title {
  font-size: 20px;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 27px;
  height: 54px;
  color: rgb(26, 23, 27);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.a2n_bundle_course .bundle-title a {
  color: inherit;
  font-weight: inherit;
  font-family: "Open Sans", sans-serif;
}

.a2n_bundle_course .bundle-title a:hover {
  color: #00378b;
  font-family: "Open Sans", sans-serif;
}

.a2n_bundle_course .bundle-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.a2n_bundle_course .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.a2n_bundle_course .feature-icon {
  color: rgb(0, 55, 139);
}

.a2n_bundle_course .feature-text {
  font-size: 16px;
  color: #4f4c4f;
}

.a2n_bundle_course .bundle-footer {
  padding: 0 16px 16px;
}

.a2n_bundle_course .bundle-price-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
}
.a2n_bundle_course .bundle-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.a2n_bundle_course .bundle-price {
  font-size: 24px;
  font-weight: 700;
  color: rgb(26, 23, 27);
}

.a2n_bundle_course .bundle-old-price {
  font-size: 16px;
  font-weight: 600;
  color: rgb(244, 70, 60);
  text-decoration: line-through;
}
.a2n_bundle_course .bundle-button {
  background-color: rgb(0, 55, 139);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  width: 130px;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

.a2n_bundle_course .bundle-button:hover {
  width: 100%;
  background-color: #194a96;
}
.a2n_bundle_course .bundle-price-container strong {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
}
.a2n_bundle_course .bundle-price-container strong ins span {
  color: rgb(26, 23, 27);
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.a2n_bundle_course .bundle-price-container strong del {
  color: #f4463c !important;
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 24px;
  font-family: "Open sans", sans-serif;
  opacity: 1;
}
.a2n_bundle_course .bundle-price-container strong del span{
  color: inherit !important;
  font-weight: inherit;
  font-size: 16px;
  line-height: 24px;
  font-family: "Open sans", sans-serif;
}
.a2n_bundle_course .bundle-price-container strong {
  color: rgb(26, 23, 27);
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .a2n_bundle_course{
    margin: 0 auto;
  }
}
/*course card css end */
