*, *::after, *::before { -webkit-box-sizing: border-box; box-sizing: border-box; }

body {
	font-family: 'Roboto Mono', monospace;
	color: #1b3050;
	background: #f9f0d0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	    color: #007336;
	outline: none;
}

a:hover,
a:focus {
	color: #fff;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.enlaces-footer li {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 7px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    padding-bottom: 7px;
}

.enlaces-footer{
	padding: 0;
	margin: 0;
}

.enlaces-footer li a{
 font-size: 12px;
}

footer p {
    font-size: 14px;
    color: #666;
    line-height: 20px;
}

footer h2{
    margin-top: 0;
}

/* Header */
.pol-header {
	position: relative;
	height: 100vh;
	min-height: 600px;
	padding: 0em 1em 4em;
	text-align: center;
	color: #4a4244;
    background-color: rgba(0, 115, 54, 0.82);
}

.codrops-header a:hover,
.codrops-header a:focus {
	color: #333;
}

.pol-header__pretitle{
    display: block;
    margin: 1em 0 0.5em;
    font-size: 1.5em;
    color: #fbe107;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
    margin-bottom: 40px;
    border-bottom: 1px dashed #fbe107;
}

.pol-header__title {
	font-size: 3.75em;
    font-weight: bold;
    line-height: 1;
    position: relative;
    z-index: 10;
    margin: 0;
    color: #fffcfc;
    text-transform: uppercase;
}

/* Top Navigation Style */
.pol-links {
	    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    background: #eef7f2;
}

.codrops-links::after {
	position: absolute;
	top: 15%;
	left: 50%;
	width: 1px;
	height: 70%;
	background: currentColor;
	opacity: 0.2;
	content: '';
	-webkit-transform: rotate3d(0,0,1,22.5deg);
	transform: rotate3d(0,0,1,22.5deg);
}

.codrops-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0.5em;
}

.link-copy {
	position: absolute;
	top: 2em;
	right: 2em;
	width: 20px;
	height: 20px;
	z-index: 100;
	cursor: pointer;
	background: url(../img/link.svg) no-repeat center center;
	background-size: cover;
}

.link-copy::after {
	content: 'Click to copy direct link';
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: bold;
	position: absolute;
	right: 100%;
	margin: 0 1em 0 0;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	color: currentColor;
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.link-copy:hover::after {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.link-copy::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	opacity: 0;
	border-radius: 50%;
	background: currentColor;
}

.link-copy--animate::before {
	-webkit-animation: pulse 0.3s;
	animation: pulse 0.3s;
}

@-webkit-keyframes pulse {
	from {
		opacity: 1;
		-webkit-transform: scale3d(0, 0, 1);
		transform: scale3d(0, 0, 1);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

}

@keyframes pulse {
	from {
		opacity: 1;
		-webkit-transform: scale3d(0, 0, 1);
		transform: scale3d(0, 0, 1);
	}

	to {
		opacity: 0;
		transform: scale3d(1, 1, 1);
		webkit-transform: scale3d(1, 1, 1);
	}

}

.github-icon {
	fill: #333; 
	color: #b7f372; 
	position: absolute; 
	top: 0; 
	border: 0; 
	right: 0;
}

.github-corner:hover .octo-arm {
	animation: octocat-wave 560ms ease-in-out;
}

@keyframes octocat-wave {
	0%,
	100% {
		transform: rotate(0);
	}

	20%,
	60% {
		transform: rotate(-25deg);
	}

	40%,
	80% {
		transform: rotate(10deg);
	}

}

@media (max-width:500px) {
	.github-corner:hover .octo-arm {
		animation: none;
	}

	.github-corner .octo-arm {
		animation: octocat-wave 560ms ease-in-out;
	}

}

/* Content */
.content {
	padding: 3em 0;
}

.section {
	display: -webkit-flex;
	display: flex;
	min-height: 100vh;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.section--nav {
	position: relative;
	overflow: hidden;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.section__title {
	font-size: 0.65em;
	font-weight: 700;
	-webkit-flex: none;
	flex: none;
	margin: 3em 0 15em;
	text-indent: 3px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #d1d1d1;
}

.section.section--intro {
	    font-size: 1.2em;
	position: relative;
	min-height: 100vh;
	text-align: center;
	color: #fff;
	background: #333;
}

.section--intro p {
	max-width: 1000px;
	margin: 0 auto;
	padding: 1em;
}

/* Mockup Slider */
.mockup-slider {
	position: relative;
	width: calc(100% - 12em);
	margin: 0 0 0 2em;
}


.mockup-slider img {
    position: relative;
    display: block;
    border-radius: 50%;
    padding: 7px;
    border: 2px solid #333;
}

.mockup-slider__title {
	font-size: 3em;
    font-weight: normal;
    margin: auto;
    text-align: center;
}

.mockup-slider__subtitle {
	position: absolute;
	top: 70%;
	left: -1em;
	background: #1b3050;
	margin: 0;
	color: #fff;
	font-size: 1.05em;
	padding: 0.25em 0.5em;
	z-index: 100;
}

/* Related demos */
.content--related {
	font-weight: bold;
	padding: 10em 1em;
	text-align: center;
	background: #333;
	color: #fff;
}

.content__wrap--related {
	max-width: 800px;
	margin: 0 auto;
}

.media-item {
	display: inline-block;
	padding: 1em;
	vertical-align: top;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.media-item__img {
	max-width: 100%;
	opacity: 0.6;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
	opacity: 1;
}

.media-item__title {
	font-size: 1em;
	margin: 0;
	padding: 0.5em;
}

/* Individual section colors */

/* Xusni */
.section#Xusni {
	 background: #3f51b5;
	 color: #212956;
}

.section#Xusni .icono-f {
	 background: #3f51b5;
	padding: 15px;
}

.section#Xusni .icono-f svg{
	 fill: #fff;
}

.section#Xusni .mockup-slider img {
border-color: #fff;
}

.section#Xusni .btn-aut{
	border-color: #fff;
}

/* Magool */
.section#Magool {
	 background: #b5bf4b;
	 color: #fff;
}

.section#Magool .icono-f {
	 background: #b5bf4b;
	     padding: 14px;
}

.section#Magool .icono-f svg{
	 fill: #595d2f;
}

.section#Magool .btn-aut{
	border-color: #595d2f;
}

.section#Magool .mockup-slider img {
border-color: #595d2f;
}

.section#Magool .mockup-slider__subtitle {
	background: #f44336;
}

.section#Magool .mockup-slider__subtitle a {
	color: #ddd;
	font-weight: bold;
}

/* Ubax */
.section#Ubax {
	 background: #15498a;
	 color: #fff;
}

.section#Ubax .btn-aut{
	border-color: #fff;
}

.section#Ubax  .icono-f svg{
    fill: #fff;
        margin-top: -9px;
}

.section#Ubax .icono-f{
	background: #15498a;
	padding: 20px;
}

.section#Ubax .mockup-slider img {
border-color: #fff;
}

/* Zahi */
.section#Zahi {
	 background: #b7443b;
	 color: #fff;
}

.section#Zahi .mockup-slider img {
border-color: #fff;
}

.section#Zahi .icono-f{
	background: #b7443b;
	padding: 17px;
}

.section#Zahi .btn-aut{
	border-color: #fff;
}

.section#Zahi  .icono-f svg{
    fill: #fff;
        margin-top: -5px;
}

/* Timiro */
.section#Timiro {
	 background: #eae096;
	 color: #ff5722;
}

/* Shamso */
.section#Shamso {
	 background: #93b1c5;
	 color: #15498a;
}

.section#Shamso .btn-aut{
	border-color: #15498a;
}

.section#Shamso .icono-f{
	background: #93b1c5;
}

.section#Shamso .icono-f svg{
    fill: #15498a;
}

.section#Shamso .mockup-slider img {
border-color: #15498a;
}

/* Maxamed */
.section#Maxamed {
	 background: #78b395;
	 color: #395a49;
}

.section#Maxamed .icono-f svg{
    fill: #395a49;
        margin-top: 8px;
}

.section#Maxamed .mockup-slider img {
border-color: #395a49;
}

.section#Maxamed .icono-f{
	background: #78b395;
}

.section#Maxamed .btn-aut{
	border-color: #395a49;
}
/* Beca */
.section#Beca {
	 background: #a7a7a7;
	 color: #333;
}

.section#Beca .icono-f svg{
    margin-top: -10px;
    fill: #333;
}

.section#Beca .icono-f{
padding: 20px;
    background: #a7a7a7;
}

.section#Beca .btn-aut{
	border-color: #333;
}

.section#Beca .mockup-slider img {
border-color: #333;
}


/* Etefu */
.section#Etefu {
	 background: #62ea80;
	 color: #fff;
}

/* Meklit */
.section#Meklit {
	background: #27272b;
	color: #ff4d3b;
	min-height: 510px;
}

.section#Meklit .mockup-slider {
	margin: 0 0 0 -9em;
	min-height: 510px;
}

/* Mariame */

.section#Mariame {
	background: #a9a9d4;
	color: #5050b9;
}

/* Desta */
.section#Desta {
	background: #1e1b2c;
	color: #f39468;
}

.section#Desta .mockup-slider__title:first-letter {
	color: #fff;
}

/* Hagos */
.section#Hagos {
	background: #92d9c7;
	color: #436b61;
}

.section#Hagos .icono-f svg{
    fill: #436b61;
        margin-top: 6px;
}

.section#Hagos .mockup-slider img {
border-color: #436b61;
}

.section#Hagos .icono-f{
	background: #92d9c7;
	    padding: 12px;
}

.section#Hagos .btn-aut{
	border-color: #436b61;
}

/* Berta */
.section#Berta {
	background: #ff6666;
	color: #ffe7db;
	min-height: 510px;
}

.section#Berta .mockup-slider {
	min-height: 510px;
}

/* Aman */
.section#Aman {
	background: #f7f5ed;
	color: #d6856d;
}

/* Kafa */
.section#Kafa {
	background: #d2f1ca;
	color: #e54f4f;
}

/* Kafa */
.section#Totit {
	background: #3992fd;
	color: #fff;
}

/* Ayana */
.section#Ayana {
	background: #738aa0;
	color: #fffefd;
}

@media screen and (max-width: 50em) {
	.link-copy {
		display: none;
	}
	.codrops-header {
		font-size: 0.85em;
	}
	.section.section--intro {
		font-size: 1em;
	}
	.section--nav {
		padding: 4em 0;
	}
	.section--nav::before {
		content: attr(id);
		position: absolute;
		top: 1em;
		right: 1em;
	}
	.mockup-slider {
		    width: calc(80%);
    margin: auto;
	}
	.nav {
		-webkit-flex: none;
		flex: none;
		margin: 0 auto;
	}
	.nav.nav--berta {
		width: 100%;
	}

	.mockup-slider__title {
    font-size: 2em;}

    .btn-aut {
    font-size: 14px;
    text-align: center;
}

.centrar-head {
    position: relative!important;
        top: 57%!important;
    height: 70vh!important;

}

.primary-nav-wrapper{
	display: none;
}

.pol-header__title {
    font-size: 2.5em;}

 .pol-links {
    background: #007336!important;
}  

.menu-top{
	width: 120px!important;
} 

.section--intro{
	padding-top: 30px;
}
.section--nav::before{
	display: none;
}

#lateral{
	display: none;
}

.mockup-content {
    width: 90%!important;
}

.cbox {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

#convenciones {
    display: none;} 

#content-convenciones{
	display: none;
}    
}


.icon-svg{
    width: 170px;
    height: 170px;
    padding: 32px;
    border: 3px solid #1b3050;
    border-radius: 50%;
    margin: auto;
}

.icon-svg svg{
fill: #1b3050;
}

.btn-aut{
padding: 15px 20px;
    display: table;
    margin: 30px auto 30px auto;
    border: 2px solid #31312f;
    cursor: pointer;
}

.cbox{
	position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 251, 251, 0.98);
    top: 0;
    left: 0;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.cbox:before{
	content: " ";
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fbf8f9+29,fbf8f9+100&1+55,0+100 */
background: -moz-linear-gradient(top,  rgba(251,248,249,1) 29%, rgba(251,248,249,1) 55%, rgba(251,248,249,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(251,248,249,1) 29%,rgba(251,248,249,1) 55%,rgba(251,248,249,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(251,248,249,1) 29%,rgba(251,248,249,1) 55%,rgba(251,248,249,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbf8f9', endColorstr='#00fbf8f9',GradientType=0 ); /* IE6-9 */

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 10%;
	z-index: 100;
}


.cbox:after{
	content: " ";
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fbf8f9+29,fbf8f9+100&0+0,0+0,1+55 */
background: -moz-linear-gradient(top,  rgba(251,248,249,0) 0%, rgba(251,248,249,0.53) 29%, rgba(251,248,249,1) 55%, rgba(251,248,249,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(251,248,249,0) 0%,rgba(251,248,249,0.53) 29%,rgba(251,248,249,1) 55%,rgba(251,248,249,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(251,248,249,0) 0%,rgba(251,248,249,0.53) 29%,rgba(251,248,249,1) 55%,rgba(251,248,249,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fbf8f9', endColorstr='#fbf8f9',GradientType=0 ); /* IE6-9 */


	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10%;
	z-index: 100;
}

.cbox h3{
    font-size: 1.5em;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 28px;
}

.mockup-content{
	width: calc(100% - 50em);
	margin: 100px auto 100px auto;
}

.cerrer-cbox{
	display: none;
}


/*////////////////////// COLORES ///////////////////////////*/

.verde{
	    background: #41ec7e;
    padding: 15px 20px;
}

.multa{
    padding: 3px 5px;
    background: #333332;
    display: inline-block;
    margin: 5px 0 10px 0;
    font-size: 14px;
    color: #fff;
    position: relative;
}

li.multa{
	padding: 15px 40px;
        list-style: none;
        font-size: 1em;

}

.ninos{
    background: #f982ca;
    padding: 15px 20px;
}

li.multa:after{
	display: none;
}


.multa:after{
	content: " ";
    width: 0;
    height: 0;
    top: 0;
    right: -17px;
    position: absolute;
    border-top: 12px solid transparent;
    border-left: 17px solid #333332;
    border-bottom: 13px solid transparent;
}

.separador{
    border: 1px dotted rgba(204, 204, 204, 0.45);
    height: 1px;
    margin: 40px;
}

.cerrar{
    border: 1px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 34px;
    position: fixed;
    right: 40px;
    top: 40px;
    z-index: 200;
    font-size: 21px;
    font-weight: lighter;
    cursor: pointer;

}


.modal{ overflow: hidden;}


.primary-nav li{
    width: 90px;
    list-style: none;
    height: 90px;
    border: 2px solid #fff;
    padding: 25px;
    border-radius: 50%;
    float: left;
        margin: 10px;
        position: relative;
            -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
}

.primary-nav li:after{
	content: " ";
	position: absolute;
	width: 20px;
	right: -22px;
	top: 50%;
	border-bottom: 2px solid #fff;
}

.primary-nav li:last-child:after{
	display: none;
}

.primary-nav li a svg{
	fill: #fff;
}

.none li{
	list-style: none;
}

.naranja{
	 background: #f5a645;
    padding: 15px 20px;
}

.amarillo{
	 background: #f9fb61;
    padding: 15px 20px;
}

.gris{
	 background: #ccc;
    padding: 15px 20px;
}

.negro{
	 background: #333332;
    padding: 15px 20px;
    color: #fff;
}

.rojo{
    background: #f54747;
    padding: 15px 20px;
    color: #f2f2f2;
}

#logo{
    width: 30%;
    background: #007336;
    padding: 10px;
    position: relative;
}

/* .pol-header:before {
content: " ";
width: 100%;
height: 100%;
position: absolute;
right: 0;
top: 0;



} */

video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
 background: url('//demosthenes.info/assets/images/polina.jpg') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}


.texto-btn{
    position: absolute;
    /* word-wrap: inherit; */
    white-space: nowrap;
    background: #fff;
    font-size: 13px;
    padding: 2px 5px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    margin-top: 10px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    display: none;
    /* display: block; */
}

.texto-btn:before{
	content: " ";
	display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -2px; 
}


.primary-nav li:hover .texto-btn{
	display: block;
    animation-name: example;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.primary-nav li:hover{
    width: 100px;
    height: 100px;
    margin-top: 0;
}

@keyframes example {
    from {bottom: 0;}
    to {bottom:-10px;}
}

#animales{
    padding: 23px;
}

#bici{
    padding: 20px;
}

#bici svg{
    margin-top:9px;
}

#protesta{
    padding: 28px;
}

#protesta svg{
    margin-top: -10px;
}

#publico{
    padding: 27px;
}

#publico svg{
    margin-top: -3px;
}

#drogas{
	padding: 28px;
}

#drogas svg{
	    margin-top: -9px;
}

.ima-seccion {
    width: 200px;
    margin: auto;
    position: relative;
}

.ima-seccion .icono-f {
    width: 70px;
    background: #e9eae5;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: -35px;
}

#logo:after {
content: " ";
    width: 0;
    height: 0;
    border-top: 84px solid #007336;
    border-right: 71px solid transparent;
    position: absolute;
    right: -70px;
    top: 0;
}


#calle{
    padding: 19px;
    /* margin-top: 10px; */
}

#calle svg{
	margin-top: 10px;
}

.menu-top{
    position: absolute;
    right: 0;
    width: 340px;
    top: 0;
    height: 83px;
    line-height: 83px;
    background: #007336;
}

.menu-top:before {
    content: " ";
    width: 0;
    height: 0;
    border-bottom: 83px solid #007336;
    border-left: 60px solid transparent;
    position: absolute;
    left: -60px;
    top: 0;
}

.centrar-head{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.primary-nav{
    padding-left: 0;
}

.color{
    width: 15px;
    height: 15px;
    display: inline-block;
    padding: 0!important;
    float: left;
}

#convenciones{
	position: absolute;
    bottom: 0;
    z-index: 100;
    background: #eef7f2;
    width: 100%;
    padding: 20px 40px;
    height: 100vh;
    /* margin-bottom: -150px; */
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

#convenciones label{
    display: inline-block;
    margin-right: 0px;
    font-size: 12px;
}

.etiqueta{
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: block;
    font-size: 19px;
    border-bottom: 1px dotted #1b3050;
}

#content-convenciones:hover #convenciones{
	margin-bottom: 0;
}

#content-convenciones {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 240px;
    height: 100vh;
    left: -240px;
        -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.visible{
	left: 0!important;
}

.row{
	margin: 15px;
}

#content-convenciones div.mouse-container{
	left: 10%;
}

#content-convenciones div.mouse span.scroll-down{
	width: 10px;
	height: 10px;
}

#content-convenciones div.mouse{
	border: none;
}

div.mouse-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div.mouse {
    position: relative;
    display: block;
    width: 20px;
    height: 30px;
    margin: 0 auto;
    border: solid 1px #fff;
    border-radius: 8px;
}

div.mouse span.scroll-down {
    display: block;
    width: 4px;
    height: 4px;
    margin: 15% auto auto;
    -webkit-animation: scroll-inner 1.5s;
    animation: scroll-inner 1.5s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 50%;
    background: #fff;
}

#intro .btn-aut{
    color: #fff;
    border-color: #fff;
}

#comportamientos-hc .mockup-content .icon-svg svg{
	margin-top: 20px;
}

#espacio{
    padding: 22px;
}

#intro p{
    padding: 20px 40px;
}

.doslineas .multa:after {
    content: " ";
    width: 0;
    height: 0;
    top: 0;
    right: -17px;
    position: absolute;
    border-top: 19px solid transparent;
    border-left: 17px solid #333332;
    border-bottom: 25px solid transparent;
}

.doslineas .multa{
margin-right: 20px}

.conv-modal{
	background: #f54747!important;
	color: #fff;
}

#lateral{
position: fixed;
    right: -70px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
        -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;

}

#lateral  .primary-nav li{
    width: 50px;
    height: 50px;
    padding: 10px;
    float: none;
    margin: 10px;
    position: relative;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;

    
}

/*/////////////////////ANIMACIÓN MENÚ ///////////////////////////*/

#lateral .primary-nav li:nth-child(1){
	animation: example 0.2s 0.5s ease-in-out infinite;
}

#lateral .primary-nav li:nth-child(2){
	animation: example 0.2s 0.8s ease-in-out infinite;
}


/*//////////////////////////////////////////////////////*/

#lateral #drogas{
    padding: 14px;
}

#lateral #drogas svg {
    margin-top: -5px;
}

#lateral #calle svg {
    margin-top: 6px;
}

#lateral #calle {
    padding: 7px;
}

#lateral #bici svg {
    margin-top: 5px;
}

#lateral #bici {
   padding: 8px;
}

#lateral #publico{
    padding: 12px;
}

#lateral #protesta{
    padding: 14px;
}

#lateral #protesta svg {
    margin-top: -6px;
}

#lateral .primary-nav li:after {
    content: " ";
    position: absolute;
    height: 12px!important;
    bottom: -12px!important;
    left: 50%!important;
    border-left: 2px solid #fff;
    border-bottom: none;
    margin-top: 24px;
}


/*/////////////////////// FOOTER ////////////////////*/

.has-padding {
    padding: 70px 0;
}
.footer-bg {
    background-color: #f4f4f4;
}

footer .footer-nav {
    padding-top: 40px;
    border-top: solid 1px #9E9E9E;
}

footer .footer-nav ul.footer-primary-nav {
    display: inline-block;
    margin-bottom: 30px;
}

footer .footer-nav ul.footer-primary-nav li {
    display: inline-block;
    margin-right: 50px;

}

footer .footer-nav ul.footer-share {
    display: inline-block;
    float: right;
    position: relative;
    z-index: 1000;
}

.share-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    opacity: 0;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(50,57,74,0.31);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.share-dropdown ul li {
    display: inline-block;
    margin: 10px 0;
    padding: 5px 20px;
    border-right: solid 1px #E5E7E9;
}

.share-dropdown ul {
	padding: 0;
	margin: 0;
}

.share-dropdown ul li:last-child {
    padding: none;
    border-right: none;
}

.is-open{top:-20px;opacity:1}

footer ul {
    list-style: none;
}

.siguiente{
    border: 2px solid #1b3050;
    padding: 5px 7px;
    display: inline-block;
    background: #1b3050;
    color: #fff;
}

#Ruido{
    background: hsl(28, 100%, 50%);
}

#Ruido .mockup-slider__title{
	color: #fff;
}

#comercio{
	padding: 22px;
}

#Ruido .btn-aut{
	border-color: #fff;
	color: #fff;
}

#Ruido .mockup-slider img{
	border-color: #fff;
}

#Ruido .ima-seccion .icono-f{
	background: #ff7700;
	    padding: 15px;
}

#Ruido .ima-seccion .icono-f svg{
	fill: #fff;
}

header .btn-aut{
    border-color: #fff;
    color: #007336;
    margin-top: 50px;
    display: inline-block;
    background: #fff;
}

@keyframes example {
    0%   {margin-right:0;}
    50%  {margin-right:10px;}
    100% {margin-right:0;}
}

@-webkit-keyframes example {
    0%   {margin-right:0;}
    50%  {margin-right:10px;}
    100% {margin-right:0;}
}

@-webkit-keyframes scroll-inner{
	from{margin-top:15%;opacity:1}
	to{margin-top:75%;opacity:0}
}
@keyframes scroll-inner{f
	from{margin-top:15%;opacity:1}

	to{margin-top:75%;opacity:0}}

