.xili_home_together {
  padding: var(--length-100) 0 var(--length-120) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #333 74.74%, #222 100%);
}

.xili_home_together .xili-container {
  position: relative;
  z-index: 10;
}

.xili-home-together-wrapper {
  display: flex;
  justify-content: space-between;
}

.xili-home-together-header {
  flex: 1;
}

.xili-home-together-header h2,
.xili-home-together-header h2 b {
  color: #fff;
}

.xili-home-together-form {
  width: calc(640 / 1600 * 100%);
  flex-shrink: 0;
  max-width: 480px;
}

.xili-home-together-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.xili-home-together-bg img {
  width: 100%;
  height: auto;
}

.xili-home-together-form .container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.xili-home-together-form .container .row,
.xili-home-together-form .container .row .col-lg-12 {
  margin: 0 !important;
  padding: 0 !important;
}

.xili-home-together-form .container .row:first-child {
  display: none;
}

.xili-home-together-form .container .inqury-form .input-wrap {
  padding: 0 !important;
}

.xili-home-together-form .container .inqury-form .input-wrap .input-label {
  display: none;
}

.xili-home-together-form .container .inqury-form .input-wrap .char-count {
  display: none;
}

.xili-home-together-form #inqury-form {
  gap: 40px;
}

.xili-home-together-form .container .inqury-form .input-wrap .one-line-input,
.xili-home-together-form .container .inqury-form .input-wrap .textarea-input {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(10px);
  padding: 17px 100px 18px 24px;
  height: auto;

  font-family: var(--font-family);
  font-size: var(--font-24);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.xili-home-together-form .container .inqury-form .input-wrap .textarea-input {
  height: 211px;
}

.xili-home-together-form-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.xili-home-together-form .input-wrap-box:has(input[required])::before {
  content: '*';
  color: #F00;
  font-family: var(--font-family);
  font-size: var(--font-24);
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 10;
}

.xili-home-together-form .input-wrap-box.not-empty::before {
  display: none;
}

.xili-home-together-form .inqury-form .inqury_submit {
  padding: 16px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  height: fit-content;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.80);
}

.xili-home-together-form .inqury_submit span {
  color: #FFF;
}

.xili-home-together-form .inqury_submit:hover {
  background: #FFF;
}

.xili-home-together-form .inqury_submit:hover span {
  color: #000;
}

.xili-home-together-form .inqury_submit:hover svg path {
  stroke: #000;
}

@media screen and (max-width: 1500px) {
  .xili-home-together-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .xili-home-together-header {
    width: 100%;
    max-width: 800px;
  }

  .xili-home-together-form{
    width: 100%;
    max-width: 800px;
  }

  .xili-home-together-bg {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .xili-home-together-wrapper{
    gap: 20px;
  }
}