/* baifu Brand */
/* baifu Brand Variables and Theme Override */
:root {
  --baifu-bg-gradient-1: rgba(226, 221, 244, 0.41) ;
  --baifu-bg-gradient-2: rgba(126, 227, 255, 0.2);
  --baifu-bg-gradient-3: rgba(126, 227, 255, 0.1);
  --baifu-bg-gradient-4: rgba(247, 251, 255, 0);
}

/* Desktop-first styles */
.wrapper {
  background:#102245;
}

@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) {
  .wrapper{
    background-image: url(../images/bg-top.webp);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .container .col:nth-of-type(2) {
    background-color: transparent;
  }
}