.hero.cotizar {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 62.5%
    ),
    url("../img/cotizar/hero.jpg") lightgray 0px -255.745px / 100% 137.21% no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    height: unset;
    justify-content: flex-start;
    padding: 50px 0;
}

.hero .container {
  justify-content: center;
  justify-content: space-between;
}

@media (max-width: 743px) {
  .hero .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.play {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form {
  padding: 50px 32px;
  background-color: var(--white-color);
  border-radius: 16px;
  box-shadow: 0px 26px 40px 0px rgba(100, 101, 104, 0.14);
  margin-bottom: 0;
  width: 60%;
}

@media (max-width: 743px) {
  .play {
    width: 100%;
    padding: 50px 0;
  }

  .play img {
    max-width: 80px;
  }

  .form {
    width: 100%;
    padding: 32px 22px;
  }
}

.form form {
  display: flex;
  flex-direction: column;
  gap: var(--normal-gap);
}

.form .form-group {
  display: flex;
  justify-content: space-between;
  gap: var(--lg-gap);
}

.form .input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100% ;
}

.form .input label {
  color: var(--titles-color);
  font-size: var(--small-font-size);
  font-weight: 500;
}

.form .input input, .form .input textarea{
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--primary-font-family);
  color: var(--text-color);
}

.form .input textarea {
  min-height: 160px;
}

.form .utilities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--xs-gap);
}

.form .utilities a {
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: 500;
  text-wrap: nowrap;
}

.form input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--white-color);
  width: 100%;
  border: none;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-weight: 600;
  margin-top: 32px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .container {
      gap: 32px;
  }

  .info {
      width: calc(40% -16px);
  }

  .form {
      width: calc(60% -16px);
  }

  .form form {
      flex-wrap: wrap;
  }

  .form .form-group {
      flex-wrap: wrap;
      gap: var(--normal-gap);
  }
}

@media (max-width: 743px) {
  .contact .container {
      flex-wrap: wrap;
      gap: 32px;
  }

  .form {
      width: 100%;
  }

  .form {
      padding: 32px 22px;
  }

  .form .form-group {
      flex-direction: column;
      gap: var(--normal-gap);
  }

  .form input[type="submit"] {
      margin-top: 16px;
  }
}