#referral-program {
  position: relative;
  z-index: 50;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/bgForReferral-program.png');
  background-size: cover;
  background-position: center;
}
#referral-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/forBgReferall.png'); /* Наложенная картинка */
  background-size: cover;
  background-position: center;
  z-index: -1; /* Поместить картинку за основным контентом */
  opacity: 0.7; /* Прозрачность для наложенной картинки, если нужно */
}
#referral-program .container div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#referral-program h2 {
  color: var(--white30);
}
#referral-program p {
  color: #f0f0fb;
}
#referral-program a {
  background-color: #ffffff;
  padding: 15px 44px 15px 44px;
  width: 256px;
  border-radius: 12px;
  text-align: center;
  color: var(--pink);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#referral-program a:hover {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  scale: 1.02;
}
.referral-program_girl {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 533px;
  height: 652px;
  z-index: 1;
  display: none;
}
@media (min-width: 1200px) {
  #referral-program .container div {
    width: 50%;
  }
  .referral-program_girl {
    display: block;
  }
  #referral-program {
    margin-top: 150px;
  }
}
