/*=============================================
GLOBAL
=============================================*/

*{
	margin:0px;
	padding:0px;
	list-style: none;
	text-decoration: none;	
	font-family: 'Roboto', sans-serif;
}

ul, ol{
	padding:0px;
}



a:visited, a:link, a:focus, a:hover, a:active{
	list-style: none;
	text-decoration: none;
}


:root {
	--primary-color: #3DA1FF;
	--accent-color: #0054A2;

	--text-color: #263238;
	--body-color: #17FF8A;
	--main-font: 'roboto';
	--font-bold: 700;
	--font-regular: 400;
}
* { box-sizing: border-box }

body {
	color: var(--text-color);
	/*background: linear-gradient(#3da1ff, #17FF8A);*/
		background: radial-gradient(#65f4cd, #4799e9); 
		/*background: radial-gradient(#4799e9, #65f4cd); */
	/*background:url('../img/constancia.png');*/
	/*font-family: var(--main-font), Arial;*/
	font-weight: var(--font-regular);
	
	
}

.titulo_{
			font-size: 3rem;
		}

div.licenciaton{
	background-image: url("../img/Compu2.png");	
	width: 100%;
	height: 540px;
}
main{ 
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	align-items: center;
	/*width: 100vw;*/
	height: 100vh;
	/*margin-top: 3rem;*/
}
h1 { font-weight: var(--font-bold) }
input, 
button {
	border: none;
	background: none;
	outline: 0;
}
button {cursor: pointer}
.SearchBox-input::placeholder {/* No es un seudoelemento estandar */
 color:white;
	opacity: .6;
}

h2 {
	margin:  5rem;
}
/* Chrome, Opera ySafari */
.SearchBox-input::-webkit-input-placeholder {
  color: white;
}
/* Firefox 19+ */
.SearchBox-input::-moz-placeholder {
  color: white;
}
/* IE 10+ y Edge */
.SearchBox-input:-ms-input-placeholder {
  color: white;
}
/* Firefox 18- */
#formGroupExampleInput:-moz-placeholder {
  color: white;
}

.SearchBox {
	--height: 4em;
	display: flex;
	
	border-radius: var(--height);
	background-color: var(--primary-color);
	height: var(--height);
}
	.SearchBox:hover .SearchBox-input {
		padding-left: 2em;
		padding-right: 1em;
		width: 240px;
	}
	.SearchBox-input {
		width: 0;
		font-size: 1.2em;
		color: #fff;
		transition: .45s;
	}
	.SearchBox-button {
		display: flex;
		border-radius: 50%;
		width: var(--height);
		height: var(--height);
		background-color: var(--accent-color);
		transition: .3s;
	}
	.SearchBox-button:active  {
		transform: scale(.85);
	}
	.SearchBox-icon {
		margin: auto;
		color: #fff;
	}

/*=============================================
ESCRITORIO GRANDE (LG revisamos en 1366px en adelante)
=============================================*/
@media (min-width:1200px){
	.col-lg-0{
		display: none;
	}
	.error404 h1{
		font-size:300px;
		text-shadow:8px 8px 1px #dadada;
	}
	/*	div.licenciaton{
			width:100%;
			background-image: url("../img/movil1.png");
			height: 160px;
			
		}*/
}
/*=============================================
ESCRITORIO MEDIANO O TABLET HORIZONTAL (MD revisamos en 1024px)
=============================================*/
@media (max-width:1199px) and (min-width:992px){
	.col-md-0{
		display: none;
	}
	.error404 h1{
		font-size:200px;
		text-shadow:6px 6px 1px #dadada;
	}

		/*div.licenciaton{
			width:100%;
			background-image: url("../img/movil1.png");
			height: 160px;
			
		}*/
}
/*=============================================
ESCRITORIO PEQUEÑO O TABLET VERTICAL (SM revisamos en 768px)
=============================================*/
@media (max-width:991px) and (min-width:768px){
	.col-sm-0{
		display: none;
	}

		/*div.licenciaton{
			width:100%;
			background-image: url("../img/movil1.png");
			height: 160px;
			
		}*/

	.error404 h1{
		font-size:150px;
		text-shadow:4px 4px 1px #dadada;
	}	
}
/*=============================================
MOVIL (XS revisamos en 320px)
=============================================*/
@media (max-width:767px){
	.col-xs-0{
		display: none;
	}
/*	div.licenciaton{
			width:100%;
			background-image: url("../img/movil1.png");
			height: 160px;
			
		}*/
.titulo_{
			font-size: 2rem;
		}

		.fir_{
			width: 300px;
		}

	.error404 h1{
		font-size:75px;
		text-shadow:2px 2px 1px #dadada;
	}
}

/* Para 480px */  
@media only screen and (max-width: 500px) and (min-width: 381px) {  
		div.licenciaton{
			
			background-image: url("../img/movil2.png");				
			width:100%;
			height: 160px;
			
		}

		div.licenciaton1{			
			background-image:  url("../img/movil2.png");				
			width:100%;
			height: 160px;			
		}
		.titulo_{
			font-size: 2rem;
		}

		.fir_{
			width: 300px;
		}
		
}
  
  
/* Para 320px */  
@media only screen and (max-width: 380px) and (min-width: 5px)  {  
  div.licenciaton{			
			background-image:  url("../img/movil2.png");				
			width:100%;
			height: 160px;			
	}

	div.licenciaton1{			
			background-image:  url("../img/movil2.png");				
			width:100%;
			height: 160px;			
	}
			.titulo_{
			font-size: 2rem;
		}

		.fir_{
			width: 300px;
		}
}
 




