@import url('https://fonts.googleapis.com/css?family=Bebas+Neue|Montserrat|PT+Sans+Narrow&display=swap');

/* Estilo para los radio buttons */
.form-check-input[type="radio"] {
	position: relative;
	margin-right: 5px;
	width: 20px;
	height: 20px;
}


	/* Cambia el color de fondo del radio button cuando está seleccionado */
	.form-check-input[type="radio"]:checked::before {
		background-color: #007bff; /* Cambia esto al color que desees */
	}

/* Alinea los radio buttons en línea */
.form-check-inline {
	display: inline-block;
	margin-right: 10px; /* Ajusta el espacio entre los radio buttons según tus preferencias */
}


body{
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background: #e5edf5;
}


.open
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 10000;
}
.open .layer
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-origin: top;
	animation: open 1s ease-in-out forwards;
}
.open .layer:nth-child(1)
{
	background: #000;
	z-index: 2;
}
.open .layer:nth-child(2)
{
	background: #03a9f4;
	animation-delay: 1s;
	z-index: 1;
}
@keyframes open
{
	0%
	{
		transform: scaleY(1);
	}
	100%
	{
		transform: scaleY(0);
	}
}

/* menu */

header{
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 800;
}
.logo{
  width: 90px;
  margin-top: 5px;
  margin-left: 20px;
}


header ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  color: #fff;
  align-items: flex-end;
  margin-bottom: .5em;
  margin-right: .5em;
}

header ul li{
  /* background: #eee; */
  color: #333;
  border-radius: 5px;
  font-size: 1.1em;
  font-family: 'Montserrat', sans-serif;
  padding: 0 .5em;
  line-height: 2;
}

header ul li a
{
	text-decoration: none;
	font-size: 1.1em;
	color: #000;
	padding: 5px 10px;
	letter-spacing: 2px;
  border-radius: 20px;
}
/* header ul li a.active,
header ul li a:hover
{
	background: #000;
	color: #fff;
  text-decoration: none;
} */

ul .active a{
  background: #000;
	color: #fff;
  text-decoration: none;
}

@media (max-width:1320) {

}
@media (max-width:991px) {
  header ul li{
    font-size: 1.3em;
  }

}


/* primera seccion */


#banner
{
	position: relative;
  top: 100px;
	width: 100%;
  min-height: 100vh;
  /* background: red; */
	display: flex !important;
  justify-content: space-around;
	align-items: center;
}

.foto_banner
{
	opacity: 0;
	position: relative;
  width: 400px;
	/* transform: translateY(-50%); */
	animation: fadeIn 1s linear forwards;
	animation-delay: 6s;

}

.text_banner
{
	position: relative;
	/* transform: translateY(-50%); */
	max-width: 700px;
}
.text_banner h2,
.text_banner h3
{
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	transform-origin: left;
	text-transform: uppercase;
	transform: scaleX(0);
	animation: revealTextReverse 1s ease-in-out forwards;
}
.text_banner h2
{
	font-size: 6em;
	animation-delay: 2s;
}
.text_banner h3
{
	font-size: 3em;
	animation-delay: 3s;
}

.text_banner h2:before,
.text_banner h3:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	width: 100%;
	height: 100%;
	transform-origin: right;
	animation: revealText 1s ease-in-out forwards;
	animation-delay: 3s;
}
.text_banner h3:before
{
	animation-delay: 4s;
}
@keyframes revealText
{
	0%
	{
		transform: scaleX(1);
	}
	100%
	{
		transform: scaleX(0);
	}
}
@keyframes revealTextReverse
{
	0%
	{
		transform: scaleX(0);
	}
	100%
	{
		transform: scaleX(1);
	}
}
.text_banner p
{
  width: 90%;
  text-align: justify;
	opacity: 0;
	font-weight: 400;
	font-size: 1.2em;
	animation: fadeIn 1s linear forwards;
	animation-delay: 5s;
}
@keyframes fadeIn
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}


@media (max-width:1320) {

}
@media (max-width:991px) {
  .text_banner h2{
    font-size: 6em;
  }

  .text_banner h3{
    font-size: 4em;
  }
  .text_banner p{
    font-size: 2.2em;
  }

}

/* gernerales de las secciones */
.title{
  text-align: center;
  font-size: 50px;
}
.title h3{
  margin: 0 auto;
  margin-top: 15px;
}



/* segunda seccion */

.nav{
  position: relative;
  top: 110px;
}

.text{
  position: relative;
  top: 50px;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  background: #e5edf5;
  padding: 10px;
}

.cards{
  position: relative;
  top: 50px;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  background: #e5edf5;
  padding: 10px;
}

.info{
  margin: 20px;
  display: flex;
  width: 30%;
  height: 390px;
  flex-direction: column;
  justify-content: center;
  background: #f1f6fa;
  border-radius: 15px;
  box-shadow: 2px 0px 20px rgba(0, 0, 0, .1);
}


.icons{
  position: relative;
  bottom: 40px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border-radius: 60px;
}

.info .icons i{
  font-size: 50px;
  color: #467aff;
  margin: 20px;
}

.info .icons i:nth-child(5) {
  font-size: 50px;
  color: red;
}

.info:hover{
  transform: scale(1.1);
}

.content{
  position: relative;
  bottom: 40px;
}

.content h3{
  position: relative;
  top: 20px;
  font-size: 1.4em;
  height: 70px;
  margin: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'PT Sans Narrow', sans-serif;
}

.content p{
  position: relative;
  top: 30px;
  margin: 10px;
  text-align: justify;
  font-size: 15px;
}

@media (max-width:1320) {
  .text{
    top: 0px;
  }
  .info{
    width: 80%;
  }
}
@media (max-width:991px) {
  .text{
    top: 0px;
  }
  .info{
    width: 80%;
  }

  .prime{
    flex-direction: column-reverse;
    justify-content: space-around;
  }
  .text_banner{
    transform: none;
    bottom: 180px;
  }
  .foto_banner{
    top: 0;
    transform: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 750px;
  }
  .content h3{
    font-size: 2.2em;
  }

  .content p{
    font-size: 22px;
    padding: 18px;
  }
  .info .icons i{
    font-size: 70px;
    position: relative;
    top: 30px;
  }
}

/* requisitos */

#condiciones{
  width: 100%;
  /* min-height: 100vh; */
  height: calc(100vh - 200px);
  position: relative;
  top: 100px;
}

.informacion{
  position: relative;
  top: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.textos{
  margin: 30px;
  width: 50%;
  line-height: 1.5em;
  color: #000;
  letter-spacing: .01em;
}

.textos p i{
  font-size: 20px;
  margin-right: 10px;
  color: #467aff;
}

.nota{
  font-size: .8em;
  padding: 15px;
}

/* .requisitos{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  width: 95%;
}
.contenedor{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contenedor h3{
  margin: 10px;
  font-size: 2.4em;
  text-align: center;
  font-family: 'PT Sans Narrow', sans-serif;
}
.bg{
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 300px;
  width: 100%;
} */

@media (max-width:991px) {
  .bg{
    flex-direction: column;
  }
  .informacion{
    flex-direction: column;
  }
  .textos{
    font-size: 2em;
    margin: 10px;
    width: 80%;
  }
  .title{
    font-size: 3.6em;
  }

/* responsive de el formulario */

  #form{
    position: relative;
    top: 0;
    height: 75vh;
  }

}

.img{
  width: 500px;
  margin: 25px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.16),
              0 3px 12px rgba(0,0,0,0.23);
}

.contenido{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* margin: 25px 20px 20px 0; */
}
.item{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.item  p i{
  align-self:flex-start;
  font-size: 1.2em;
  color: #467aff;
  margin: 20px;
}

.item p{
  text-align: justify;
  width: 100%;
  margin: 5px;
}

/* formulario */

#form{
  position: relative;
  top: 166px;
}

 .formulario{
  /*width: 60%;*/
  margin: 0 auto;
  position: relative;
  top: 30px;
}

.formulario h2 {
  font-size: 2rem;
  text-align: center;
  margin: 20px 0 1em;
  font-family: 'Montserrat', sans-serif;
}

.container {
  position: relative;
  max-width: 50rem;
  margin: 1rem auto;
  background: #fff;
  width: 100%;
  padding: 1rem 2rem 0;
  border-radius: 1px;
}
.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: -webkit-transform 0.28s ease-in-out;
  transition: -webkit-transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
  z-index: -1;
}
.container:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.button-container {
  text-align: center;
}

fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}


.form-group {
  position: sticky;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  text-align: left;

}


.form-radio {
	display: inline-block;
	margin-right: 10px; /* Ajusta el espacio entre los radio buttons según tus preferencias */

}



.form-inline > .form-group,
.form-inline > .btn {
	display: inline-block;
	margin-bottom: 0;
}

.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help, .form-radio .form-help, .form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}

.form-group input {
  height: 1.9rem;
}


.form-group .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #b3b3b3;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}
.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}
.form-group .bar::before {
  content: '';
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #337ab7;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  box-shadow: none;
}

.form-group input[type="file"] {
  line-height: 1;
}
.form-group input[type="file"] ~ .bar {
  display: none;
}

.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value {
  color: #333;
}

.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label {
  font-size: 0.8rem;
  color: gray;
  top: -1rem;
  left: 0;
}

.form-group input:focus {
  outline: none;
}

.form-group input:focus ~ .control-label {
  color: #337ab7;
}

.form-group input:focus ~ .bar::before {
  width: 100%;
  left: 0;
}

.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}

.radio {
  margin-bottom: 1rem;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #999;
}
.radio .helper::before, .radio .helper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}
.radio .helper::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}
.radio label:hover .helper {
  color: #337ab7;
}
.radio input:checked ~ .helper::after {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #337ab7;
}

.checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
}
.checkbox .helper::before, .checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #337ab7;
  display: block;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  border-radius: 0.25rem;
  content: '';
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #337ab7;
}
.checkbox input:checked ~ .helper {
  color: #337ab7;
}
.checkbox input:checked ~ .helper::after, .checkbox input:checked ~ .helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: 1rem;
}

.has-error .legend.legend, .has-error.form-group .control-label.control-label {
  color: #d9534f;
}
.has-error.form-group .form-help,
.has-error.form-group .helper, .has-error.checkbox .form-help,
.has-error.checkbox .helper, .has-error.radio .form-help,
.has-error.radio .helper, .has-error.form-radio .form-help,
.has-error.form-radio .helper {
  color: #d9534f;
}
.has-error .bar::before {
  background: #d9534f;
  left: 0;
  width: 100%;
}

.button {
  position: relative;
  background: currentColor;
  border: 1px solid currentColor;
  font-size: 1.1rem;
  color: #4f93ce;
  margin: 3rem 0;
  padding: 0.75rem 3rem;
  cursor: pointer;
  -webkit-transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.button span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.button::before {
  content: '';
  position: absolute;
  background: #071017;
  border: 50vh solid #1d4567;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.button:hover {
  color: #337ab7;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.button:active::before, .button:focus::before {
  -webkit-transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
.button:focus {
  outline: none;
}

@media (max-width:1320) {

}
@media (max-width:991px) {
  .formulario{
    width: 95%;
  }
  .form-group .control-label{
    font-size: 1.3rem
  }

  .redes i{
    font-size: 90px!important;
    margin-right: 30px;
  }


}




/* footer */

footer{
  width: 100%;
  height: 70px;
  display: block;
  align-items: center;
  justify-content: space-between;
  position: relative;
  text-align: center;
  top: 310px;
  background: #e9e9e9;
}

.nombres p, .redes{
  margin: 20px;
}
.nombre p{
  margin-left: 30px;
  font-size: 16px;
  line-height: 5px;
}

.redes i{
  font-size: 60px;
  margin-right: 30px;
  text-decoration: none;
}

.redes a:nth-child(1){
  color: #3b5998;
}
.redes a:nth-child(2){
  color: #00acee;
}
.redes a:nth-child(3){
  color: #3f729b;
}
.redes a:nth-child(4){
  color: #c4302b;
}
