.main-section {
  background: url("../images/bgimage.svg") no-repeat center top;
  background-position: center calc(0% - 250px);
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;  /* Ensure the text is centered within the div */
  width: 100%;
}

.pricing-txt-color {
  background-image: linear-gradient(to right, #2bbc6e, #db0075);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

.pricing-txt-color::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url("../images/pricing/underline.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 320px) and (max-width: 767px) {
  .pricing-txt-color {
    font-size: 24px; /* Adjust font size for mobile */
  }
}



.list li {
  list-style-type: none;
  background: url("../images/pricing/tick.svg") no-repeat top left;
  background-position: 0 1px;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #3c374b;
  font-size: 18px;
}

.pricing-model {
  background: url("../images/pricing/pricing-model.svg") no-repeat top center,
    linear-gradient(to bottom, #f9f9fc, #f9f9fc);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
  transform-origin: center; 
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1); 
}

.video-container {
  position: relative;
  display: inline-block;
}

video {
  display: block;
}

@media (min-width: 320px) and (max-width: 767px) {
  .play-button  {
    width:40px;
    height:40px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .play-button  {
    width:60px;
    height:60px;
  }
}

@media (min-width: 1440px) {
  .play-button  {
    width:70px;
    height:70px;
  }
}

.accordian-list.active .accordion-gradient {
  opacity: 1 !important;
}