html,
body {
  overflow-x: hidden;
}

.video-button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d66dc;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid #1688ff;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 104, 243, .16);
  transition: .2s ease;
}

.video-button:hover {
  color: #fff;
  background: linear-gradient(110deg, #1268f3, #20c8d5);
  transform: translateY(-2px);
}

.video-button .play {
  border-color: #bcdcff;
}

.video-button:hover .play {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.video-section {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbff 0%, #edf8ff 100%);
}

.video-heading {
  margin-bottom: 36px;
}

.video-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 26px;
  background: #071d4c;
  box-shadow: 0 30px 70px rgba(25, 72, 132, .22);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-next {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #53647f;
  font-weight: 700;
}

@media (max-width: 700px) {
  .video-button {
    width: 100%;
  }

  .video-section {
    padding: 70px 14px;
  }

  .video-wrap {
    border-width: 4px;
    border-radius: 16px;
  }

  .video-next {
    flex-direction: column;
  }
}
