
  *{
      margin: 0;
      padding: 0;
      box-sizing:border-box;
      
  }
  
  :focus{
      outline: none;
  }
  
  body{
      color: black;
      font-family: 'Quicksand',sans-serif;
  }
  
  /* FORMULARIO =================================== */
  
  .form_wrap{
      width: 80%;
      height: 570px;
      margin: 50px auto;
      display: flex;
  
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 0px 20px rgba(11, 7, 7, 0.625);
  }
  
  /* Informacion de cotizacion*/
  
  .cantact_info::before{
      content: '';
      width: 100%;
      height: 100%;
  
      position: absolute;
      top: 0;
      left: 0;
  
     
      opacity: 0.9;
  }
  
  .cantact_info{
      width: 38%;
      position: relative;
  
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  
      background-image: url('/IMAGENES/img_cotizacion/cot.jpeg');
      background-size: cover;
      background-position: center center;
  
  }
  
  .info_title,
  .info_items{
      position: relative;
      z-index: 2;
      color: #fff;
  }
  
  .info_title{
      margin-bottom: 60px;
  }
  
  .info_title span{
      font-size: 25px;
      display: block;
      text-align: center;
      margin-bottom: 15px;
  }
  
  /* Formulario de cotizacion*/
  form.form_contact{
      width: 62%;
      padding: 30px 40px;
  }
  form.form_contact h1{
      font-size: 25px;
      font-weight: 600;
      color: #303030;
      margin-bottom: 30px;
      text-align: center;
  }
  form.form_contact h2{
      font-size: 15px;
      color: black;
      margin-bottom: 10px;
      text-align: center;
  }
  
  form.form_contact .user_info{
      display: flex;
      flex-direction: column;
  }
  
  form.form_contact label{
      font-weight: 600;
  }
  
  form.form_contact input,
  form.form_contact textarea{
      width: 100%;
      padding: 8px 0px 5px;
      margin-bottom: 20px;
  
      border: none;
      border-bottom: 2px solid #D1D1D1;
  
      
      color: #5A5A5A;
      font-size: 14px;
      font-weight: 400;
  }
  
  form.form_contact textarea{
      max-width: 100%;
      min-width: 100%;
      max-height: 90px;
  }
  
  form.form_contact input[type="submit"]{
      width: 180px;
      background: #61ba6d;
    background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
    background: linear-gradient(to right, #61ba6d, #83c331); 
      padding: 10px;
      border: none;
      border-radius: 25px;
      font-family: 'Quicksand',sans-serif;
      align-self: flex-end;
  
      color: #fff;
      
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
  }
  
  form.form_contact input[type="submit"]:hover{
      background: #42b633;
  }
  
  
  
  
  
  
  /* MENSAJE EXITOSO*/
  
  .mensaje-exito{
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  
  .mensaje-exito h1{
      font-size: 35px;
      display: block;
      text-align: center;
      margin-bottom: 20px;
  }
  
  .mensaje-exito a{
      display: block;
      padding: 10px 30px;
      background: #66c81f;
      text-decoration: none;
      color: #fff;
      
  }
  
  .mensaje-exito a:hover{
      background: #42b633;
      
  }
  .form_wrap2{
      width: 1009px;
      height: 330px;
      margin: 50px auto;
      display: flex;
  
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }
      @media(max-width:768px){
    .form_wrap{
        width: 100%;
        height: 700px;
    }
  }
  