.form-fourteen-block {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.form-fourteen-block .form_background {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  height: 100%;
  z-index: 3;
}
.form-fourteen-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.form-fourteen-block__head:not(:last-child) {
  margin-bottom: 20px;
}
.form-fourteen-block__head .block-title {
  margin-bottom: 0;
}
.form-fourteen-block .block-tag {
  background: var(--bg-primary-second);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.form-fourteen-block .block-tag:not(:last-child) {
  margin-bottom: 15px;
}
.form-fourteen-block .block-tag img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.form-fourteen-block .block-tag__text {
  color: var(--text-primary-main);
}
.form-fourteen-block__title {
  flex: 1;
}
.form-fourteen-block__advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.form-fourteen-block__advantages:not(:last-child) {
  margin-bottom: 30px;
}
.form-fourteen-block__advantages .advantage-item__top {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.form-fourteen-block__advantages .advantage-item__top:not(:last-child) {
  margin-bottom: 15px;
}
.form-fourteen-block__advantages .advantage-item__icon {
  flex-shrink: 0;
  width: clamp(3.75rem, 3.029rem + 3.21vw, 6.875rem);
  height: clamp(3.75rem, 3.029rem + 3.21vw, 6.875rem);
  object-fit: contain;
  align-self: baseline;
}
.form-fourteen-block__form {
  border-radius: 30px;
  padding: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.form-fourteen-block__form-light {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 25% 0%, #FFFFFF, rgba(255, 255, 255, 0.631372549));
  top: -30px;
  left: -30px;
  border-radius: 50%;
  filter: blur(23px);
}
.form-fourteen-block__form div {
  z-index: 4;
}
.form-fourteen-block__form::before {
  position: absolute;
  content: "";
  width: 2611px;
  height: 1376px;
  left: -828px;
  top: -443px;
  background: radial-gradient(56.61% 56.61% at 57.28% 22.1%, #5CAC6D 11.43%, #388860 33.77%, #A0DE80 87.81%);
  filter: blur(265.625px);
  z-index: 2;
}
.form-fourteen-block__form::after {
  position: absolute;
  content: "";
  width: 2611px;
  height: 1376px;
  left: -828px;
  top: -443px;
  background: radial-gradient(56.61% 56.61% at 57.28% 22.1%, #5CAC6D 11.43%, #388860 33.77%, #A0DE80 87.81%);
  filter: blur(265.625px);
  z-index: 1;
}
.form-fourteen-block__form-title {
  color: var(--bg-primary-main);
}
.form-fourteen-block__form-title:not(:last-child) {
  margin-bottom: 20px;
}
.form-fourteen-block__form-text * {
  color: var(--text-alt-main);
}
.form-fourteen-block__form-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--bg-primary-main);
}
.form-fourteen-block__form-text p:not(:last-child) {
  margin-bottom: 10px;
}
.form-fourteen-block__form-text ul:not(:last-child),
.form-fourteen-block__form-text ol:not(:last-child) {
  margin-bottom: 10px;
}
.form-fourteen-block__form-text ul li::marker {
  color: var(--colors-second);
}
.form-fourteen-block__form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: fit-content;
  flex-shrink: 0;
}
.form-fourteen-block__form-wrap .form__inputs {
  flex-direction: row;
  width: 100%;
}
.form-fourteen-block__form-wrap .form__inputs input {
  background: rgba(255, 255, 255, 0.2509803922);
  outline: none;
  border: none;
  color: var(--text-alt-head) !important;
}
.form-fourteen-block__form-wrap .form__inputs input:focus, .form-fourteen-block__form-wrap .form__inputs input:hover {
  background: var(--bg-primary-main);
  color: var(--text-primary-head) !important;
}
.form-fourteen-block__form-wrap .form__inputs input:focus + label, .form-fourteen-block__form-wrap .form__inputs input:hover + label {
  color: var(--text-primary-second) !important;
}
.form-fourteen-block__form-wrap .form__inputs input:-webkit-autofill, .form-fourteen-block__form-wrap .form__inputs input:-webkit-autofill:hover, .form-fourteen-block__form-wrap .form__inputs input:-webkit-autofill:focus, .form-fourteen-block__form-wrap .form__inputs input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text-primary-head) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--bg-primary-main) inset !important;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--text-primary-head) !important;
}
.form-fourteen-block__form-wrap .form__inputs label {
  color: var(--text-alt-head) !important;
}
.form-fourteen-block__form-wrap .form__inputs .input {
  width: 100%;
}
.form-fourteen-block__form-wrap .form-v2__input:not(:first-child) {
  margin-top: 10px;
}
.form-fourteen-block__form-wrap .form-v2__policy-checkbox {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.form-fourteen-block__form-wrap .form-v2__policy-checkbox input[type=checkbox] {
  background-color: transparent !important;
  border: 1px solid var(--text-alt-head);
}
.form-fourteen-block__form-wrap .form-v2__policy-checkbox .form-v2__privacy {
  color: var(--text-alt-main);
}
.form-fourteen-block__form-wrap .form-v2__policy-checkbox a {
  color: var(--text-alt-head);
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.form-fourteen-block__form-wrap .form-v2__policy-checkbox a:hover {
  text-decoration-color: var(--text-alt-head);
}
.form-fourteen-block__form-wrap .form-v2__policy-checkbox:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1530px) {
  .form-fourteen-block__advantages {
    gap: 15px;
  }
  .form-fourteen-block__advantages .advantage-item__top {
    gap: 15px;
  }
  .form-fourteen-block__advantages .advantage-item__icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1240px) {
  .form-fourteen-block__advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-fourteen-block__advantages .advantage-item__text {
    min-height: inherit;
  }
}
@media (max-width: 1025px) {
  .form-fourteen-block .form_background {
    display: none;
  }
  .form-fourteen-block__form {
    padding: 25px;
  }
  .form-fourteen-block__form-wrap {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .form-fourteen-block__form {
    flex-direction: column;
  }
  .form-fourteen-block__form-wrap {
    width: fit-content;
  }
}
@media (max-width: 769px) {
  .form-fourteen-block__advantages {
    grid-template-columns: 1fr;
  }
  .form-fourteen-block__advantages .advantage-item {
    padding: 15px;
  }
  .form-fourteen-block__advantages .advantage-item__top:not(:last-child) {
    margin-bottom: 15px;
  }
  .form-fourteen-block__form {
    flex-direction: column;
  }
  .form-fourteen-block__form-wrap {
    width: 100%;
  }
  .form-fourteen-block__head {
    flex-direction: column-reverse;
  }
}
@media (max-width: 498px) {
  .form-fourteen-block .form__inputs {
    flex-direction: column;
  }
  .form-fourteen-block__form {
    padding: 20px 15px;
  }
  .form-fourteen-block__form-text p {
    font-size: 16px;
  }
  .form-fourteen-block__head:not(:last-child) {
    margin-bottom: 25px;
  }
}/*# sourceMappingURL=block.css.map */