* {
  margin: 0;
  padding: 0;
}

/*menu*/

.barra_menu {
  display: block;
  padding: 15px;
  font-size: 28px;
  background: #58B856;
  color: #fff;
  cursor: pointer;
  position:fixed;
  width:100%;
}

.barra_menu a {
  text-align: right;
  position: absolute;
  right: 45px;
}

.menu {
  display: block;
  width:250px;
  background: #47C843;
  position:fixed;
  left:-250px;
}

.menu li {
  list-style: none;
}

.menu li a, .item_con_submenu, .submenu_open, .submenu li a {
  color:#000;
  text-decoration: none;
  font-size: 19px;
  display: block;
  padding: 5%;
  border-bottom: 0.5px solid #B7B7B7;
  transition: all ease 0.5s;
  cursor: pointer;
}

.menu .primero_menu {
  border-top: 0.5px solid #B7B7B7;
}

.menu li a:hover, .item_con_submenu:hover, .submenu_open:hover, .submenu li a:hover {
  background: #43B940;
  transition: all ease 0.5s;
}

.menu > ul > ul {
  display: grid;
  grid-template-columns: 70% 30%;
}

.submenu {
  display: none;
}

.submenu_open {
  text-align: center;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submenu li a {
  padding-left: 8%;
}

/*fin menu*/

footer {
  background: #000;
  display: block;
  padding: 0.7%;
  color:#fff;
  text-align: center;
}

.bloque_titulo {
  display: block;
  text-align: center;
  background: #49D345;
}

.bloque_titulo > h1 {
  font-size: 40px;
  padding: 3%;
  font-family: 'Raleway', sans-serif;
}

.bloque_titulo > hr {
  border: 2px solid #000;
  width: 30%;
  margin: 0.5% auto;
}

.bloque_titulo > p {
  font-size: 25px;
  padding-top: 1%;
  padding-bottom: 3%;
  font-family: 'Ranga', cursive;
}

.bloque {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding: 1%;
  margin: 0 10px;
}

.bloque > div {
  border:1px solid #000;
  background: #DEDEDE;
  padding: 20px;
  border-radius: 20px;

  -webkit-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
}

.bloque_textOnly {
  border:1px solid #000;
  background: #DEDEDE;
  padding: 1.5%;
  margin: 1% 1%;
}

h3 {
  font-size: 30px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1.5%;
}

.bloque div p, .singleText {
  font-family: 'Roboto', sans-serif;
  font-size: 23px;
  text-align: justify;
}

.boton {
  display: inline-block;
  text-decoration: none;
  color:#000;
  padding: 0.8%;
  background:#fff;
  border: 1px solid #3491D2;
  transition: all ease 0.5s;
}

.boton:hover {
  background:#3491D2;
  border: 1px solid #3491D2;
  transition: all ease 0.5s;
}

.separador {
  display: block;
  padding: 1%;
}

.noticias {
  display: block;
  border:1px solid #000;
  background: #DEDEDE;
  padding: 30px;
  margin: 0 25px;
  border-radius: 20px;
  margin-bottom: 30px;

  -webkit-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
}

.noticias .anuncios {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

.noticias .anuncios {
  display: flex; /* [1] */
  flex-wrap: nowrap; /* [1] */
  overflow-x: auto; /* [2] */
  -webkit-overflow-scrolling: touch; /* [3] */
  -ms-overflow-style: -ms-autohiding-scrollbar; /* [4] */
}

/* [6] */
.noticias .anuncios::-webkit-scrollbar {
  height: 10px;
}

.noticias .anuncios::-webkit-scrollbar-thumb {
    background: #58B856;
    border-radius: 4px;
}

.noticias .anuncios::-webkit-scrollbar-thumb:hover {
    background: #51A74F;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.noticias .anuncios::-webkit-scrollbar-thumb:active {
    background-color: #428741;
}

.noticias .anuncios div {
  padding: 20px;
  flex: 0 0 auto;
  margin: 20px;
  border: 1px solid #000;
  border-radius: 20px;
  max-width: 700px;

  -webkit-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.6);
box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.6);
}

.noticias .anuncios div a {
  text-decoration: none;
  color: #2B7BC1;
  cursor: pointer;
  font-weight: bold;
}

.noticias .anuncios div li {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color:#000;
  text-align: justify;
  margin-left: 5px;
}

.noticias .anuncios div a:hover {
  text-decoration: underline;
}

.unique_plataformasView_miniTitle {
  display: none;
}

@media screen and (max-width:700px) {
  .noticias .anuncios {
    display: block;
    overflow-x: scroll;
    overflow-y: hidden;
  }

  .noticias .anuncios div {
    overflow: hidden;
    margin: 10px;
  }

  .noticias {
    padding: 10px;
    margin: 15px;
  }

  .unique_plataformasView_miniTitle {
    display: block;
    text-align: center;
    margin-bottom: 2px;
  }
}

h4 {
  font-size: 25px;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 1%;
}

.anuncios hr {
  border: 1.5px solid #000;
  width: 15%;
  margin-bottom: 1.5%;
}

.anuncios p {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  color:#000;
  text-align: justify;
  margin-top: 5px;
}

.formulario {
  display: block;
  width: 100%;
  margin: 1%;
  padding: 1%;
}

.formulario input[type="text"],
.formulario input[type="password"] {
  display: block;
  padding: 1%;
  font-size: 18px;
  width: 90%;
}

.formulario textarea {
  display: block;
  padding: 1%;
  font-size: 18px;
  width: 90.1%;
  font-family: arial;
  max-width: 90.1%;
  max-height: 300px;
  min-width: 90.1%;
  min-height: 50px;
}

.formulario input[type="submit"] {
  display: block;
  padding: 1%;
  font-size: 18px;
  width: 92.4%;
}

.formulario select {
  display: block;
  padding: 0.5%;
  font-size: 18px;
  width: 92.4%;
}

.bloque_esp {
  margin: 1%;
}

.error {
  display: block;
  color: #fff;
  background: red;
  padding: 0.8%;
  margin: 1%;
  font-size: 17px;
}

.bloque2 {
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width:800px) {
  .bloque {
    grid-template-columns: 1fr 1fr;
  }

  .noticias .anuncios {
    grid-template-columns: 1fr;
  }

  .noticias .anuncios div {
    margin-top:1%;
  }
}

@media screen and (max-width:600px) {
  .bloque {
    grid-template-columns: 1fr;
  }

  .noticias {
    margin-top: 3%;
  }
}

footer a {
  text-decoration: none;
  color:#D1D1D1;
  font-size: 18px;
  display: block;
  margin: 10px 0;
  font-family: "Roboto", sans-serif;
}

footer a:hover {
  text-decoration: underline;
}

footer .ultimo_footer {
  margin: 0;
  margin: 10px 0;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}

footer .columnas {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.totalyIMG {
  display: inline-block;
  width: 98%;
  margin: 1%;
}

.totalyIMG_down {
  margin-top: 1%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.contenedorCartelImagen {
  cursor: pointer;
  margin: 15px 2%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 15px;
  margin-bottom: 25px;

  -webkit-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
}

.bloqueCompleto {
  border: 1px solid #000;
  border-radius: 15px;
  background: #DEDEDE;
  margin:20px 10px;
  padding: 10px;

  -webkit-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.6);
}

.imagen_unique562301 {
  width: 700px;
  max-width: 100%;
}

.textoComun {
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  text-align: justify;
}

.proyectoEnDesarrollo_div {
  text-align: center;
  padding: 1%;
}

.proyectoEnDesarrollo_img {
  display: inline-block;
  width: 100%;
  margin: 1%;
  max-width: 400px;
  cursor: pointer;
}

.anuncios_fecha {
	font-size: 16px;
	margin: 1% 0%;
	padding: 0.2%;
	border-bottom: 1px solid #000;
	background: #F3F3F3;
}

.twitterTimelineTotal {
  display: block;
  margin: auto;
  width: 90%;
  max-width: 600px;
}

.menu {
    height: calc(100vh - 65px);
    overflow: auto;
}
