#real-work-slider {
  background: #f4f1ed;
}

.real-work-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.real-work-head h2 { margin: 0; }
.real-work-head p { max-width: 440px; margin: 0; color: #6d6a67; }

.real-work-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #17191c;
  box-shadow: 0 16px 38px rgba(24, 25, 27, .16);
}

.real-work-slide { display: none; aspect-ratio: 4 / 3; }
.real-work-slide.is-active { display: block; animation: realWorkFade .35s ease; }
.real-work-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.real-work-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #18191b;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.real-work-control:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.real-work-control.prev { left: 18px; }
.real-work-control.next { right: 18px; }

.real-work-dots { display: flex; justify-content: center; gap: 7px; padding: 16px 10px 2px; }
.real-work-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #c7c1ba; cursor: pointer; }
.real-work-dot.is-active { width: 24px; border-radius: 8px; background: #d75b25; }

@keyframes realWorkFade { from { opacity: .35; } to { opacity: 1; } }

@media (max-width: 640px) {
  .real-work-head { display: block; }
  .real-work-head p { margin-top: 12px; }
  .real-work-slider { border-radius: 16px; }
  .real-work-control { width: 38px; height: 38px; font-size: 22px; }
  .real-work-control.prev { left: 10px; }
  .real-work-control.next { right: 10px; }
}

@media (max-width: 520px) {
  .request-box { display: flex; flex-direction: column; align-items: center; }
  .request-box > div, .request-box > form { width: 100%; max-width: 420px; }
  .request-box > div { text-align: center; }
}
