@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap");
* {
  box-sizing: border-box;
  font-family: "Work Sans";
  margin: 0;
  padding: 0;
}

/* MENU */

.contenedor-header {
    background: #fff;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
  }
  .contenedor-header header {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  .contenedor-header header .logo a {
    font-family: "Righteous";
    font-size: 40px;
    color: #202448;
    text-decoration: none;
  }
  .contenedor-header header ul {
    display: flex;
    list-style: none;
  }
  .contenedor-header header nav ul li a {
    text-align: none;
    color: #202448;
    margin: 0 15px;
    padding: 3px;
    transition: 0.5s;
    text-decoration: none;
  }
  .contenedor-header header nav ul li a:hover {
    color: #1428db;
  }
  .nav-responsive {
    background-color: #202448;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
  }

  /*Titulo*/
  .titulo {
    text-align: center;
    padding: 50px 60px;
  }
  .titulo h1{
    font-family: "Righteous";
    font-size: 50px;
    color: #1428db;
  }
  .titulo p {
    
    color: #575366;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .informacion{
    padding: 0 150px 50px 150px;
    background-color: #fff;
    /*opacity: 80%;*/
    text-align: center;
  }
   .informacion h2{
    font-family: "Righteous";
    font-size: 28px;
    color: #1428db;
  }
  .informacion p {
    color: #575366;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: justify;
  }
  .informacion p span{
    color: #1428db;
    font-weight: 700;
  }
  .informacion img{
    border: solid 5px #1428db;
    border-radius: 15px;
    margin-top: 10px;
  }
  .data{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dashconte{
    padding: 0 150px 50px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .dashconte h2{
    font-family: "Righteous";
    font-size: 28px;
    color: #1428db;

  }
  .dashconte p{
    color: #575366;
    font-weight: 500;
    font-size: 16px; 
    padding-top: 15px;
  }
  .dashboard{
    padding: 0 150px 50px 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
    "first     second";
  }
  
  .first{
    grid-area: first;
    margin-right: 20px;
    color: #575366;
    font-weight: 500;
    font-size: 16px;
    text-align:justify;
  }
  .first p{
    margin: 10px;
  }
  .first span{
    color: #1428db;
    font-weight: 700;
  }
  .second{
    grid-area: second;
    margin-left: 20px;
    color: #575366;
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
  }
  .second p{
    margin: 10px;
  }
  .second span{
    color: #1428db;
    font-weight: 700;
  }
  .filter{
    padding: 0 150px 50px 150px;
    text-align: center;
  }
  .filter p{
    margin-bottom: 20px;
    color: #575366;
    font-weight: 500;
    font-size: 16px;
    text-align:justify;
  }
  .filter span{
    color: #1428db;
    font-weight: 700;
  }
  .filter img{
    width: 600px;
    height: auto;
    border: solid 5px #1428db;
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .filter button {
  cursor: pointer;
  background-color: transparent;
  /*border: 2px solid #fff;*/
  border: 2px solid #6e7dab;
  border-radius: 10px;
  width: fit-content;
  display: block;
  margin: 20px auto;
  padding: 10px 22px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  position: relative;
  z-index: 10;
}
.filter button a {
  text-decoration: none;
  /*color: #fff;*/
  color: #6e7dab;
}
.filter button .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  /*background-color: #35a7ff;*/
  background-color: #1428db;
  color: #fff;
  border-radius: 7px;
  z-index: -1;
  transition: width 1s;
}
.filter button:hover .overlay {
  width: 100%;
}