.www_banner_image {
  position: relative;
  width: 100%;
  box-sizing: content-box;
  padding: 176px 0 112px;
  background-color: #0a1425;
}
.www-image-background {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}
.www-image-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.www_banner_image_main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: var(--align-items);
  justify-content: var(--justify-content, space-between);
  gap: 20px;
}
.www_banner_image_right {
  padding: 50px 48px 64px;
  width: 36%;
  background-color: #fff;
  border-radius: 16px;
  gap: 30px;
}
.www_banner_image_right h6 {
  margin-bottom: 40px;
}
.www_banner_image_left {
  display: flex;
  flex-direction: column;
  color: #fff;
  width: 40%;
  gap: 34px;
}
.www_banner_input {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  line-height: 1.75;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #0a1425;
  border-radius: 0.5rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.www_banner_input:hover {
  border-color: #2b5cfd;
}
.www_banner_image_right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.www_banner_image_right label {
  margin-bottom: 12px;
  font-weight: 600;
  display: inline-block;
}
.www_banner_image_right label span {
  color: red;
  margin-right: 4px;
}
.www_form_button {
  width: 100%;
}
.www_form_button .www-button {
  width: 100%;
}
.splide__slide {
  transition: transform 600ms cubic-bezier(0.55, 0, 0.1, 1); /* Custom cubic-bezier for ease-in-out effect */
}
@media (max-width: 959px) {
  .www_banner_image {
    height: auto;
    padding: 40px 0 40px;
  }
  .www_banner_image_main {
    flex-direction: column;
  }
  .www_banner_image_left {
    width: 100%;
    gap: 24px;
  }
  .www_banner_image_right {
    width: 100%;
  }
}
