.slider-container {
  display: flex;
  color: #fff;
}
.slider-container .slide {
  border-radius: 30px;
  padding: 15px;
  background: #2B2A2A;
  display: flex;
  margin-left: 15px;
  align-items: center;
  gap: 30px;
  height: 330px;
  overflow: hidden;
  flex-basis: 755px;
  flex-shrink: 0;
}
.slider-container .thumbnail {
  border-radius: 5%;
  flex-basis: 300px;
  flex-shrink: 0;
}
.slider-container .title {
  font-size: 32px;
  font-weight: 600;
}
.slider-container .desc {
  margin-top: 20px;
  font-size: 18px;
}
.slider-container .play {
  margin-top: 20px;
  display: block;
  cursor: pointer;
}

.bp-showcase {
  overflow: hidden;
}

.play #Path_1910 {
  fill: #ff0000;
}

/*# sourceMappingURL=slider.css.map */

.play {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 67.937px;
    height: 67.937px;
    cursor: pointer;
}

.play svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.play.playing::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background-color: rgba(254, 254, 254, 0.75);
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(6.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(6.5);
        opacity: 0;
    }
}

circle.circle-default {
    fill: #fff;
}

circle.circle-playing {
    fill: #212326;
}

path.path-default {
    fill: #95c11f;
}

path.path-playing {
    fill: #fff;
}