.itx-contact-form-new {
  padding-top: 60px;
  padding-bottom: 60px;
}

.itx-contact-form-new__section-title {
  margin-bottom: 24px;
  color: #fff;
}
.itx-contact-form-new__section-title.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .itx-contact-form-new__section-title.mobile {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .itx-contact-form-new__section-title.desktop {
    display: none;
  }
}

.itx-contact-form-new,
.itx-contact-form-new__title,
.itx-contact-form-new_border {
  position: relative;
}

.itx-contact-form-new__wrapper {
  position: relative;
  padding: 56px 64px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .itx-contact-form-new__wrapper {
    padding: 64px 32px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .itx-contact-form-new__wrapper {
    padding: 64px 28px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 500px) {
  .itx-contact-form-new__wrapper {
    margin-left: -16px;
    width: calc(100% + 32px);
    border-radius: 0;
    padding: 64px 16px;
  }
}
.itx-contact-form-new__with-steps {
  display: flex;
  justify-content: space-between;
  gap: 61px;
}
@media screen and (max-width: 768px) {
  .itx-contact-form-new__with-steps {
    gap: 24px;
  }
}

.itx-contact-form-new__conent {
  width: 100%;
  max-width: 652px;
}

@media screen and (max-width: 1200px) {
  .itx-contact-form-new__with-steps .itx-contact-form-new__conent {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .itx-contact-form-new__with-steps .itx-contact-form-new__conent {
    max-width: 100%;
  }
}
.itx-contact-form-new__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.itx-contact-form-new__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

@media screen and (max-width: 500px) {
  .itx-contact-form-new__image img {
    border-radius: 0;
  }
}
.itx-contact-form-new__title {
  width: auto;
  opacity: 0.5;
  border: none;
  margin-right: 6rem;
  padding-bottom: 2rem;
  display: inline-block;
  outline: 0;
  cursor: pointer;
  color: var(--itx-color-text-default);
  transition: border-bottom-color 0.3s, opacity 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.itx-contact-form-new__form .contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__form .contact-form {
    gap: 24px;
  }
}
.itx-contact-form-new__form .form-item {
  position: relative;
  flex: 1 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  margin-bottom: 0;
}
.itx-contact-form-new__form .form-item:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__form .form-item {
    flex: 1 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .itx-contact-form-new__form .form-item {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.itx-contact-form-new input.control-default,
.itx-contact-form-new input.control-default:required,
.itx-contact-form-new__form .form-textarea-item textarea {
  color: #fff;
  font-size: 16px;
  line-height: 22.4px;
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(44px);
          backdrop-filter: blur(44px);
  transition: border-color 300ms;
  outline: none;
  font-family: Heebo;
  font-weight: 400;
  resize: none;
}

.itx-contact-form-new input.control-default:hover,
.itx-contact-form-new__form .form-textarea-item textarea:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.itx-contact-form-new input.control-default:focus,
.itx-contact-form-new__form .form-textarea-item textarea:focus {
  border-color: rgba(44, 170, 77, 0.9);
}

.itx-contact-form-new input.control-default.error,
.itx-contact-form-new__form .form-textarea-item textarea.error {
  border-color: #ff2a2a;
  background-color: rgba(255, 42, 42, 0.1);
}

.itx-contact-form-new input.control-default::-moz-placeholder, .itx-contact-form-new__form .form-textarea-item textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.itx-contact-form-new input.control-default::placeholder,
.itx-contact-form-new__form .form-textarea-item textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.checkbox-nda-policy {
  position: relative;
  width: 100%;
}

.checkbox-nda-policy label:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
}

.checkbox-nda-policy input[type=checkbox]:checked + label:before {
  background: url("./../../../img/check.svg") no-repeat;
  background-size: 16px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center center;
}

.checkbox-nda-policy__item {
  padding-left: 30px;
  padding-top: 2px;
  color: #E8F4FF;
  font-size: 16px;
  line-height: 16px;
}

.checkbox-nda-policy label {
  cursor: pointer;
}

.checkbox-nda-policy label a {
  color: #25bb4d;
  transition: all 0.15s;
  text-decoration: underline;
}

.checkbox-nda-policy label a:hover {
  color: #179839;
}

.itx-contact-form-new label.error,
.itx-contact-form-new__form .form-textarea-item .form-textarea-span,
.itx-contact-form-new__form .form-item span,
.itx-contact-form-new__form .error-file,
.checkbox-nda-policy .error-checkbox {
  position: absolute;
  left: 0;
  top: 100%;
  font-size: 10px;
  white-space: nowrap;
  z-index: 2;
  line-height: 140%;
  text-align: right;
  width: 100%;
  color: #ff2a2a;
}

.itx-contact-form-new__form .form-textarea-item {
  position: relative;
  width: 100%;
}

.itx-contact-form-new__form .form-textarea-item textarea {
  width: 100%;
  height: 100%;
  min-height: 120px;
}

.itx-contact-form-new__form .form-item input {
  width: 100%;
  height: 46px;
}

.itx-contact-form-new__form .form-item .required:after,
.itx-contact-form-new__form .form-textarea-item .required:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--itx-color-accent);
  border-radius: 50%;
  right: -7px;
  top: 3px;
  opacity: 0.7;
}

.itx-contact-form-new__form .form__attachment {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.itx-contact-form-new__form .upload {
  width: 100%;
  display: block;
  cursor: pointer;
  color: #25bb4d;
}

.itx-contact-form-new__form .upload svg path {
  transition: all 300ms;
}

.itx-contact-form-new__form .upload:hover svg path {
  fill: #30d05a;
}

.itx-contact-form-new__form .upload:hover .attach-file {
  color: #30d05a;
}

.itx-contact-form-new__form .upload__label {
  border: none;
  padding: 0;
  white-space: nowrap;
  margin-bottom: 0;
  overflow: initial;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  cursor: pointer;
}

.itx-contact-form-new__form .file-name {
  width: 100%;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 30px;
  padding-top: 8px;
  color: #838383;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 12px;
}
.itx-contact-form-new__form .file-name:empty {
  display: none;
}

.itx-contact-form-new__form .attach-file {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  transition: all 150ms;
}

.itx-contact-form-new .checkbox-nda-policy input[type=checkbox],
.itx-contact-form-new__container.sidebar-without .itx-contact-form-new__sidebar,
.itx-contact-form-new__form .upload__input {
  display: none;
}

.itx-contact-form-new__form .delete {
  display: none;
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  line-height: 30px;
  left: 5px;
  top: 0;
  z-index: 2;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
  color: #fff;
}

.itx-contact-form-new__form .delete:hover {
  transform: scale(1.1);
  opacity: 1;
}

.checkbox-nda-policy__submit button {
  padding: 12px 32px;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 150ms;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #25bb4d;
  color: #fff;
  white-space: nowrap;
  margin-top: 24px;
  cursor: pointer;
  text-align: center;
  border: none;
  outline: none;
}

@media screen and (max-width: 500px) {
  .checkbox-nda-policy__submit button {
    width: 100%;
  }
}
.itx-main-block-new__button:hover {
  background-color: #30d05a;
  color: #fff;
}

.itx-main-block-new__button:active {
  opacity: 1;
  background-color: #25bb4d;
}

.checkbox-nda-policy__submit button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #606060;
  color: rgba(255, 255, 255, 0.4);
}

/* STEPS */
.itx-contact-form-new__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 0 calc(100% - 32px - 652px);
  max-width: calc(100% - 32px - 652px);
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .itx-contact-form-new__steps {
    flex: 1 0 calc(100% - 32px - 500px);
    max-width: calc(100% - 32px - 500px);
  }
}
@media screen and (max-width: 1024px) {
  .itx-contact-form-new__steps {
    flex: 1 0 100%;
    max-width: 100%;
    margin-top: 0;
  }
}
.itx-contact-form-new__step {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__step {
    gap: 16px;
  }
}
.itx-contact-form-new__number {
  position: relative;
  flex: 1 0 55px;
  max-width: 55px;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__number {
    flex: 1 0 32px;
    max-width: 32px;
  }
}
.itx-contact-form-new__number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  font-size: 25px;
  line-height: 120%;
  color: #fff;
  font-weight: 400;
  background: #25bb4d;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__number span {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 120%;
  }
}
.itx-contact-form-new__step:not(:last-child) .itx-contact-form-new__number::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 55px);
  bottom: 0;
  left: calc(50% - 1px);
  background: rgba(255, 255, 255, 0.3019607843);
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__step:not(:last-child) .itx-contact-form-new__number::after {
    height: calc(100% - 32px);
  }
}
.itx-contact-form-new__step:not(:first-child) .itx-contact-form-new__number::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 32px;
  bottom: 100%;
  left: calc(50% - 1px);
  background: rgba(255, 255, 255, 0.3019607843);
}

.itx-contact-form-new__step-title {
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__step-description {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 5px;
  }
}
.itx-contact-form-new__step-description {
  font-size: 16px;
  line-height: 140%;
  color: rgba(232, 244, 255, 0.8);
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .itx-contact-form-new__step-description {
    font-size: 16px;
    line-height: 140%;
  }
}/*# sourceMappingURL=style.min.css.map */