
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

}
        @font-face {
        font-family: 'billy';
        src: url('assets/Billy-The-Gang-Italic.ttf') format('truetype');
        font-style: normal;
        font-weight: normal;
        }

.show-modal body {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 20px;
  left: 70px;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.2rem;
background: rgb(0,0,0);
background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 4%, rgba(147,171,208,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 4%, rgba(147,171,208,1) 100%);
background: linear-gradient(0deg, rgba(0,0,0,1) 4%, rgba(147,171,208,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#93abd0",GradientType=1);
  animation: show-modal 0.5s ease-out forwards;
}
@keyframes show-modal {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.modal:hover {
  background: linear-gradient(to bottom, #342E2D, #6a82fb, #05dfd7, #b4ec51);
  background-size: 600% 600%;
  animation: animate-background 5s ease infinite;
}

@keyframes animate-background {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}


.tabs {
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  border-bottom: 1px solid #ccc;
}

.tab-radio {
  display: none;
}

.tab-label {
  background-color: #f1f1f1;
  padding: 10px 15px;
  border-top: 1px #ccc solid;
  margin-right: -1px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  border-bottom: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  top: 1px;
  border-radius: 10px;
}

.tab-label:hover {
  background-color: #e6e6e6;
  transform: scale(1.10);
  z-index: 1;
}

.tab-content {
  display: none;
  background-color: transparent;
  padding: 15px;
  border-top: 1px #ccc solid;
  width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, opacity 0.5s;
}

.tab-radio:checked + .tab-label {
  background-color: transparent;
  color: #1c75bc;
  border-top: 2px solid #1c75bc;
  top: 0;
  transform: scale(1.05);
  z-index: 1;
}

.tab-radio:checked + .tab-label + .tab-content {
  display: block;
  max-height: 1000px;
  opacity: 1;
}


.off {
  color: #43A047;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  padding-top: 10px;
  font-family: 'Roboto';
  padding-left: 20px;
}

.off:hover {
  color: #E53935;
  transform: translateY(-5px) scale(1.1);
    text-transform: uppercase;
}

.off::before {
  content: '';

  width: 100%;
  height: 0%;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

.off:hover::before {
  height: 100%;
}


.imagen{
	position: relative;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	padding: 0px;
}

input[type='text'], input[type='password']{
	outline: none;
	padding: 10px;
	display: block;
	width: 300px;
	margin: 10px auto;
	border-radius: 3px;
	border: 1px  solid #eee;
}

input[type='text']:focus, input[type='password']:focus {
	background-color: #F1FBFD;
}	

input[type='submit']{
	padding: 10px;
	font-size: 16px;
	color: #fff;
	background: #0098cb;
	width: 300px;
	margin: 10px auto;
	margin-top: 20px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #000;

}
input[type='submit']:hover {
	background-color: #00b8eb;
}

.formreg{
	position: absolute;
	top: 54%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	border-radius: 5px;
    background-color: #f2f2f2;
 	width: 340px;
 	margin: auto;
 	width: 340px;
 	border: 1px  solid #ddd;
 	font-size: 16px;
 	text-align: center;
 	color: #aaa;
}

/* Establecer el tamaño y bordes del input radio */
input[type="radio"] {
  width: 20px;
  height: 20px;
  border-radius: 80%;
  border: 2px solid #ccc;
  background-color: #fff;
  margin-right: 11px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  transform: scale(1.2);
}

/* Establecer el estilo del input radio cuando está seleccionado */
input[type="radio"]:checked {
  border-color: #2C282B;
  transition: all 0.4s ease-in-out;
}

/* Agregar un círculo dentro del input radio */
input[type="radio"]::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 3px;
  border-radius: 80%;
  background-color: #810F65;
  opacity: 0;
  box-shadow: 0px 0px 5px 0px rgba(45, 22, 45, 0.3);
  vertical-align: middle;
  margin-left: 4px;

  margin-top: 5px;
}

/* Establecer el estilo del círculo cuando el input radio está seleccionado */
input[type="radio"]:checked::before {
  opacity: 1;
  transform: scale(1.8);
}
a{
	color: #0098cb;
}

.questform h2{
	color:#282A2B;
	margin: 0 auto;
	font-family: 'Roboto', sans-serif;
}

.questform h3{
	color:#612D2D;
	text-align: center;
}

.questform p{
	color: #000;
	padding: 0px;
	margin: 0 auto;
	width: 300PX;
	text-align: center;
}

.questform section{
top: 30px;

}

.questform {
 position: absolute;
 top: 55%;
   left: 50%;
  transform: translate(-50%, -50%);
	border-radius: 5px;
    background-color: #DCD9D4;
 background-image: linear-gradient(to bottom, rgba(255,255,255,0.50) 0%, rgba(0,0,0,0.50) 100%), radial-gradient(at 50% 0%, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0.50) 50%);
 background-blend-mode: soft-light,screen;
    padding: 40px;
    border: #000 solid 1px;
    color: #282A2B;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Roboto';
   
}

.mensaje1 {
  position: absolute;
  top: 30%;
  left: 50%;
  font-size: 48px;
  text-align: center;
  background: linear-gradient(to right, #000000, #000000); /*gradiente*/
  -webkit-background-clip: text; /*para aplicar el gradiente al texto*/
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 1px #00ff00; /*sombra*/
  z-index: 2;
  animation: escala-infinita 0.3s ease-in-out infinite alternate;
  font-family: 'Luckiest Guy', cursive;
  font-weight: 700;

}

@keyframes escala-infinita {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
} 


.mensaje2 {
  position: absolute;
  top: 30%;
  left: 50%;
  font-size: 48px;
  text-align: center;
  background: linear-gradient(to right, #000000, #000000); /*gradiente*/
  -webkit-background-clip: text; /*para aplicar el gradiente al texto*/
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 1px #FF0000; /*sombra*/
  z-index: 2;
  animation: escalo-infinita 0.3s ease-in-out infinite alternate;
  font-family: 'Luckiest Guy', cursive;
  font-weight: 700;
}

@keyframes escalo-infinita {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
}


.responde{

	font-size: 20px;
}
img{
	text-align: center;
	padding: 0px;
	width:  200px;
	height: 100px;
	top: 12px;
	position: relative;
	
}
.centro{
	text-align: center;
	position: relative;
}

 /* Alineacion Respuestas */

.Respuestas {
    color: #6F6F69;
}
 
.inp {
    width: 13px;
    height: 13px;
    padding: 0;
    margin:0;
    vertical-align: left;
    position: relative;
    top: -1px;
    overflow: hidden;

}
/* Mneu navegación*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body{
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.7;
	background-color: #7B2E63;
	overflow: hidden;
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100vh;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  z-index: 3;
}
.section-center{
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease, 
              top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 10px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease, 
              right 100ms 1750ms ease,
              margin-top 100ms ease, 
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 500ms ease, 
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
  position: fixed;
  top: 33px;
  right: 50px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
  background-color: #7B2E63;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1){
  transition-delay: 200ms;
}
.nav ul li:nth-child(2){
  transition-delay: 150ms;
}
.nav ul li:nth-child(3){
  transition-delay: 100ms;
}
.nav ul li:nth-child(4){
  transition-delay: 50ms;
}
.nav ul li a{
  font-family: 'Montserrat', sans-serif;
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}
.nav ul li a:hover{
  text-decoration: none;
  color: #ffeba7;
}
.nav ul li a:after{
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #353746;  
  opacity: 0.8;
  transition: width 250ms linear;
}
.nav ul li a:hover:after{
  width: 100%;
}


.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 1640ms;
}
.logo {
	position: absolute;
	top: 60px;
	left: 50px;
	display: block;
	z-index: 11;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
}



@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label{
    right: 55px;
  }
  .logo {
    left: 30px;
  }
  .nav{
    right: 30px;
  }
  h1{
    font-size: 16vw;
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    -webkit-text-fill-color: #ffeba7;
    text-fill-color: #ffeba7;
    color: #ffeba7;
  }
  .nav ul li a{
    font-size: 8vh;
  }
}

/* Barra de progreso del perfil */
/* Colores de los diferentes niveles */
.progre .estudiante {
    background: linear-gradient(to right, #ffae00, #ffea00);
    background: -webkit-linear-gradient(left, #ffae00, #ffea00);
}
.progre .licenciado {
    background: linear-gradient(to right, #6dbb2c, #b4d62b);
    background: -webkit-linear-gradient(left, #6dbb2c, #b4d62b);
}
.progre .ingeniero {
    background: linear-gradient(to right, #00a3e0, #00c7ff);
    background: -webkit-linear-gradient(left, #00a3e0, #00c7ff);
}
.progre .master {
    background: linear-gradient(to right, #953d7c, #c73d8f);
    background: -webkit-linear-gradient(left, #953d7c, #c73d8f);
}
.progre .doctor {
    background: linear-gradient(to right, #00a14b, #3fd478);
    background: -webkit-linear-gradient(left, #00a14b, #3fd478);
}

/* Estilos de la barra de progreso */
.progre {
    width: 100%;
    height: 25px;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.progre .barraprogreso {
    height: 100%;
    text-align: center;
    line-height: 25px;
    color: #fff;
    animation: progreso 2s ease-in-out;
    -webkit-animation: progreso 2s ease-in-out;
}

/* Animación de carga */
@keyframes progreso {
    from { width: 0%; }
    to { width: 100%; }
}

@-webkit-keyframes progreso {
    from { width: 0%; }
    to { width: 100%; }
}


/*BARRA DE CARGA*/

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*
body {
  font: 80%/1.2 Helvetica, Arial, sans-serif;
  padding: 20px;
}  
*/
.well {
  width: 100%;
  background-color: #F7F7F7;
  background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
  background-repeat: repeat-x;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  overflow: hidden;
}

#progress-bar {
  animation: progress 20s;
  padding: .3em;
  text-align: center;
  color: rgba(255,255,255,100);
  background-image: linear-gradient(150deg, #B78DE3, #3373BC, #7FE6E4);
  border-radius: 4px 4px 4px 4px;
  transition: width 0.2s ease-in-out;
}

@keyframes progress {
  from {
    width: 0;
    color: rgba(255,255,255,0);
  }
  to {
    width: 100%;
    color: rgba(255,255,255,1);
  }
}


/* rodeo-002
- animate bg position
- animate text opacity/color to pulse
  - or animate letter spacing to pulse
- jquery to adjust width with progress
*/




/*  Background animado */

body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(#a23982,#1f1013);
    -webkit-overflow-Y: hidden;
    -moz-overflow-Y: hidden;
    -o-overflow-Y: hidden;
    overflow-y: hidden;
    -webkit-animation: fadeIn 1 1s ease-out;
    -moz-animation: fadeIn 1 1s ease-out;
    -o-animation: fadeIn 1 1s ease-out;
    animation: fadeIn 1 1s ease-out;
}

button{
  position: absolute;
  border: 2px solid white;
  background: transparent;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  width: 250px;
  height: 50px;
  font-size: 0.9rem;
  border-radius: 5px;
  opacity: .5;
  top: 60vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  transition: .3s;
}

button:hover{
  border: 2px solid #104F55;
  background-color: rgba(365,365,365,0.5);
  cursor: pointer;
  color: #104F55;
  opacity: .8;
  transition: .3s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: white;
    box-shadow: #e9f1f1 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.light1 {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: white;
    box-shadow: #F4EC9C 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}
.light2 {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: white;
    box-shadow: #ED9AFF 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}
.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3.4s infinite linear;
  -moz-animation: floatUp 3.4s infinite linear;
  -o-animation: floatUp 3.4s infinite linear;
  animation: floatUp 3.4s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}

.header{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 2em;
}

#head1, #head2,#head3, #head4, #head5{
  opacity: 0;
}

#head1{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
}

#head2{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;
}

#head3{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

#head4{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 17s;
  -moz-animation-delay: 17s;
  -o-animation-delay: 17s;
  animation-delay: 17s;
}

#head5{
  -webkit-animation: finalFade 1 5s ease-in;
  -moz-animation: finalFade 1 5s ease-in;
  -o-animation: finalFade 1 5s ease-in;
  animation: finalFade 1 5s ease-in;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 22s;
  -moz-animation-delay: 22s;
  -o-animation-delay: 22s;
  animation-delay: 22s;
}

@-webkit-keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@-moz-keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@-o-keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@-webkit-keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@-moz-keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@-o-keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@-webkit-keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

@-moz-keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

@-o-keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

@keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}


/* Tabla de perfil */


.my-custom-table {
  width: 94%;
  position: relative;
  margin: 0 auto;
  border: 1px solid #000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  border-collapse: collapse;
}

.my-custom-table th {
  background: linear-gradient(to bottom, rgba(159, 50, 120, 0.5), rgba(0, 0, 0, 0.8));
}

.my-custom-table th,
.my-custom-table td {
  padding: 8px;
  text-align: left; 
  color: #F0DCEC;
  font-size: 0.7rem;
}

.my-custom-table tr {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.my-custom-table td:hover {
  color: #171216;
}

.my-custom-table .center {
  text-align: center;
  color: #000;
}

.my-custom-table tr:hover {
  background: linear-gradient(to bottom, rgba(245, 227, 241, 0.5), rgba(200, 220, 255, 0.8));
  background-size: 400% 400%;
  animation: gradient 2s ease-in-out infinite;
}

.my-custom-table .center {
  text-align: center;
  position: relative;
  color: #F0DCEC;
}

.my-custom-table h2,
.my-custom-table p {
  text-align: center;
}
  .center {
    text-align: center;
    position: relative;
    color: #F0DCEC;
  }
.perfil{
	color: #000;
}

/* Tabla con las preguntas y paginacion en PERFIL */


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 0.6rem;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.pagination a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-out;
}

.pagination a:hover:before {
  width: 100%;
}

.pagination a.active,
.pagination a:hover {
  background: linear-gradient(to bottom, rgba(245, 227, 241, 0.5), rgba(200, 220, 255, 0.8));
  color: #000;
  transform: scale(1.3);
}

.pagination a.active:before {
  display: none;
}


/* Creado Por Javier Origin
   Madrid Spain 
   Patito Designs */
/* Tabla */
.mi-estilo-de-tabla {
width: 100%;
border-collapse: separate;
border-spacing: 0;
font-family: 'Roboto', sans-serif;
background: linear-gradient(to bottom, rgba(254, 254, 199, 0.5), rgba(255, 255, 255, 1.0));
color: #000;
overflow: hidden;
border-radius: 12px;
}

/* Encabezado de la tabla */
.mi-estilo-de-tabla thead th {
background-color: #111;
color: #fff;
text-align: left;
font-size: 1.2rem; / Tamaño de texto actualizado */
font-weight: bold;
padding: 6px;

}

/* Columnas de la tabla */
.mi-estilo-de-tabla tbody td {
border: none;
padding: 6px;
text-align: left;
transition: all 0.3s ease;
font-size: 1.2rem; / Tamaño de texto actualizado */
}

/* Color de las columnas al pasar el puntero */
.mi-estilo-de-tabla tbody tr:nth-child(even) td:hover,
.mi-estilo-de-tabla tbody tr:hover td {
background-color: rgba(255, 255, 255, 0.1);
color: #000;
}

/* Efecto de la columna seleccionada */
.mi-estilo-de-tabla tbody td.selected {
background-color: rgba(255, 255, 255, 0.2);
color: #fff;
}

/* Efecto de las columnas al pasar el puntero */
.mi-estilo-de-tabla tbody td:not(.selected):hover {
transform: translateY(-5px);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Añade un borde redondeado */
.mi-estilo-de-tabla tbody td:first-child,
.mi-estilo-de-tabla thead th:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}

.mi-estilo-de-tabla tbody td:last-child,
.mi-estilo-de-tabla thead th:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}

/* Cambia el color del texto de la primera columna */
.mi-estilo-de-tabla tbody td:first-child {
	font-weight: bold;
  color: #D8BE6F;
}

/* Estilos para pantallas más pequeñas */
@media screen and (max-width: 600px) {
  .mi-estilo-de-tabla tbody td,
  .mi-estilo-de-tabla thead th {
    font-size: 0.8rem;
    padding: 10px;
  }
  .mi-estilo-de-tabla tbody td:first-child,
  .mi-estilo-de-tabla thead th:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .mi-estilo-de-tabla tbody td:last-child,
  .mi-estilo-de-tabla thead th:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* griddd */




.flex-grid {
  display: flex;
  margin: 0 auto;
}
.flex-grid .col {
  flex: 1;
}
.flex-grid-thirds {
  display: flex;
  justify-content: space-between;
}
.flex-grid-thirds .col {
  width: 32%;
}

@media (max-width: 400px) {
  .flex-grid,
  .flex-grid-thirds {
    display: block;
    .col {
      width: 100%;
      margin: 0 0 10px 0;
    }
  }
}




* {
  box-sizing: border-box;
}
body {
  padding: 10px;
}
.flex-grid { 
  margin: 0 0 20px 0;
}
.col {

  padding: 20px;
}







/* Pagina principal */


   /* Estilos para la versión de escritorio */
    @media screen and (min-width: 768px) {
      .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
      }
    }

    /* Estilos para la versión móvil */
    @media screen and (max-width: 767px) {
      .grid {
        display: flex;
        flex-direction: column;
      }
      .grid-item {
        margin-bottom: 20px;
      }
    }

    /* Footer o pie de pagina */
.footer {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  opacity: 0.8;
  height: 4%;
  transition: height 0.5s ease, opacity 0.5s ease;

}
.footer:hover {
  height: 20%;
  overflow: auto;

}

.footer .containero {
  max-width: 100%;
  margin: 0 auto;

}

.table-footer {
  width: 100%;
  border-collapse: collapse;
}

.table-row {
  border-bottom: 1px solid #555;
}

.table-cell {
  padding: 8px;
}

.col-md-4 {
  width: 33.33333333%;
  float: left;
  position: relative;
}

.col-md-12 {
  width: 100%;
  float: left;
  position: relative;
}

.footer-info {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.muffin{
		color: #EAADDF;
	 font-size: 0.9rem;

}
.footer-info1 {
  font-size: 0.7rem;
  line-height: 0.7;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.footer-info2{
font-size: 0.7rem;
  line-height: 1.0;
  margin-bottom: 0px;
  color: #BCB8A6;
  padding: 0px;
}
.titanq{
	color: #EFE3C1;
	 font-size: 0.9rem;
  background: -webkit-linear-gradient(#eee, #E7DA99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-contact {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 8px;
  margin-top: 18px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-legal {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}



.button-container {
  position: relative;
  height: 10vh;
}

.button {

  bottom: 0px;
  background: linear-gradient(to bottom, #ff7f50, #ff6347);
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 10px 10px;
  border-radius: 50px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0.3;
}


.button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .button-container {
    max-width: 600px;
    margin: 0 auto;
  }
}





/* TEXTOS EN PAGINA PRINCIPAL */

.grid-item {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1.0));
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-bottom: 40px;
}

 h2 {
  font-family: 'billy' !important;
  font-size: 30px;
  color: #ffeba7;
  margin-bottom: 18px;
  margin-top: 10px;
  text-shadow: 1px 1px 1px #000000;
}

.textos1 {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 300;
  padding-right: 30px;
}
.textos2 {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: bold;
}
.morado {
	color: #000;
	font-size: 1.1rem;
	line-height: 1.2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}



/* NOVEDADES*/
.novedad{
	font-size: 1.0rem;
	color: #000;
}




/* PAGINA INICIO 2*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1.0));
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-bottom: 40px;
}

.column-left {
  width: 100%;
  max-width: 680px;
}

.column-right {
  width: 100%;
  max-width: 340px;
}

@media screen and (min-width: 768px) {
  .column-left {
    width: 70%;
  }
  
  .column-right {
    width: 30%;
  }
}

@media screen and (min-width: 992px) {
  .column-left {
    width: 68%;
  }
  
  .column-right {
    width: 32%;
  }
}

@media screen and (min-width: 1200px) {
  .column-left {
    width: 66.66%;
  }
  
  .column-right {
    width: 33.33%;
  }
}


/* SCROLL */
body {
  overflow-y: scroll;
}

/* Estilo del scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

/* Estilo del scrollbar para navegadores no-Webkit */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

/* Estilo del scrollbar para navegadores Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.3) #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

body::-moz-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 10px;
}

body::-moz-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}


/* BOTON INICIO */

.container a{
  background-color: #1abc9c;
  border: none;
  color: white;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.custom-button:before {
  content: "";
  position: absolute;
  background-color: #16a085;
  width: 120%;
  height: 100%;
  top: 0;
  left: -10%;
  transform: skewX(-30deg);
  transition: all 0.4s ease-in-out;
}

.custom-button:hover:before {
  left: -20%;
}

.custom-button:after {
  content: "";
  position: absolute;
  background-color: #1abc9c;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.custom-button:hover:after {
  transform: scale(1.5);
}
