.s1 {
  display: flex;
  width: 100%;
  padding: 150px 0px 150px 0;
  flex-direction: column;
  position: relative;
  gap: 50px;
}
.s1 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/1.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s1 h2 {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.s1 p {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.s1 p b {
  font-weight: 500;
}
.s1 a {
  font-size: 16px;
  color: white;
  background: linear-gradient(to right, #BE4AD3, #30337A);
  padding: 14px 30px;
}

@media (max-width: 900px) {
  .s1 {
    padding: 100px 15px 100px 15px;
  }
  .s1 h2 {
    font-size: 20px;
  }
  .s1 p {
    font-size: 14px;
  }
  .s1 p b {
    font-size: 14px;
  }
  .s1 a {
    font-size: 15px;
    padding: 12px 24px;
  }
}