.form-block .block-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 35px 70px 0;
  border-radius: 15px;
  background: #F5FAFF;
}
.form-block .left-side,
.form-block .right-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  padding-bottom: 30px;
}
.form-block .left-side {
  max-width: 270px;
  justify-content: flex-start;
}
.form-block .worker-side {
  margin: 0 auto;
  max-width: 310px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.form-block .advants {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.form-block .advant {
  border-radius: 5px;
  background: #FFF;
  padding: 20px 15px;
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}
.form-block .advant + .advant {
  margin-top: 15px;
}
.form-block .form-title {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  margin-bottom: 30px;
}
.form-block .form-title span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--blue);
}
.form-block .form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 30px;
}
.form-block .form .btn {
  width: 100%;
}
.form-block .worker {
  position: relative;
  z-index: 1;
  display: flex;
}
.form-block .worker__image {
  width: 100%;
  object-fit: contain;
  margin: auto auto 0;
}
.form-block .worker__info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.form-block .worker__duty, .form-block .worker__name {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.form-block .worker__duty {
  font-weight: 500;
  font-size: 12px;
}

@media (max-width: 1025px) {
  .form-block .block-holder {
    padding: 35px 35px 0;
  }
  .form-block .worker-side {
    display: none;
  }
  .form-block .left-side {
    max-width: unset;
  }
  .form-block .side {
    width: 48%;
  }
}
@media (max-width: 769px) {
  .form-block .block-holder {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  .form-block .side {
    width: 100%;
    padding-bottom: 0;
  }
}
@media (max-width: 498px) {
  .form-block .block-holder {
    padding: 20px;
  }
}

/*# sourceMappingURL=block.css.map */
