.contactBanner {
  aspect-ratio: 1440/700;
  position: relative;
}
.contactBanner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.contactBanner .txt {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.contactBanner .txt .title {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contactBanner .txt .name {
  font-size: 92px;
  font-family: var(--font-alegreya);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.84px;
}
.contactBanner .txt_contact {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.contactBanner .txt_contact .contact_info {
  padding: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.contactBanner .txt_contact .title {
  font-size: 42px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -1.26px;
  font-family: var(--font-alegreya);
}
.contactBanner .txt_contact .name {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.54px;
}
@media (max-width: 1439px) {
  .contactBanner .txt .name {
    font-size: 76px;
    letter-spacing: -2.28px;
  }
}
@media (max-width: 1050px) {
  .contactBanner {
    aspect-ratio: unset;
    height: 400px;
  }
  .contactBanner .txt .title {
    font-size: 20px;
    letter-spacing: 0.32px;
    text-align: center;
    margin-bottom: 0;
  }
  .contactBanner .txt .name {
    font-size: 45px;
    letter-spacing: -1.68px;
    line-height: 1.15;
    text-align: center;
  }
  .contactBanner .txt_contact {
    bottom: 16px;
  }
  .contactBanner .txt_contact .contact_info {
    padding: 14px;
    border-left: none;
  }
  .contactBanner .txt_contact .contact_info .title {
    font-size: 24px;
    letter-spacing: -0.72px;
    text-align: center;
  }
  .contactBanner .txt_contact .contact_info .name {
    text-align: center;
    font-size: 14px;
  }
}

.contactForm {
  padding-top: 100px;
  position: relative;
}
.contactForm .container {
  position: relative;
  z-index: 2;
}
.contactForm .leaf {
  position: absolute;
  bottom: 0;
  left: -140px;
  width: 27%;
  height: auto;
  pointer-events: none;
}
.contactForm .cloud {
  position: absolute;
  top: 64px;
  right: -47px;
  width: 16%;
  height: auto;
}
.contactForm .content {
  display: flex;
  gap: 52px;
}
.contactForm .content .--right {
  width: 44%;
}
.contactForm .content .--right .formContact {
  background: var(--color-light);
  padding: 40px;
  border-radius: 16px;
}
.contactForm .content .--left {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.contactForm .content .--left .desc {
  line-height: 1.71;
  width: 60%;
}
.contactForm .formContact input {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 52px;
  padding: 13px 16px;
  height: 48px;
}
.contactForm .formContact textarea {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  padding: 13px 16px;
  height: 130px;
  resize: none;
}
.contactForm .formContact label {
  color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 1050px) {
  .contactForm {
    padding-top: 40px;
  }
  .contactForm .content {
    flex-flow: column;
    gap: 24px;
  }
  .contactForm .content .--left {
    gap: 12px;
  }
  .contactForm .content .--left .segTitle {
    text-align: center;
  }
  .contactForm .content .--left .desc {
    width: 100%;
    text-align: center;
  }
  .contactForm .content .--right {
    width: 100%;
  }
  .contactForm .content .--right .formContact {
    padding: 24px;
  }
}/*# sourceMappingURL=contact.css.map */