@keyframes leftRightSmoothCourseBundles {
  0%, 100% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(24px);
  }
}
.course-bundles-section {
  width: 100%;
  height: fit-content;
  background: url('../images/lms/course-bundles-section.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}
.course-bundles-section__statistics-title .line {
  width: 3px;
    height: 25px;
    background-color: #d5d52b;
}
.course-bundles-section__floating-icon-1 {
  position: absolute;
  top: -72px;
  left: -88px;
  width: 72px;
  height: 88px;
}
.course-bundles-section__floating-icon-1 img {
  max-width: 100%;
  max-height: 100%;
}
.rtl .course-bundles-section__floating-icon-1 {
  left: auto;
  right: 0;
  transform: translate(100%, -100%);
}
.course-bundles-section__floating-icon-2 {
  position: absolute;
  bottom: -104px;
  left: 10%;
  width: 208px;
  height: 208px;
  animation: leftRightSmoothCourseBundles 2s ease-in-out infinite;
}
.course-bundles-section__floating-icon-2 img {
  max-width: 100%;
  max-height: 100%;
}
.rtl .course-bundles-section__floating-icon-2 {
  left: auto;
  right: 10%;
}

.course-bundles-section .bundle-inner{
    background: url('../images/lms/course-bundles-blur-bg.png') no-repeat center center;
    padding: 40px;
    border-radius: 20px;
}
root {
    --flour: #efece6;
}
.course-bundles-section .bundle-card__content {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 141px;
    right: 0;
    padding: 17px;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid var(--flour, #EFECE6);
    background: linear-gradient(180deg, #fff, #faf9f7);
}

@media (max-width: 991px) {
  .course-bundles-section {
    height: auto;
    padding: 48px 0;
  }
  .course-bundles-section__floating-icon-1 {
    top: -72px;
    left: 24px;
  }
  .rtl .course-bundles-section__floating-icon-1 {
    left: auto;
    right: 24px;
  }
  .course-bundles-section__floating-icon-2 {
    bottom: 0;
    left: auto;
    right: 16px;
    width: 104px;
    height: 104px;
  }
  .rtl .course-bundles-section__floating-icon-2 {
    left: 16px;
    right: auto;
  }
}
@media (max-width: 767px) {
    .course-bundles-section .bundle-inner {
        background: url(../images/lms/course-bundles-blur-bg.png);
        background-size: cover;
        padding: 20px 10px;
        border-radius: 20px;
        margin-top: 10px;
        margin: 0;
        margin-top: 24px;
    }
    .bundle-card {
        margin-bottom: 0 !important;
    }
    .course-bundles-section .bundle-card__content {
        position: relative;
        top: -41px;
        bottom: 0;
        left: 0;
        right: 0;
    }
}
