/*ESTILOS GENERALES*/

body {
  background-color: #ededed;
  font-family: "Open Sans", sans-serif;
}

.boton {
	background: #ff8a00;
	border-radius: 3px;
	box-shadow: 0 3px 0 #d67604;
	width: 100%;
  max-width: 200px;
	text-align: center;
  margin: 0 auto;
  margin-top: 20px;
	padding: 15px 0;
}

.boton a {
	color: #fff;
	text-decoration: none;
}

.boton span {
	padding-right: 10px;
}

.boton a:hover {
	color: #fff;
	text-decoration: underline;
}

.menu_bar {
  display: none;
  left: 5px;
  position: fixed;
  top: 10px;
  z-index: 1000;
}

.menu_bar a {
  background: #000;
  color: #c39b45;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
}

.menu_bar a:hover {
  background: #c39b45;
  color: #000;
}

.share div img {
  height: 30px;
}

.share div img:hover {
  box-shadow: 0 0 5px #909090;
}

/*ESTILOS HEADER*/

header {
  background: #090a0c;
  background-image: url("../imagenes/fondo.jpg");
  background-position: 50% 80px;
  background-repeat: no-repeat;
  background-size: 2164px;
  min-height: 768px;
  position: relative;
  width: 100%;
}

header section#top {
  background-image: url("../assets/back_nav.png");
  background-position: center;
  background-repeat: no-repeat;
  height: 130px;
  width: 100%;
}

header section#top .top-content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  height: 65px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 1000px;
}

header section#top .top-content figure#logo img {
  width: 50px;
}

header section#top .top-content h1,
header section#top .top-content a {
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  text-align: left;
  text-decoration: none;
}

header section#top .top-content a:hover {
  color: #ffb000;
  text-decoration: underline;
}

header section#top .redes figure img {
  margin: 2px;
  padding: 1px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  width: 25px;
}

header section#top .redes figure img:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  border-radius: 50%;
}

header section#down {
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 900;
}

/*soundcloud*/

header .audio {
  background: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 1000px;
  padding: 10px;
  width: 100%;
}

/*menu*/

header nav {
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto;
  max-width: 1000px;
  padding: 10px;
  width: 100%;
}

header nav div a {
  color: #c39b45;
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  padding: 0 20px;
  text-decoration: none;
}

header nav div a:hover {
  background: #c39b45;
  color: #000;
  padding: 20px;
}

/*ESTILOS MAIN*/

main {
  background-image: url("../imagenes/fondo2.jpg");
  background-position: top;
  background-repeat: repeat-x;
  background-size: 1920px;
  min-height: 768px;
  position: relative;
  width: 100%;
}

main .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 1020px;
  padding-top: 40px;
  width: 100%;
}

main .flex-wrap article.bio {
  background: #fff;
  box-shadow: 0 0 5px #909090;
}

main .flex-wrap article.bio section {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -20px;
  padding: 40px;
}

main .flex-wrap article.bio section .texto {
  max-width: 560px;
  width: 100%;
}

main .flex-wrap article.bio section .texto h2 {
  color: #c39b45;
  font-size: 28px;
  font-style: italic;
  font-weight: normal;
}

main .flex-wrap article.bio section .texto p {
  color: #545454;
  font-size: 16px;
  font-weight: normal;
  line-height: 27px;
  text-align: justify;
}

main .flex-wrap article.bio section .texto .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

main .flex-wrap article.bio section .texto .share div {
  padding: 20px 20px 0 0;
}

main .flex-wrap article.bio section figure img {
  max-width: 406px;
  width: 100%;
}

/*ESTILOS INFO*/

main .flex-wrap .info-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
  width: 100%;
}

main .flex-wrap .info-content article.nota {
  background: #fff;
  box-shadow: 0 0 5px #909090;
  margin-right: 40px;
  width: 590px;
}

main .flex-wrap .info-content article.gale {
  background: #fff;
  box-shadow: 0 0 5px #909090;
  width: 590px;
}

/*TOP*/

main .flex-wrap .info-content article section.min-top {
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 20px 30px 0;
}

main .flex-wrap .info-content article section.min-top .img-nota {
  width: 63px;
}

main .flex-wrap .info-content article section.min-top .titulo h3 a {
  color: #c39b45;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

main .flex-wrap .info-content article section.min-top .titulo h3 a:hover {
  text-decoration: underline;
}

main .flex-wrap .info-content article section.min-top .titulo time {
  color: #c39b45;
  font-size: 12px;
}

/*DOWN*/

main .flex-wrap .info-content article section.min-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0 20px 0;
}

main .flex-wrap .info-content article section.min-down .miniatura-content {
  /*background: red;*/
  width: 100%;
}

main .flex-wrap .info-content article section.min-down .miniatura {
  width: 100%;
}

main .flex-wrap .info-content article section.min-down .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 0 0 40px;
}

main .flex-wrap .info-content article section.min-down .share .facebook img {
  margin-right: 20px;
}

main .flex-wrap .info-content article section.min-down .entrada-content {
  /*background: green;*/
  padding: 0 40px 0 10px;
  width: 100%;
}

main .flex-wrap .info-content article section.min-down p.entrada {
  color: #545454;
  font-size: 13px;
  line-height: 22px;
  text-align: justify;
}

main .flex-wrap .info-content article section.min-down .mas {
  float: right;
  padding: 20px 0;
}

main .flex-wrap .info-content article section.min-down .mas a {
  background-color: #c39b45;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 20px;
  text-decoration: none;
}

main .flex-wrap .info-content article section.min-down .mas a:hover {
  background-color: #ddb257;
  color: #000;
  text-decoration: underline;
}

/*ESTILOS VIDEO*/

main .flex-wrap .video-content {
  margin: 0 auto;
  padding-top: 20px;
  position: relative;
  width: 100%;
}

main .flex-wrap .video-content article.nota {
  background: #fff;
  background-image: url("../imagenes/fondo3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 5px #909090;
  width: 100%;
}

/*TOP*/

main .flex-wrap .video-content article section.min-top {
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 20px 10px 0;
}

main .flex-wrap .video-content article section.min-top .img-nota {
  width: 63px;
}

main .flex-wrap .video-content article section.min-top .titulo {
  color: #c39b45;
}

main .flex-wrap .video-content article section.min-top .titulo h3 {
  font-size: 18px;
  text-transform: uppercase;
}

/*DOWN*/

main .flex-wrap .video-content article section.min-down {
  padding: 40px;
}

main .flex-wrap .video-content article section.min-down #video {
  margin: 0 auto;
  max-width: 710px;
  width: 100%;
}

main .flex-wrap .video-content article section.min-down #video iframe {
  height: 400px;
  padding-bottom: 60px;
  width: 100%;
}

main .flex-wrap .video-content article section.min-down .mas {
  bottom: 40px;
  position: absolute;
  right: 40px;
}

main .flex-wrap .video-content article section.min-down .mas a {
  background-color: #c39b45;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 20px;
  text-decoration: none;
}

main .flex-wrap .video-content article section.min-down .mas a:hover {
  background-color: #ddb257;
  color: #000;
  text-decoration: underline;
}

/*ESTILOS FOOTER*/

footer {
  /*background-image: url("../assets/footer-back.jpg");*/
  background-color: #292929;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 220px;
  margin-top: 40px;
  width: 100%;
}

footer h4 {
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  padding-top: 20px;
  text-align: center;
}

footer p {
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  text-align: center;
}

footer a {
  color: #ffb000;
  text-decoration: none;
}

footer a:hover {
  color: #ffb000;
  text-decoration: underline;
}

footer .redes2 {
  text-align: center;
}

footer .redes2 img {
  width: 25px;
}

/*ESTILOS PARA LOS DISPOSITIVOS*/

@media screen and (max-width: 958px) {
  header section#top .top-content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 95%;
  }

  header section#top .top-content h1 {
    display: none;
  }

  header .audio {
    width: 90%;
  }

  header nav {
    width: 90%;
  }
}

/*768PX*/

@media screen and (max-width: 768px) {
  header {
    background-size: 1600px;
  }

  header section#top .top-content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }

  main .flex-wrap article.bio section .texto {
    max-width: 406px;
    width: 100%;
  }

  main .flex-wrap article.bio section figure img {
    max-width: 560px;
    width: 100%;
  }

  main .flex-wrap .info-content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  main .flex-wrap .info-content article.nota {
    margin-right: 0;
  }

  main .flex-wrap .info-content article.gale {
    margin-top: 40px;
  }
}

/*564PX*/

@media screen and (max-width: 564px) {
  header {
    background-image: url("../imagenes/fondom.jpg");
    background-size: 1460px;
  }

  main .flex-wrap article.bio section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 40px;
    width: 100%;
  }

  main .flex-wrap article.bio section .texto {
    max-width: inherit;
    width: 100%;
  }

  main .flex-wrap article.bio section figure img {
    display: none;
    padding: 0;
  }

  .menu_bar {
    display: block;
    width: 200px;
  }

  header nav {
    display: inline;
    height: 100%;
    left: -100%;
    position: fixed;
    top: 50px;
    width: 40%;
  }

  header nav div {
    margin-bottom: 5px;
    padding: 10px;
    text-align: left;
  }

  header nav div a {
    padding: 10px;
    text-align: left;
  }

  header nav div a:hover {
    background: #c39b45;
    color: #000;
    padding: 10px;
  }

  main .flex-wrap .video-content article section.min-down #video iframe {
    height: 300px;
  }
}

/*360PX*/

@media screen and (max-width: 360px) {
  header section#top .top-content .redes {
    display: none;
  }

  main .flex-wrap .info-content article section.min-down {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 20px 0 20px 0;
  }

  main .flex-wrap .info-content article section.min-down .entrada-content {
    padding-right: 0;
  }

  main .flex-wrap .info-content article section.min-down p.entrada {
    padding: 0 40px;
  }

  main .flex-wrap .info-content article section.min-down .mas {
    float: right;
    margin-right: 40px;
    padding: 20px 0;
  }

  main .flex-wrap .video-content article section.min-down #video iframe {
    height: 200px;
  }
}
