.wrap-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.wrap-form .container-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100rem;
  padding: 0px 10px;
  justify-content: space-evenly;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .wrap-form .container-form {
    padding: 0px 1%;
  }
}
@media screen and (min-width: 1024px) {
  .wrap-form .container-form {
    padding: 0px 5%;
  }
}
.wrap-form .container-form .row1 {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  row-gap: 20px;
}
.wrap-form .container-form .row1 .title-form {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lexend";
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 65px;
  width: 60%;
  justify-content: flex-start;
  row-gap: 20px;
}
.wrap-form .container-form .row1 .title-form img {
  width: 150px;
  height: auto;
  margin-right: 50px;
}
.wrap-form .container-form .row1 .quote-form {
  padding-left: 30px;
  width: 700px;
  border-left: 4px solid #2b00d4;
  font-family: "Lexend";
  font-weight: 500;
  line-height: 30px;
  font-size: 1rem;
  word-spacing: 1px;
  font-size: 20px;
  font-weight: 500;
  width: 60%;
}
.wrap-form .container-form .row1 .quote-form p {
  width: 90%;
}
.wrap-form .container-form .row1 .quote-form p a {
  text-decoration: none;
}
.wrap-form .container-form .row2 {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  height: 70%;
  width: 100%;
}
.wrap-form .container-form .row2 .box-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 90%;
}
.wrap-form .container-form .row2 .box-form form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 90%;
}
.wrap-form .container-form .row2 .box-form form ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  width: 100%;
  row-gap: 40px;
}
.wrap-form .container-form .row2 .box-form form ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  flex-direction: column;
  height: 18%;
  width: 95%;
}
.wrap-form .container-form .row2 .box-form form ul li .radio-input {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60%;
}
.wrap-form .container-form .row2 .box-form form ul li .radio-input input[type=radio] {
  display: none;
}
.wrap-form .container-form .row2 .box-form form ul li .radio-input label {
  padding-left: 0px;
  cursor: pointer;
  box-shadow: 8px 8px 40px rgba(96, 96, 117, 0.14);
  width: 170px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  position: relative;
  margin-bottom: 0px;
}
.wrap-form .container-form .row2 .box-form form ul li .radio-input label:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(43, 0, 212, 0.05);
  transition: 0.25s;
}
.wrap-form .container-form .row2 .box-form form ul li .radio-input label:hover:before {
  width: 100%;
}
.wrap-form .container-form .row2 .box-form form ul li .radio-input input:checked + label {
  transition: 0.25s;
  background-color: #401ad8;
  cursor: default;
  color: #ffffff;
}
.wrap-form .container-form .row2 .box-form form ul li textarea {
  font-weight: 600;
  height: 80%;
  width: 100%;
  border: none;
  box-shadow: 8px 8px 40px rgba(96, 96, 117, 0.14);
  padding: 20px;
}
.wrap-form .container-form .row2 .box-form form ul li textarea:focus {
  border: 0.5px solid #2b00d4;
}
.wrap-form .container-form .row2 .box-form form ul li .hover-this span button {
  letter-spacing: 1px;
  border: none;
  height: 5rem;
  width: 12rem;
  font-size: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #2b00d4;
  color: #ffffff;
  font-family: "Lexend";
  font-weight: 600;
  cursor: pointer;
  box-shadow: 8px 8px 40px 1px rgba(96, 96, 116, 0.3);
}
@media screen and (min-width: 1024px) {
  .wrap-form .container-form .row2 .box-form form ul li .hover-this span button {
    height: 4.4rem;
    width: 10.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .wrap-form .container-form .row1 .title-form {
    flex-direction: column;
    font-size: 25px;
    width: 90%;
    justify-content: space-between;
  }
  .wrap-form .container-form .row1 .title-form img {
    margin-right: 0px;
  }
  .wrap-form .container-form .row1 .quote-form {
    padding-left: 20px;
    font-size: 14px;
    width: 90%;
  }
  .wrap-form .container-form .row1 .quote-form p {
    width: 100%;
  }
  .wrap-form .container-form .row2 {
    height: 75%;
  }
  .wrap-form .container-form .row2 .box-form {
    width: 100%;
  }
  .wrap-form .container-form .row2 .box-form form ul li .radio-input {
    flex-wrap: wrap;
    row-gap: 20px;
    height: 45%;
  }
  .wrap-form .container-form .row2 .box-form form ul li .radio-input label {
    width: 150px;
  }
  .wrap-form .container-form .row2 .box-form form ul li .radio-input label:hover:before {
    width: 0%;
  }
  .wrap-form .container-form .row2 .box-form form ul li:first-of-type {
    height: 10%;
  }
  .wrap-form .container-form .row2 .box-form form ul li:nth-of-type(2) {
    height: 10%;
  }
  .wrap-form .container-form .row2 .box-form form ul li:nth-of-type(3) {
    height: 30%;
  }
  .wrap-form .container-form .row2 .box-form form ul li:nth-of-type(4) {
    height: 20%;
  }
  .wrap-form .container-form .row2 .box-form form ul li:last-of-type {
    height: 10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrap-form .container-form .row1 .title-form {
    width: 80%;
  }
  .wrap-form .container-form .row1 .quote-form {
    width: 80%;
  }
  .wrap-form .container-form .row2 .box-form {
    width: 85%;
  }
  .wrap-form .container-form .row2 .box-form form ul li .radio-input label {
    width: 23%;
  }
}/*# sourceMappingURL=index.css.map */