.thankyou-section {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-light2);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  background-image: url("../img/thankyou.png");
    background-repeat: no-repeat;
    background-position: center;
background-size: cover;
background-repeat: no-repeat;
}


.thankyou-shape {
  position: absolute;
  bottom: -20%;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(131, 7, 222, 0.2), var(--color-primary-light2));
  transform: rotate(45deg);
  opacity: 0.5;
  border-radius: var(--radius-lg);
}
.thankyou-shape.left { left: -6%; }
.thankyou-shape.right { right: -6%; }

@media (max-width: 991.98px) {
    .thankyou-shape {
        display: none;
    }
}