@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Open+Sans:wght@400;700&display=swap');
body{font-family: 'Open Sans', sans-serif;}
h1,h2,h3,h4,h5{font-family: 'EB Garamond', serif;}
.garamond{font-family: 'EB Garamond', serif;}
.font-28{font-size: 28px;}
.font-23{font-size: 23px;}
.color-celeste{color:#139ef4}
.bg-preguntas{background-image: url(../img/fondo-preguntas.png); background-position: top right; background-repeat: no-repeat;}
header{box-shadow: 0 1px 0 rgb(0 0 0 / 10%); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 10%); background-color: #FFF;}
.sombra{box-shadow: 0px 10px 60px 0px rgb(15 19 25 / 10%);}
.form-section {display: none;}
.form-section.current {display: block;}
.form-check {margin-bottom: 12px;}
.form-check-label{color: #000;}
.card{border-radius: 20px;}
.customRadio input[type="radio"] {
  position: absolute;
  left: -9999px;
}
.customRadio input[type="radio"]+label {
  position: relative;
  padding: 3px 0 0 40px;
  cursor: pointer;
}
.customRadio input[type="radio"]+label:before {
  content: '';
  background: #fff;
  border: 2px solid #139ef4;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}
.customRadio input[type="radio"]+label:after {
  content: '';
  background: #139ef4;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 5px;
  opacity: 0;
  transform: scale(2);
  transition: transform 0.3s linear, opacity 0.3s linear;
}
.customRadio input[type="radio"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
	.bg-preguntas{background-image: none;}
}