.section__call {
  position: relative;
  scroll-margin-top: 100px;
}
.section__call::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.section__call::after {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 62%;
  position: absolute;
  top: 0;
  left: 0;
  fill: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.section__call__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__call__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section__call__container {
  position: relative;
  z-index: 2;
}
.section__call__body {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 500px;
}
.section__call__form form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1280px) {
  .section__call__body {
    padding: 60px 0;
  }
}
@media (max-width: 992px) {
  .section__call__body {
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .section__call::after {
    content: none;
  }
}
