.feedback-block {
  background: #cfe2fe;
  position: relative;
  z-index: 5;
}
.feedback-block__bg {
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 30px 64px;
  border-radius: 56px 56px 0 0;
  background: #fff;
}
@media (max-width: 1024px) {
  .feedback-block__bg {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .feedback-block__bg {
    border-radius: 24px 24px 0 0;
  }
}
.feedback-block__success {
  display: none;
  font-size: 30px;
  color: #1e3a5e;
  font-family: Gilroy;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
  min-height: 400px;
  border-radius: 24px;
  background: #f0f6ff;
  flex-direction: column;
  gap: 20px;
  padding: 67px 111px;
}
.feedback-block__success h2 {
  color: #1e3a5e;
  font-family: Gilroy;
  font-size: 39px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.feedback-block__subtitle {
  color: #1e3a5e;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1024px) {
  .feedback-block__subtitle {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
  }
}
.feedback-block h2 {
  color: #1e3a5e;
  font-family: Gilroy;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .feedback-block h2 {
    font-size: 28px;
    text-align: center;
  }
}
.feedback-block__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
}
.feedback-block__left img {
  width: 168px;
  align-self: end;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .feedback-block__left img {
    display: none;
  }
}
.feedback-block__input-label {
  display: flex;
  flex-direction: column;
  color: #1e3a5e;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1024px) {
  .feedback-block__input-label {
    font-size: 16px;
  }
}
.feedback-block__right form {
  display: flex;
  border-radius: 24px;
  background: #f0f6ff;
  flex-direction: column;
  gap: 20px;
  padding: 67px 111px;
}
@media (max-width: 1024px) {
  .feedback-block__right form {
    padding: 25px;
  }
}
.feedback-block__right input[type=text],
.feedback-block__right input[type=tel] {
  border-radius: 10px;
  border: 1px solid #1e3a5e;
  margin-top: 5px;
  background: #fff;
  padding: 15px 20px;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.feedback-block__radio {
  display: flex;
  gap: 72px;
}
.feedback-block__radio [type=radio]:checked,
.feedback-block__radio [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.feedback-block__radio [type=radio]:checked + label,
.feedback-block__radio [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #1e3a5e;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1024px) {
  .feedback-block__radio [type=radio]:checked + label,
  .feedback-block__radio [type=radio]:not(:checked) + label {
    font-size: 16px;
    padding-left: 24px;
  }
}
.feedback-block__radio [type=radio]:checked + label:before,
.feedback-block__radio [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
@media (max-width: 1024px) {
  .feedback-block__radio [type=radio]:checked + label:before,
  .feedback-block__radio [type=radio]:not(:checked) + label:before {
    top: 0px;
    width: 15px;
    height: 15px;
  }
}
.feedback-block__radio [type=radio]:checked + label:after,
.feedback-block__radio [type=radio]:not(:checked) + label:after {
  content: "";
  width: 15px;
  height: 15px;
  background: #1e3a5e;
  position: absolute;
  top: 8px;
  left: 5px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
@media (max-width: 1024px) {
  .feedback-block__radio [type=radio]:checked + label:after,
  .feedback-block__radio [type=radio]:not(:checked) + label:after {
    width: 10px;
    height: 10px;
    top: 4px;
    left: 4px;
  }
}
.feedback-block__radio [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.feedback-block__radio [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.feedback-block__send-btn {
  color: #fff;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  background: #1e3a5e;
  cursor: pointer;
  opacity: 0.9;
  max-width: 164px;
  margin: 0 auto;
  margin-top: 40px;
}
.feedback-block__send-btn:hover {
  opacity: 1;
}
.feedback-block__send-btn-text {
  color: #1e3a5e;
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1024px) {
  .feedback-block__send-btn-text {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */