/* OT888 Brand */
/* OT888 Brand Variables and Theme Override */
:root {
  --ot888-bg-gradient-1: #f3ebf7;
  --ot888-bg-gradient-2: #f5ebfd;
  --ot888-bg-gradient-3: rgba(226, 221, 244, 0.42);
  --ot888-bg-gradient-4: rgba(247, 251, 255, 0);
}

/* Desktop-first styles */
.wrapper {
  background-color: #f2f3f7;
  padding-top: 0;
  background-image: url(../images/bg.webp), linear-gradient(to bottom, var(--ot888-bg-gradient-1) 0vw, var(--ot888-bg-gradient-2) 39vw, var(--ot888-bg-gradient-3) 42vw, var(--ot888-bg-gradient-4) 48vw);
  background-size: cover, auto 100%;
}

@media screen and (min-width: 1000px) {
  .container .col:nth-of-type(2) {
    padding: 40px 50px 20px;
  }
}

/* Mobile Styles - max-width approach */
@media screen and (max-width: 999px) {
  .container .col:nth-of-type(1) {
    background-image: url(../images/bg.webp);
  }

  .container .col:nth-of-type(2) {
    background-color: transparent;
  }
}