.toggle_banner {
  padding: 80px 0;
  border-radius: 32px 32px 0 0;
  background-color: #f4f4f5;
  margin-top: -48px;
  overflow-x: hidden;
}
.toggle_banner h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 24px;
}
.toggle_banner h2 strong {
  background: linear-gradient(90deg, #8f81ff 0%, #16a9ff 83.73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.toggle_banner p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 56px;
  text-align: center;
}
.toggle_banner .toggle_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
}
.toggle_banner .toggle_container .img_holder {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.toggle_banner .toggle_container .toggle {
  width: 220px;
  height: 86px;
  background-color: #fff;
  box-shadow: -2px -2px 4px 0 rgba(0, 0, 0, 0.15) inset, 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  border-radius: 48px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle_banner .toggle_container .toggle * {
  transition: all 0.3s ease;
}
.toggle_banner .toggle_container .toggle.active {
  background: #614efa;
}
.toggle_banner .toggle_container .toggle.active strong {
  display: none;
}
.toggle_banner .toggle_container .toggle.active span {
  margin-left: 65%;
  background-color: #fff;
}
.toggle_banner .toggle_container .toggle strong {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 175% */
  color: #1a1a22;
}
.toggle_banner .toggle_container .toggle span {
  border-radius: 48px;
  background: #614efa;
  box-shadow: 0 1px 16px 2px rgba(28, 22, 71, 0.2), 0 1px 12px 0 rgba(28, 22, 71, 0.06);
  width: 70px;
  height: 70px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .toggle_banner {
    padding: 40px 0;
    position: relative;
    z-index: 99;
    margin-top: -28px;
  }
  .toggle_banner h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 16px;
  }
  .toggle_banner p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    margin-bottom: 28px;
  }
}