/* CSS base */
body {
  background-color: #ededed;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 2em 2em;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col-left {
  width: 50%;
}
.col-right {
  width: 45%;
  margin-right: auto;
}
.form-container {
  box-shadow: 0px 6px 34px rgba(33, 98, 196, 0.61);
  border-radius: 20px;
  padding: 30px;
  width: auto;
  max-width: 700px;
  margin: 0 auto;
}
h3.tittle {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 77px;
  /* Gradiente Titulos */
  background: radial-gradient(
    50.54% 9668.35% at 25% 75.32%,
    #f9751c 0%,
    #7f41fa 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  margin-top: 5px;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
}
.enviar {
  font-size: 20px;
  margin: auto;
}
.ofrece {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  width: 100%;
  height: auto;
  line-height: 38px;
}
#ofrece {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #f9751c;
}
#ofrece:not(:first-child) {
  color: rgb(0, 0, 0);
}
.container form {
  display: flex;
  flex-wrap: wrap;
}
.form-group {
  width: 100%;
  margin-bottom: 3rem;
}
.form-groupc {
  width: 100%;
  margin-bottom: 3rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  height: 41px;
  background: #d9d9d9;
  border: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  outline: none;
  box-shadow: 0 0 5px #f9751c;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
label[for="nombre"],
label[for="apellido"],
label[for="correo"],
label[for="telefono"] {
  font-size: 25px;
}

input[type="tel"] {
  width: 100%;
  padding: 10px;
  height: 41px;
  border-radius: 5px;
}

/*CX Button form*/
.cx-buttonf {
  justify-content: center;
  width: 282px;
  height: 60px;
  margin: auto;
  display: block;
  padding: auto;
  border-radius: 50px;
  border: 5px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgba(249, 117, 28, 1), rgba(127, 65, 250, 1) 100%)
      border-box;
}

.cx-buttonf > :first-child {
  background: linear-gradient(
    90deg,
    rgba(249, 117, 28, 1) 0%,
    rgba(127, 65, 250, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cx-buttonf:hover {
  border: 5px solid white;
  background: linear-gradient(
    90deg,
    rgba(249, 117, 28, 1) 0%,
    rgba(127, 65, 250, 1) 100%
  );
}

.cx-buttonf:hover > :first-child {
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background: transparent;
}

.cx-buttonf:active > :first-child {
  -webkit-text-fill-color: rgb(239, 239, 239);
}
@media screen and (max-width: 1100px) {
  .container {
    padding: 1em;
  }
  .row {
    flex-direction: column;
  }
  .col-left {
    width: auto;
  }
  .col-right {
    width: auto;
  }
  .form-container {
    margin-right: auto;
    width: auto;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 1em;
  }
  .row {
    flex-direction: column;
  }
  .col-left {
    width: 100%;
  }
  .col-right {
    width: auto;
  }
  .form-container {
    margin-right: auto;
    width: auto;
  }

  h3 {
    font-size: 40px;
    line-height: 50px;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .ofrece {
    font-size: 20px;
    line-height: 24px;
    width: 100%;
  }
  #ofrece {
    font-size: 20px;
    line-height: 24px;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
  }
  .enviar {
    font-size: 20px;
    margin: auto;
  }
  label[for="nombre"],
  label[for="apellido"],
  label[for="correo"],
  label[for="telefono"] {
    font-size: 16px;
  }
}
@media screen and (max-width: 300px) {
  .container {
    padding: 1em;
  }
  .row {
    flex-direction: column;
  }
  .col-left {
    width: 100%;
  }
  .col-right {
    width: 100%;
  }
  .form-container {
    margin-right: 0;
    width: auto;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }
  .enviar {
    font-size: 18px;
    margin-top: 5%;
    width: 100%;
  }
  label[for="nombre"],
  label[for="apellido"],
  label[for="correo"],
  label[for="telefono"] {
    font-size: 16px;
  }
  h3 {
    font-size: 28px;
    line-height: 36px;
  }
  h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .ofrece {
    font-size: 16px;
    line-height: 20px;
  }
  #ofrece {
    font-size: 16px;
    line-height: 20px;
  }
}
