.s1 {
  width: 100%;
  height: 400px;
  position: relative;
  margin-bottom: 100px;
}
.s1 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/4.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s1 h1 {
  color: white;
  font-size: 44px;
  font-weight: 700;
}
.s1 .img {
  width: 100%;
  height: 110px;
  background-image: url("../Media/Images/POLICY.webp");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .s1 {
    height: 200px;
    margin-bottom: 50px;
	  padding-top: 35px;
  }
  .s1 h1 {
    font-size: 32px;
  }
}
.policy {
  width: 100%;
  padding: 100px 0 0 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.policy .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.policy .title h2 {
  font-size: 24px;
  font-weight: 500;
}
.policy .title .line {
  width: 400px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.policy .wrapper {
  width: 100%;
  align-items: flex-start;
  margin-top: 25px;
}
.policy .wrapper p {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .policy {
    padding: 0 15px 50px 15px !important;
  }
  .policy .title h2 {
    font-size: 20px;
  }
  .policy .title h2 span {
    font-size: 20px;
  }
  .policy .title .line {
    max-width: 100%;
  }
  .policy .wrapper {
    flex-direction: column;
  }
  .policy.last {
    padding-bottom: 0 !important;
  }
}
.s3 {
  width: 100%;
  max-width: 850px;
  padding: 100px 0 100px 0;
  margin: 0 auto;
  margin-top: 100px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.s3 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, rgba(190, 74, 211, 0.75), rgba(48, 51, 122, 0.75));
  z-index: -1;
}
.s3 .title {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.s3 .title h2 {
  color: white;
  font-size: 32px;
  font-weight: 500;
}
.s3 .title .line {
  width: 350px;
  height: 5px;
  background-image: url("../Media/BG/3.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 4px 4px 4px 0 rgba(48, 51, 122, 0.15);
}
.s3 .form {
  width: 100%;
  max-width: 780px;
  margin-top: 50px;
  background: white;
  border: 2px solid #252525;
}

@media (max-width: 900px) {
  .s3 {
    padding: 50px 15px 50px 15px !important;
    align-items: center;
  }
  .s3 .title h2 {
    font-size: 18px;
  }
  .s3 .title h2 span {
    font-size: 18px;
  }
  .s3 .title .line {
    max-width: 100%;
    width: 350px;
  }
  .s3 .form {
    width: 100%;
    margin: 50px 0 0;
  }
}