
.txt-contact-content-1:before {
  top: 0;
  left: 0;
  width: 40%;
  z-index: -1;
  content: "";
  height: 100%;
  position: absolute;
  background-color: #F4EEFC;
}
.txt-contact-content-1 {
  z-index: 1;
  overflow: hidden;
  padding: 40px 80px;
}
.txt-contact-content-1 .txt-contact-shape1 {
  top: 0;
  left: 0;
}
.txt-contact-content-1 .txt-contact-img {
  top: 0;
  right: 0;
  z-index: -2;
}

.txt-contact-form-1 {
  padding: 50px;
  max-width: 535px;
  background-color: #fff;
  border-radius: 0px 100px 0px 0px;
}
.txt-contact-form-1 .txt-contact-title {
  padding-bottom: 40px;
}
.txt-contact-form-1 .txt-contact-title h3 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 15px;
  color: var(--txt-title-color);
}
.txt-contact-form-1 .txt-contact-title p {
  color: #494949;
  font-size: 16px;
}
.txt-contact-form-1 form input, .txt-contact-form-1 form textarea {
  width: 100%;
  height: 62px;
  background: #FFF;
  padding-left: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(28, 28, 28, 0.15);
}
.txt-contact-form-1 form input::-webkit-input-placeholder, .txt-contact-form-1 form textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.5);
}
.txt-contact-form-1 form input::-moz-placeholder, .txt-contact-form-1 form textarea::-moz-placeholder {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.5);
}
.txt-contact-form-1 form input:-ms-input-placeholder, .txt-contact-form-1 form textarea:-ms-input-placeholder {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.5);
}
.txt-contact-form-1 form input::-ms-input-placeholder, .txt-contact-form-1 form textarea::-ms-input-placeholder {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.5);
}
.txt-contact-form-1 form input::placeholder, .txt-contact-form-1 form textarea::placeholder {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.5);
}
.txt-contact-form-1 form input:focus, .txt-contact-form-1 form textarea:focus {
  outline: none;
}
.txt-contact-form-1 form textarea {
  height: 152px;
  padding-top: 15px;
}
.txt-contact-form-1 form button {
  z-index: 1;
  color: #fff;
  width: 100%;
  height: 62px;
  border: none;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background: var(--txt-gradient-1);
}
.txt-contact-form-1 form button:before {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  content: "";
  height: 0%;
  position: absolute;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: #5D56EF;
}
.txt-contact-form-1 form button:hover {
  letter-spacing: 1.5px;
}
.txt-contact-form-1 form button:hover:before {
  height: 100%;
}

@media (max-width: 900px) {
  .txt-contact-content-1 .txt-contact-img {
    display: none;
  }
  .txt-contact-content-1:before {
    width: 100%;
  }
  .txt-contact-form-1 {
    max-width: 100%;
  }
  .txt-contact-content-1 .txt-contact-shape1 {
    display: none;
  }
}
@media (max-width: 680px) {
  .txt-contact-content-1 {
    padding: 30px 20px;
  }
  .txt-contact-form-1 {
    padding: 30px 20px;
  }
}