@charset "utf-8";
/* CSS Document */
/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		background-color: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: inset 0 0 0 2px #41ac21;
		color: #41ac21;
		cursor: pointer;
		display: inline-block;
		font-size: 0.8em;
		font-weight: 600;
		height: 3.5em;
		line-height: 3.5em;
		padding: 0 1.75em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
	}

		input[type="submit"]:hover, input[type="submit"]:active,
		input[type="reset"]:hover,
		input[type="reset"]:active,
		input[type="button"]:hover,
		input[type="button"]:active,
		button:hover,
		button:active,
		.button:hover,
		.button:active {
			box-shadow: inset 0 0 0 2px #0060C7;
			color: #0060C7;
		}

		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		button:active,
		.button:active {
			background-color: #0060C7;
			box-shadow: inset 0 0 0 2px #0060C7;
			color: #0060C7;
		}

/* Formulario
form {
    background-color: #fff;
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    margin: 14px 0;
    justify-content: space-between;
} */

form .span{
    background-color: #0060C7;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #999;
  font-size: 16px;
  padding-bottom: 5px;
  font-family: 'Arial', sans-serif;
}
label.required::after {
  content: "*";
  color: red;
  margin-left: 5px;
}
label.inline {
  display: inline-block;
  margin-right: 10px;
}
input[type="text"],
input[type="email"],
textarea {
    max-width: 500px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #666;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}
button {
  padding: 10px 20px;
  background-color: #007bff;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
    background-color: #2d4e71;
}
/* formulario buscador */
form .frm{
	width: calc(100%/2 - 20px)				
}

form span{
	display: block;
	font-waight: 500;
	margin-bottom: 5px;
}

.frm input{
	height: 40px;
	width: 100%;
	outline: none;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-left: 15px;	
}

.frm select{
	height: 40px;
	width: 100%;
	outline: none;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-left: 15px;
}
      /* responsivo */
@media(max-width: 584px){
	.container{
		max-width: 100%;
	}
	
	form .frm{
		margin-bottom: 15px;
		width: 100%
	}
}
/* temas */
.nav2-enlace{
	display: inline-block;
	background: #0056b3; 
	color: #fff;
	padding: 10px 30px;
	border-radius: 5px;
	width: 100%;
	margin-top: 10px;
	text-align: center;
}

.nav2-enlace:hover{
	background: #BDBDBD; 
	color: #fff;
	cursor: pointer;
}

.nav2{
    background: #bce0fc;
    padding: 10px 10px;
    border-radius: 5px;
    justify-content: space-between;
}

.nav2-boton{
	background: #4CAF50;
	padding: 10px 0;
	display: none;
}

/* TITULO */
	.cont {
        height: 40vh;
		background-image:url("../images/bg-h.jpg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		color: white;
	}

    .cont-texto{
        color: white;
        text-align: center;
		padding: 300px;
    }


.cont-texto ul li {
  color: white;
  display: inline-block;
  margin: .5em .75em;
  
}

.cont-texto ul li a {
  transition: 400ms;
  padding-bottom: .3em;
}

.cont-texto ul li a:hover {
  color: white;
  border-bottom: 2px solid white;
}

.cont-texto .active {
  color: white;
  border-bottom: 2px solid white;
}

.white {
	background-color: white;
}

.bord {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(205, 205, 205, 2);
    border-radius: 10px;
    padding-top: 5px;
    padding-left: 10px;
    padding-bottom: 20px;
    padding-right: 10px;
}

.datos{
	display: flex;
}

.autor{
	text-align: left;
	padding-right: 90px;
	margin: 0 10px;
}

.time{
	text-align: right;
	padding-left: 90px;
	margin: 0 10px;
}


@media(max-width: 800px){
	
   .cont-texto{
	padding: 160px;
	font-size: 15px;
	color: white; text-shadow: black 0.2em 0.0em 0.3em
   }
}
