/* banner */
.banner {
  padding: 125px 0 75px 0;
  position: relative;
  background-image: url(image/banner-bg.png);
  background-repeat: repeat-x;
  background-position: center center;
  clip-path: polygon(100% 0, 100% 100%, 78% 100%, 75% 97%, 0 97%, 0 0);
  margin-bottom: -50px;
}
.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000000b3;
}
.banner::after {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    var(--color-black) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 70%;
}
.banner .banner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.banner .title-top {
  color: var(--color-white);
}
.banner .banner-desc {
  color: var(--color-white);
  margin: 20px 0 36px 0;
}
.banner .banner-left {
  width: 50%;
}
.banner .banner-form {
  width: calc(50% - 115px);
  margin-left: 115px;
  background-color: var(--color-white);
  box-shadow: 0px 0px 15px 0px #0000001a;
  border-radius: 12px;
  padding: 20px 50px;
}
.banner .banner-form-title {
  font-weight: 600;
  position: relative;
  margin-top: -4px;
  display: block;
  margin-bottom: 5px;
  display: flex;
}
.banner .banner-form-title::after {
  content: "";
  width: 146px;
  height: 30px;
  display: block;
  background-image: url(image/heart-bit.png);
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.banner .banner-form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 15px;
}
.banner .banner-form-wrapper .form-info {
  font-size: 12px;
  text-align: center;
  width: 100%;
}
.banner .banner-form-wrapper form p {
  margin: 0;
  width: 100%;
}
.banner .banner-form-wrapper form .wpcf7-list-item {
  margin: 0;
  display: inline-block;
  margin-right: 12px;
}
.banner .banner-form-wrapper form .wpcf7-list-item-label {
  font-size: 14px;
  margin-bottom: 6px;
}
.banner .banner-form-wrapper form br {
  display: none;
}
@media (max-width: 1280px) {
  .banner .banner-form {
    padding: 20px;
    width: calc(50% - 30px);
    margin-left: 30px;
  }
}

@media (max-width: 992px) {
  .banner .banner-left {
    width: 100%;
  }
  .banner .banner-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .banner .banner-form {
    width: 100%;
    margin-left: 0;
  }
  .banner {
    clip-path: none;
    background-size: cover;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .banner .banner-form-title::after {
    width: 100px;
  }
}
/* banner */
