.form-wrapper {
  max-width: 845px;
  padding: 0 10px;
  margin-right: auto;
  margin-left: auto;
}

.form-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #0A0A3F;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .form-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.form__field {
  margin-bottom: 25px;
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 769px) {
  .form__field--first-name, .form__field--last-name, .form__field--email, .form__field--phone {
    flex: 1 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (min-width: 769px) {
  .form__field--last-name, .form__field--phone {
    margin-left: auto;
  }
}
@media (min-width: 769px) {
  .form__field--link, .form__field--file {
    flex: 1 0 457px;
    max-width: 457px;
  }
}
.form__field--file input {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.form__field--file label {
  display: block;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  border: 1px solid #707070;
  background-color: #fff;
  padding: 8px 10px 8px 6px;
  color: #3C40FD;
  cursor: pointer;
  user-select: none;
}
@media (min-width: 769px) {
  .form__field--file label {
    color: #0A0A3F;
    font-size: 15px;
    padding: 13px 22px;
  }
}
@media (max-width: 768px) {
  .form__field--button {
    display: flex;
    justify-content: center;
  }
}
.form__field input,
.form__field textarea {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  border: 1px solid #707070;
  background-color: #fff;
  padding: 8px 10px 8px 6px;
  color: #0A0A3F;
}
@media (min-width: 769px) {
  .form__field input,
  .form__field textarea {
    font-size: 15px;
    padding: 13px 22px;
  }
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  font-size: inherit;
  color: inherit;
}
.form__field input,
.form__field textarea {
  display: block;
  width: 100%;
}
.form__field-description {
  display: block;
  max-width: 457px;
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  line-height: 16px;
  color: #0A0A3F;
}
@media (min-width: 769px) {
  .form__field-description {
    text-align: center;
  }
}
.form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 181px;
  width: 100%;
  height: 41px;
  border: 0;
  border-radius: 21px;
  background: #3C40FD;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
}
.form__button:hover, .form__button:focus {
  background: #3C40FD;
}

.cards {
  padding-bottom: 100px;
}
.cards .swiper-pagination-bullets {
  bottom: auto;
}
.cards .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #0A0A3F;
  opacity: 1;
}
.cards .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #3C40FD;
}

.card {
  padding: 0 45px;
  background-color: #fff;
  box-shadow: 0px 23px 28px rgba(0, 0, 0, 0.1607843137);
  border-radius: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 313px;
  width: 100%;
  min-height: 275px;
}
.card__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.card__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0A0A3F;
  margin-bottom: 10px;
}
.card__description {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #0A0A3F;
}