@import url(https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url(bootstrap.min.css);
@import url(font-awesome.min.css);
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/brands.min.css');
/* Typography */
html {
    scroll-behavior: smooth
}
body {
    font-family: 'Work Sans';
    font-size: 14px;
	background-image: url("../img/back.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom right;
}
h1, h2, h3, h4, h5, h6 {
    color: #191919;
    line-height: 1.3;
    font-weight: 500
}
p {
    color: #595959;
    font-size: 16px;
    font-family: 'Work Sans';
    line-height: 2;
    font-weight: 400
}
/* Colores Principales de Secciones*/
.universal-bg {
    background: #005383;
}
.universal-text {
    color: #005383;
}
.universal-light-bg {
    background: #08ABF2;
}
.universal-light-text {
    color: #08ABF2;
}
.metropoli-bg {
    background: #8a9541;
}
.metropoli-text {
    color: #8a9541;
}
.economia-bg {
    background: #fd8a1c;
}
.economia-text {
    color: #fd8a1c;
}
.cultura-bg {
    background: #ff3d66;
}
.cultura-text {
    color: #ff3d66;
}
.cartera-bg {
    background: #fd8a1c;
}
.cartera-text {
    color: #fd8a1c;
}
.deportes-bg {
    background: #e23c35;
}
.deportes-text {
    color: #e23c35;
}
.tendencias {
    background: #7d77b8;
}
.tendencias-text {
    color: #7d77b8;
}
/* Colores de partidos politicos */
.pri-bg {
    background: #CC0000;
}
.pri-text {
    color: #CC0000;
}
.pan-bg {
    background: #014aa6;
}
.pan-text {
    color: #014aa6;
}
.prd-bg {
    background: #ffcc00;
}
.prd-text {
    color: #ffcc00;
}
.pt-bg {
    background: #b00202;
}
.pt-text {
    color: #b00202;
}
.pvem-bg {
    background: #009933;
}
.pvem-text {
    color: #009933;
}
.mc-bg {
    background: #fb500d;
}
.mc-text {
    color: #fb500d;
}
.panal-bg {
    background: #00a4ac;
}
.panal-text {
    color: #00a4ac;
}
.morena-bg {
    background: #782200;
}
.morena-text {
    color: #782200;
}
.humanista-bg {
    background: #9f3b77;
}
.humanista-text {
    color: #9f3b77;
}
.encuentro-social-bg {
    background: #9f3b77;
}
.encuentro-social-text {
    color: #9f3b77;
}
.independiente-bg {
    background: #333333;
}
.independiente-text {
    color: #333333;
}
/* Colores */
.white {
    color: white;
}
.light-white {
    color: rgba(255, 255, 255, 0.5);
}
.white-bg {
    background: white;
}
.gray-bg {
    background: #f7f7f7;
}
.blue {
    color: #00a8ff;
}
.blue-bg {
    background: #00a8ff;
}
.muted {
    color: #989da0;
}
.margen-superior {
    margin-top: 150px;
}

/*-----------------------------------------------*/
#menu-superior{
	position: absolute;
}
.plus-btn-pos {
  width: 30%;
  position: absolute;
  bottom: 27px;
  /* left: 65px; */
  height: 45px;
  z-index: 300;
}
.plus-btn {
  display: inline-block;
  width: 100%;
  height: 45px;
  padding: 5px;
  border-radius: 40px;
  position: relative;
  cursor: pointer;
}
.plus-btn div {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 21px;
  height: 5px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.plus-btn .r1 {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
          transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}
.plus-btn .r2 {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-180deg);
          transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}
.plus-btn:active {
  box-shadow: none;
}
.txtmenu{
  font-size: 25px;
  color: #fff;
  position: absolute;
  left: calc(40% + 22px);
}
.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: black;
}
.content h1 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 300;
}
.content h2 {
  font-size: 42px;
  font-weight: 100;
}

.menu-container {
  z-index: 250;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  margin-top: -22px;
  pointer-events: none;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    height: 96vh;
    width: 100vw;
    z-index: 300;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    visibility: hidden;
	overflow-y:scroll;
}

.menu ul {list-style:none;
	padding-left: 0;
}

.menu ul li {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 25px;
  color: white;
  min-height: 25px; padding: 10px;
    
}
.menu ul li a {
  font-family: 'Work Sans';
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 3px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.menu ul li a:hover {
  color: #ff8212;
  text-decoration:none;
}

.menu-sliders {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-box-flex 0.45s;
  transition: -webkit-box-flex 0.45s;
  transition: flex 0.45s;
  transition: flex 0.45s, -webkit-box-flex 0.45s, -ms-flex 0.45s;
}
.menu-sliders:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  background: transparent;
}
.menu-sliders:nth-child(odd) {
  background: #74003B;
}

body.menu-open .menu-sliders:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0%;
          flex: 0 0 0%;
}
body.menu-open .menu {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  visibility: visible;
  pointer-events: all;
}
body.menu-open .plus-btn .r1 {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
body.menu-open .plus-btn .r2 {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
          transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
/*----------------------------------*/
.fa-brands, .fa-envelope, .redes-div{
	font-size: 1.3rem;
}
.redes-div{
	color: #fff;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 0;
}
.footer-area {
    position: fixed;
    width: 100%;
    height: 6vh;
    z-index: 1;
    background-color: #03356c;
    text-align: center;
    bottom: 0;
}
.footer-area .footer-social-info {
    position: relative;
    z-index: 1;
    padding: 15px 0;
}
.footer-area .footer-social-info a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff
}
.footer-area .footer-social-info a span {
    margin-left: 10px
}
@media only screen and (max-width:767px) {
    .footer-area .footer-social-info a span {
        display: none
    }
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .footer-area .footer-social-info a span {
        display: none
    }
}
.footer-area .footer-social-info a:focus, .footer-area .footer-social-info a:hover {
    color: #00b4da;
	text-decoration: none;
	text-shadow: 0px 0px 7px rgba(0, 0, 0, 1);
}
.footer-area .copywrite-text {
    position: relative;
    z-index: 1;
    padding: 15px 0;
    text-align: center
}
.footer-area .copywrite-text p {
    font-size: 14px;
    color: #595959;
    margin-bottom: 0
}
@media only screen and (max-width:767px) {
    .footer-area .copywrite-text p {
        font-size: 12px
    }
}
.footer-area .copywrite-text p a {
    font-size: 14px;
    color: #fff;
    font-weight: 400
}
.footer-area .copywrite-text p a:focus, .footer-area .copywrite-text p a:hover {
    color: #d1bb95
}
@media only screen and (max-width:767px) {
    .footer-area .copywrite-text p a {
        font-size: 12px
    }
}
@media only screen and (max-width:499px) {
    .footer-area .footer-social-info {
        padding: 15px 20px;
    }
}
@media only screen and (max-width:399px) {
    .footer-area {
        height: 8vh;
    }
}
.fileD {
  display: block;
  position: fixed;
  z-index: 200;
  width: 100%;
  left: 0;
  bottom: 49px;
  
}
.fileD ul.lista {
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrapwrap;
    flex-wrap: nowrap;
}

.fileD ul.lista li.menu-flips {
   flex: 0 1 30%;
    height: 45px;
}
.fileD ul.lista li.down {
  flex: 0 1 70%;
    height: 45px;
}
.fileD ul.lista li a.download{
  display: block;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  line-height: 40px;
  font-size: 22px;
}
.sha div.social {
	background-color: #666;
	pointer-events: none;
}
.down a.download {
	background-color: #F49806;
}
.menu-flips {
	background-color: #74003B;
}

.descargar{
	font-family: "Roboto";
	font-size: 20px;
}

.m-right{
	margin-right: 10px;
}
@media (max-width: 767px){
	.descargar{
	font-size: 15px;
}
	.desaparecer{
		display: none;
	}
}
/*----------Empieza código extra----------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 50px;
}
#top {
    z-index: 250;
}

.btn_sitio {
    position: absolute;
    top: 0;
    left: 0/*25px*/;
    z-index: 2;
}
.btn_sitio a img {
    width: 112px;
    height: 190px;
    margin-top: 6px;
}
.soccer{
	display: block;
	position: absolute;
	top: 6px;
	right: 50px;
	width: 150px;
	height: 66px;
    z-index: 2;
}

/*----------Termina código extra----------*/
/*Media queries*/
@media (max-width:997px) {
    .plus-btn div {
      top: 50%;
      left: 27%;
      width: 27px;
      height: 5px;
    }
    .txtmenu{
      left: calc(27% + 30px);
    }
}
@media (min-width:601px) and (max-width:992px) {
    .section {
        padding: 30px 0;
    }
    .btn_sitio a img {
        width: 82px;
        height: 140px;
    }
}
@media (max-width:600px) {
    .section {
        padding: 30px 0;
    }
    .btn_sitio a img {
        width: 53px;
        height: 90px;
    }
    .soccer {
        width: 68px;
        height: 30px;
    }
	.plus-btn-pos {
        height: 35px;
		width: 50%;
    }
	.plus-btn {
       height: 35px;
    }
	.plus-btn div {
       left: 31%;
       width: 17px;
       height: 4px;
    }
	.txtmenu {
       font-size: 19px;
       left: calc(31% + 19px);
    }
	.fileD ul.lista li.menu-flips {
        flex: 0 1 50%;
    }
    .fileD ul.lista li.down {
       flex: 0 1 50%;
    }
	.fileD ul.lista li.menu-flips, .fileD ul.lista li.down {
       height: 35px;
    }
}
@media (max-width:500px) {
    .menu ul li a {
       font-size: 15px;
       letter-spacing: 1px;
       line-height: 1;
    }
	.fileD ul.lista li a.download {
       line-height: 31px;
       font-size: 19px;
    }
}
@media (max-width:330px) {
    .menu ul li a {
       font-size: 13px;
       letter-spacing: -0.2px;
       line-height: 1;
    }
}