a{
  text-decoration-line: none;
  text-decoration-style: none;
}
.menu{
	font-family: lato, sans-serif;
	font-weight: bold;
  background: rgb(209,216,217);
  background: linear-gradient(90deg, rgba(209,216,217,0.2) 0%, rgba(246,246,246,0.2) 35%, rgba(21,128,149,0.2) 100%);
  -webkit-box-shadow: -2px 20px 29px -19px rgba(0,0,0,0.32);
  -moz-box-shadow: -2px 20px 29px -19px rgba(0,0,0,0.32);
  box-shadow: -2px 20px 29px -19px rgba(0,0,0,0.32);
  border-top: solid 4px #b4f05d;
}
.secazul{
	background-color: #EBF3F4;
}
.secazul2{
	background-color: #70A1C3;
}
.secazul3{
	background-color: #D7ECF1;
}
.secmorada{
	background-color: #3D1E59;
	color: white;
	font-size: 0.8em;
	font-family: lato, sans-serif;
}
.secblanca{
  border-top: 5px solid #b4f05d;
  border-right: 0 solid;
  border-bottom: 5px solid #b4f05d;
  border-left: 0 solid;
  background-color: white;
}
.secfooter{
  background-color: #4BA0A9;
}
.titulo_azul{
	font-family: lato, sans-serif;
	font-weight: bold;
  color: #00468C;
}
.titulo_rojo{
	font-family: lato, sans-serif;
	font-weight: bold;
  color: #e23913;
}

.blanco_light{
	font-family: lato, sans-serif;
	font-weight: 300; 
	color: #fff;
}
.p{
	font-family: lato, sans-serif;
	font-weight: 500; 
	font-size: 0.9em;
}
.p_2{
  font-family: lato, sans-serif;
  font-weight: 500; 
  font-size: 0.9em;
}
.hover_btn:hover{
	filter: grayscale(31%) brightness(115%) saturate(151%) contrast(129%) drop-shadow(6px 17px 21px rgba(90,90,90,0.49));
-webkit-filter: grayscale(31%) brightness(115%) saturate(151%) contrast(129%) drop-shadow(6px 17px 21px rgba(90,90,90,0.49));
-moz-filter: grayscale(31%) brightness(115%) saturate(151%) contrast(129%) drop-shadow(6px 17px 21px rgba(90,90,90,0.49));
	cursor: pointer;
}

.box-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
 
}
.box{ 
  transition:.2s all; 
}
.box-wrap:hover .box{
  filter:blur(2px);
  opacity:.5;
  transform: scale(.98);
  box-shadow:none;
  cursor: pointer;
}
.box-wrap:hover .box:hover{
  transform:scale(1);
  filter:blur(0px);
  opacity:1;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

/* Double-color dashed line */

hr.style-three {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}



/****** LOGIN MODAL ******/
.loginmodal-container {
  padding: 30px;
  max-width: 450px;
  width: 100% !important;
  background-color: #F7F7F7;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
 
}

.loginmodal-container h1 {
  text-align: center;
  font-size: 1.8em;
  
}

.loginmodal-container input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.loginmodal-container input[type=text], input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  /* border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.loginmodal-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loginmodal {
  text-align: center;
  font-size: 14px;
  
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
  user-select: none; */
}

.loginmodal-submit {
  /* border: 1px solid #3079ed; */
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #4d90fe;
  padding: 17px 0px;
 
  font-size: 14px;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

.loginmodal-submit:hover {
  /* border: 1px solid #2f5bb7; */
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #357ae8;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}

.loginmodal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
} 

.login-help{
  font-size: 12px;
}