@import url('https://fonts.googleapis.com/css?family=Numans|Raleway:300,400,600,700,900&display=swap');

:root {
  --azul: #5dc3e5;
}
body {
  font-family: 'Numans';
}
.ocultar {
  display: none!important;
}

.hv-100 {
  min-height: 100vh !important;
}

.titular1 {
  font-family: 'Raleway';
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--azul);
}
.titular2 {
  font-family: 'Raleway';
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  color: black;
}

.parrafo1 {
  font-family: 'Numans';
}

.logo {
  max-width: 125px;
}
.logo-absolute {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.barra {
  border-bottom: 6px solid #e2e2e2;
  max-width: 100px;
}
.bg-portada{
  background-image: url(https://via.placeholder.com/800x900);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
a.btn-enviar{
  text-decoration: none;
}
.btn-enviar {
  background-color: var(--azul);
  color: white;
  border-radius: 2em;
  border-width: 2px;
  border-color: var(--azul);
  border-style: solid;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 19px;
  padding-right: 19px;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  box-sizing: border-box;
  word-wrap: break-word;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  position: relative;
  top: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  line-height: normal;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 200px;
}
.btn-descargar{
  width:100%!important;
  max-width:350px;
}
.btn-enviar:hover {
  background-color: white;
  color: var(--azul);
}
.btg-redes {
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border-style: none;
  border-color: #383838;
  border-width: 1px;
  color: #5dc3e5;
  background-color: #000000;
  box-shadow: none;
  font-family: inherit;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  text-align: center;
  cursor: pointer;
  display: inline-block;
  padding: 5px;
  transition:300ms all ease-in-out;
}
.btg-redes:hover {
  color: #ffffff;
  background: #000000;
}
#whatsapp{
  background-color: #01e675;
  border-color: #01e675;
  color: white;
}
#whatsapp:hover{
  background-color: #1ebea5;
  border-color: #1ebea5;
  color: white;
}
form.formDatos{
  width: 100%;
  max-width: 600px;
  margin: auto;
}
form.respuestas{
  width: 100%;
  max-width: 600px;
  margin: auto;
}
input:not([type="checkbox"]):not([type="radio"]), select, select.form-control{
  border-top:none;
  border-right:none;
  border-left:none;
  border-bottom-color: var(--azul);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-radius: 0;
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: .375rem .75rem;
}
input[type="radio"] {
  width: 20px;
  height: 20px;
  transform: translateY(4px);
  margin-right: 10px;
}
label{
  cursor: pointer;
  margin-bottom: 0rem;
  display: inline-flex;
  width: calc(100% - 35px);
}
.helpCampo {
  font-weight: 600;
  font-size: 0.8rem;
}
.errorForm{
  font-weight: 600;
  font-size: 0.8rem;
  color: red;
}
:focus {
  outline: none;
}
.form-control:focus {
  border: none;
  border-bottom-color: var(--azul);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(0,123,255,0);
}
.form-group{
  margin-bottom: 0rem;
}

.cajaTexto{
  color: #575757;
  max-width:500px;
  margin:auto;
  margin-bottom: 3px;
}
.textAreaFormulario{
  width:100%;
  max-width: 500px;
  padding:16px;
  border:2px 
  solid var(--azul);
}
/* azul ems */
.text-azul {
  color: var(--azul);
}

.bg-azul {
  background-color: var(--azul);
}

/*Spinner*/
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #5dc3e5;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@media (max-width:768px){
  .bg-portada{
    min-height: 50vh;
  }
}