<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*@media (min-width: 480px) and (max-width: 991px) {*/
@media (min-width: 480px) and (max-width: 1060px) {
	html {
	  height: 95%;
	}
	
	a {
	  color: inherit;
	  text-decoration: none;
	}
	
	body {
	  font-family: 'NOWAYM';
	  font-size:60px;
	  height: 100%;
	}
	
	ul {
	  list-style: none;
	  list-style-image: none;
	  margin: 0;
	  padding: 0;
	}
	
	.u-flex {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
	
	.u-flexCenter {
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}
	
	.u-flex1 {
	  -webkit-box-flex: 1;
		  -ms-flex: 1 1 auto;
			  flex: 1 1 auto;
	}
	
	.u-flex0 {
	  -webkit-box-flex: 0;
		  -ms-flex: 0 0 auto;
			  flex: 0 0 auto;
	}
	
	.u-container {
	  margin-left: auto;
	  margin-right: auto;
	  padding-left: 20px;
	  padding-right: 20px;
	}
	
	.header {
	  background-color: #transparent; /* color fondo barra */
	}
	.header a {
	  color: #1A1A1A; 
	}
	.header-wrap {
	  max-width: 1200px;
	  position: relative;
	  height: 50px; /* alto de la barra */
	  z-index: 100;
	}
	
	.menu {
	  overflow: hidden;
	}
	.menu a {
	  margin-right: 22px;
	  text-transform: uppercase;
	}
	
	/* Toggle BTN for Menu */
	.button-nav--toggle {
	  height: 60px;
	  position: relative;
	  -webkit-transition: -webkit-transform .4s;
	  transition: -webkit-transform .4s;
	  transition: transform .4s;
	  transition: transform .4s, -webkit-transform .4s;
	  width: 60px;
	}
	.button-nav--toggle span {
	  background-color: #FAFAFA; /*color de las lineas */
	  display: block;
	  height: 3px; /*grosor de las lineas */
	  left: 14px;
	  margin-top: 40px;
	  position: absolute;
	  top: 0%;
	  -webkit-transition: .4s;
	  transition: .4s;
	  width: 45px; /*ancho de las lineas */
	}
	.button-nav--toggle span:first-child {
	  -webkit-transform: translateY(-10x);/*separacion de las lineas */
			  transform: translateY(-10px);/*separacion de las lineas */
	}
	.button-nav--toggle span:last-child {
	  -webkit-transform: translateY(10px);/*separacion de las lineas */
			  transform: translateY(10px);/*separacion de las lineas */
	}
	
	.sidenav {
	  color: rgba(0, 0, 0, 0.8);
	  /*height: 100vh;/* ancho de la barra de barrido */
	  height: 550px;/* ancho de la barra de barrido */
	  padding: 50px 20px;
	  position: fixed;
	  left: 0;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  margin-top:70px;
	  -webkit-transform: translateX(100%);
			  transform: translateX(100%);
	  -webkit-transition: .4s;
	  transition: .4s;
	  /*will-change: transform;*/
	  z-index: 99;
	}
	.sidenav-wrap {
		background: #F2F2F2; /* color barrido menu */
		overflow:hidden;
		padding: 20px 0;
		top: 46px;
		left: 0;
		right: 0;
		bottom: 0;
		position: absolute;
	}
	.sidenav ul a {
	  padding: 30px 50px;/*separacion del submenu */
	  display: block;
	  color: #6d6e71;/* color titulos menu */
	}
	
	.main {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  height: 100%;
	  -webkit-transition: -webkit-transform .5s ease;
	  transition: -webkit-transform .5s ease;
	  transition: transform .5s ease;
	  transition: transform .5s ease, -webkit-transform .5s ease;
	}
	
	  body.is-showNavMob {
		overflow: auto;
		/* Active BTN Sidenav */
	  }
	  body.is-showNavMob .sidenav {
		-webkit-transform: translateX(0);
				transform: translateX(0);
	  }
	  body.is-showNavMob .main {
		-webkit-transform: translateX(-25%);
				transform: translateX(-25%);
	  }
	  body.is-showNavMob .button-nav--toggle span:first-child {
		-webkit-transform: rotate(45deg) translate(0);
				transform: rotate(45deg) translate(0);
	  }
	  body.is-showNavMob .button-nav--toggle span:nth-child(2) {
		-webkit-transform: scaleX(0);
				transform: scaleX(0);
	  }
	  body.is-showNavMob .button-nav--toggle span:last-child {
		-webkit-transform: rotate(-45deg) translate(0);
				transform: rotate(-45deg) translate(0);
	  }
	
	  .u-hide-before-md {
		display: none !important;
	  }
}
@media (min-width: 310px) and (max-width: 479px) {
	html {
	  height: 95%;
	}
	
	a {
	  color: inherit;
	  text-decoration: none;
	}
	
	body {
	  font-family: 'NOWAYM';
	  font-size:30px;
	  height: 100%;
	}
	
	ul {
	  list-style: none;
	  list-style-image: none;
	  margin: 0;
	  padding: 0;
	}
	
	.u-flex {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
	
	.u-flexCenter {
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}
	
	.u-flex1 {
	  -webkit-box-flex: 1;
		  -ms-flex: 1 1 auto;
			  flex: 1 1 auto;
	}
	
	.u-flex0 {
	  -webkit-box-flex: 0;
		  -ms-flex: 0 0 auto;
			  flex: 0 0 auto;
	}
	
	.u-container {
	  margin-left: auto;
	  margin-right: auto;
	  padding-left: 20px;
	  padding-right: 20px;
	}
	
	.header {
	  background-color: #transparent; /* color fondo barra */
	}
	.header a {
	  color: #1A1A1A; 
	}
	.header-wrap {
	  max-width: 600px;
	  position: relative;
	  height: 30px; /* alto de la barra */
	  z-index: 100;
	}
	
	.menu {
	  overflow: hidden;
	}
	.menu a {
	  margin-right: 22px;
	  text-transform: uppercase;
	}
	
	/* Toggle BTN for Menu */
	.button-nav--toggle {
	  height: 60px;
	  position: relative;
	  -webkit-transition: -webkit-transform .4s;
	  transition: -webkit-transform .4s;
	  transition: transform .4s;
	  transition: transform .4s, -webkit-transform .4s;
	  width: 50px;
	}
	.button-nav--toggle span {
	  background-color: #FAFAFA; /*color de las lineas */
	  display: block;
	  height: 3px; /*grosor de las lineas */
	  left: 14px;
	  margin-top: 40px;
	  position: absolute;
	  top: 0%;
	  -webkit-transition: .4s;
	  transition: .4s;
	  width: 35px; /*ancho de las lineas */
	}
	.button-nav--toggle span:first-child {
	  -webkit-transform: translateY(-10x);/*separacion de las lineas */
			  transform: translateY(-10px);/*separacion de las lineas */
	}
	.button-nav--toggle span:last-child {
	  -webkit-transform: translateY(10px);/*separacion de las lineas */
			  transform: translateY(10px);/*separacion de las lineas */
	}
	
	.sidenav {
	  color: rgba(0, 0, 0, 0.8);
	  /*height: 100vh;/* ancho de la barra de barrido */
	  height: 400px;/* ancho de la barra de barrido */
	  padding: 20px 10px;
	  position: fixed;
	  left: 0;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  margin-top:20px;
	  -webkit-transform: translateX(100%);
			  transform: translateX(100%);
	  -webkit-transition: .4s;
	  transition: .4s;
	  /*will-change: transform;*/
	  z-index: 99;
	}
	.sidenav-wrap {
		background: #F2F2F2; /* color barrido menu */
		overflow:hidden;
		padding: 20px 0;
		top: 46px;
		left: 0;
		right: 0;
		bottom: 0;
		position: absolute;
	}
	.sidenav ul a {
	  padding: 20px 30px;/*separacion del submenu */
	  display: block;
	  color: #6d6e71;/* color titulos menu */
	}
	
	.main {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  height: 100%;
	  -webkit-transition: -webkit-transform .5s ease;
	  transition: -webkit-transform .5s ease;
	  transition: transform .5s ease;
	  transition: transform .5s ease, -webkit-transform .5s ease;
	}
	
	  body.is-showNavMob {
		overflow: auto;
		/* Active BTN Sidenav */
	  }
	  body.is-showNavMob .sidenav {
		-webkit-transform: translateX(0);
				transform: translateX(0);
	  }
	  body.is-showNavMob .main {
		-webkit-transform: translateX(-25%);
				transform: translateX(-25%);
	  }
	  body.is-showNavMob .button-nav--toggle span:first-child {
		-webkit-transform: rotate(45deg) translate(0);
				transform: rotate(45deg) translate(0);
	  }
	  body.is-showNavMob .button-nav--toggle span:nth-child(2) {
		-webkit-transform: scaleX(0);
				transform: scaleX(0);
	  }
	  body.is-showNavMob .button-nav--toggle span:last-child {
		-webkit-transform: rotate(-45deg) translate(0);
				transform: rotate(-45deg) translate(0);
	  }
	
	  .u-hide-before-md {
		display: none !important;
	  }

}</pre></body></html>