/*RESET*/
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0px;
	padding: 0px;	
	list-style: none;
    outline: none;
    text-decoration: none;	
}
body {
	color: #ffffff;
	font-family: 'Karla', sans-serif;
    font-weight: 400;
	background: #000000;
}
.center {
	text-align: center;
}

/*RESPONSIVE*/
@media (min-width:501px) {
	.phone {
		display: none !important;
	}
}
@media (max-width:500px) {
	.desktop {
		display: none !important;
	}
}

/*VARIABLES*/
:root {
	--especialFont: 'Overpass', sans-serif;
	--grayText: #9b9b9b;
	--grayBg: #edecec;
	--accentColor: #35ff5d;
	--boxRadius: 10px;
}

/*TEMPLATE*/
header {
	width: 100%;
	height: 40px;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 100;
}
header .content {
	position: relative;
}
header .logo a {
	height: 40px;
	position: absolute;
	left: 20px;
    top: 6px;
}
header .share {
	position: absolute;
	right: 10px;
	top: 8px;
}
header .share li {
	display: inline-block;
}
header .share li a {
	width: 30px;
	height: 30px;
	display: block;
	margin-left: 10px;
	background-size: auto;
	background-repeat: no-repeat;
}
.top {
	width: 40px;
    text-align: center;
	height: 40px;
	display: block;
	position: fixed;
    right: 20px;
	bottom: 20px;
	border-radius: 50%;
	border: 2px solid #fff;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/ui/arrow_up.svg);	
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 100;
	display: none;
}
article .share {
	margin: 10px 0;
}
article .share li {
	display: inline-block;
	margin: 5px;
}
article .share li a {
	height: 50px;
	display: block;
	line-height: 50px;
	padding: 0 15px 0 50px;
	font-weight: 600;
	font-size: 12px;
	color: #000;
	font-weight: bold;
	border: 1px solid #000;
	background-repeat: no-repeat;
	background-position: 10px center;
	transition: border ease 1s;
	border-radius: var(--boxRadius);
}

.share li a.facebook {
	background-image: url(../img/ui/share_facebook.svg);
}
.share li a.twitter {
	background-image: url(../img/ui/share_twitter.svg);
}
.share li a.whatsapp {
	background-image: url(../img/ui/share_whatsapp.svg);
}
main {
	padding-top: 40px;
}
section {
	color: white;
	
	background: var(--accentColor);
}
section h1 {
	font-size: 40px !important;
}
article .content {
	max-width: 800px;
	width: 90%;
	margin: auto;
	padding: 30px 0;
}
article .social {
	max-width: 800px;
	width: 90%;
	margin: auto;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--grayBg);
}
article h1 {
	font-weight: 800;
	font-size: 50px;
	margin-bottom: 30px;
	font-family: var(--especialFont);
}
@media (max-width:650px) {
	article h1 {
		font-size: 50px;
        line-height: 44px;
	}
}
article h2 {
	font-weight: 600;
    text-align: center;
	font-size: 28px;
	margin: 30px 0;
	color: var(--accentColor);
}
article h3 {
	border-left: var(--accentColor) 10px solid;
	margin-top: 30px;
	padding-left: 10px;
	font-size: 18px;
	font-weight: 800;
	line-height: 40px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}
article h4 {
	
	margin-top: 30px;
	
	font-size: 24px;
	font-weight: 200;
	line-height: 40px;
}
article h5 {
	color: #a2a2a2;
    font-size: 14px;
}
article p {
    font-weight: 100;
    line-height: 24px;
	font-size: 19px;
	margin: 20px 0;
    color: white;
}
article p a {
	color: var(--accentColor);
	font-weight: 600;
	text-decoration: underline;
}
article p b {
	color:#bdffca;
    font-weight: 800;
}
article img.wide {
	width: 100%;
	margin: 20px 0;
}
article img.left {
	width: 30%;
	float: left;
	margin: 0 20px 20px 0;
}
article img.right {
	width: 30%;
	float: right;
	margin: 0 0 20px 20px;
}
.list {
	margin: 30px 0;
	text-align: center;
}
.list li {
	width: 30%;
	margin: 1%;	
	display: inline-block;
	vertical-align: top;
	padding: 20px;
	background-size: cover;
	background-position: center;
}
@media (max-width:650px) {
	.list li {
		width: 80%;
	}
}
.list li a {
	min-height: 200px;	
	display: block;
	text-align: left;
	color: white;
}
.links li {
	display: inline-block;
}
.columns {
	display: flex;
	align-items: stretch;
	border-top: 1px solid var(--grayBg); 
	border-bottom: 1px solid var(--grayBg);
}
.columns > div.image {
	background-size: cover;
	background-position: center;
}
.columns > div.color {
	background-color: var(--accentColor);
}
.columns > div.color * {
	color: white;
}
.columns > div.padding {
	padding: 3%;	
}
@media (max-width:650px) {
	.columns {
		display: block;
	}
	.columns > div {
		width: 100% !important;
		min-height: 30vh;
	}
}
.links li a {
	padding: 15px;
	padding-left: 40px;
	margin-right: 10px;
	margin-bottom: 10px;
	color: var(--accentColor);
	border: 1px solid var(--accentColor);
	font-weight: bold;
	display: block;
	border-radius: var(--boxRadius);
	background-image: url(../img/ui/btn_link.svg);
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}
.icons.large {
	width: 90%;
	margin: auto;
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 30px;
	flex-wrap: wrap;
    color: white;
}

.icons.large img {
	border-color: rgba(255, 0, 0, 0);
    border-width: 5px;
    border-radius: 50%;
    border-style: solid;
    animation: animatedgradient 2s ease alternate infinite;
    
}
.icons.large img.autos{
    background: radial-gradient( #13aae6, #0800cc);
    background-size: 400% 400%;
}

.icons.large img.motos{
    background: radial-gradient( #6b17ab, #e474ff);
    background-size: 400% 400%;
}
.icons.large img.bicis{
    background: radial-gradient( #1e836e, #00ffe2);
    background-size: 400% 400%;
}
.icons.large img.buses{
    background: radial-gradient( #84e041, #ffbb03);
    background-size: 400% 400%;
}
.icons.large img.impacto{
    background: radial-gradient( #4098bf, #236931);
    background-size: 200% 200%;
}


@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.icons.large li {
    font-size: 20px;
    line-height: 18px;
	min-width: 200px;
	max-width: 280px;
	margin: 10px;
	text-align: center;
	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 1;
}
.icons.large li i {	
	display: block;
	color: var(--accentColor);
	font-size: 90px;
	margin-bottom: 20px;
}
.icons.large li span {
	display: block;
    margin-top: 28px;
	font-family: var(--especialFont);
	color: white;
	font-size: 26px;
    font-weight: 700; 
	margin-bottom: 10px;
}
.icons.small {
	width: 100%;
	margin: 30px auto 10px auto;
}
.icons.small li {
	margin: 5px 30px;
	padding-left: 35px;
	position: relative;
	font-size: 15px;
}
.icons.small li i {
    color: #35ff5d;
/*	color: #38ffa3;*/
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 0;
}
.parallax {
    border-bottom: 10px solid #35ff5d;
	height: 400px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #cbcaca;
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(25, 124, 44, 0.0)), url(../img/content/parallaxBGb.jpg);
}
.parallax.p2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(25, 124, 44, 0.0)), url(https://www.nacion.com/gnfactory/especiales/2019/LN_soluciones_MovilidadElectrica/img/content/ImpactoAmbiental_1.jpg);
}


@media (max-width:500px) {
	.parallax {
		background-attachment: scroll;
	}
}
blockquote {
	width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
	font-family: var(--especialFont);
    font-size: 24px;
    font-weight: 600;	
    border-left: var(--accentColor) 10px solid;
}
blockquote span {
	margin-top: 15px;
	font-size: 16px;
    color: var(--grayText);
}

.accordion {
    background-color: rgba(95, 95, 95, 0.44);
    color: #35ff5d;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    max-width: 395px;
    margin: auto;
    display: block;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: rgba(60, 60, 60, 0.55);
}

.accordion:after {
    content: '\002B';
    color: #35ff5d;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: rgba(0, 0, 0, 0);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/*MODAL*/
#modalSolucionBTN{
    padding: 8px 50px;
    display: block;
    max-width: 250px;
    margin:20px auto;
    border-radius: 50px;
    color: #000000;
    background-color: #35ff5d;
    font-size: 22px;
    border: none;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #000000;
  margin: auto;
  padding: 0;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,1),0 6px 20px 0 rgba(0,0,0,1);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.6s;
  animation-name: animatetop;
  animation-duration: 0.6s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}


/*^^^^MODAL^^^^*/






.comments {
	width: 100%;
	max-width: 600px;
    min-height: 50px;
	margin: 20px auto;
    background: var(--grayBg);
}
.embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 30px;
}
.embed iframe, .embed object, .embed embed, .embed .powa {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sponsor {
	position: relative;
	z-index: 10;
}
.sponsor span {
	height: 40px;
	display: block;
	line-height: 40px;
	text-align: center;
	font-size: 12px;
	color: black;
	background: var(--grayBg);
}
.sponsor a {
	display: block;
	padding: 5px;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid #e2e2e2;
}
.brandvoice {
	position: relative;
	z-index: 10;
	margin-bottom: 30px;
	background: white;
}
.brandvoice span {
	padding: 10px;
	display: block;
	text-align: center;
	font-size: 12px;
	background: var(--grayBg);
}
.brandvoice a {
	color: black;
	font-weight: bold;
}
.brandvoice a.logo {
	display: block;
	padding: 5px;
	text-align: center;
	background: rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid var(--grayBg);
}
.brandvoice img {
	margin: 20px;
}
.suscribe {
	width: 90%;
	max-width: 350px;
	margin: 20px auto;
	padding: 20px;
	text-align: center;
	background: var(--grayBg);
	border-radius: var(--boxRadius);
}
.suscribe h1 {
	font-size: 20px;
	margin-bottom: 10px;
}
.suscribe a {
	height: 40px;
	display: block;
	line-height: 40px;
	color: white;
	margin-top: 20px;
	font-weight: bold;
	background: var(--accentColor);
	border-radius: var(--boxRadius);
}
.banner {
	margin: 30px 0;
	text-align: center;
}
.banner > p {
	width: 300px;
	height: 25px;
	margin: 1px auto;
	color: #fff;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	line-height: 25px;
	text-transform: uppercase;
	background: #000;
}
@media (min-width:751px) {
	.banner.phone {
		display: none !important;
	}
	.banner.desktop {
		display: block !important;
	}	
}
@media (max-width:750px) {
	.banner.phone {
		display: block!important;
	}
	.banner.desktop {
		display: none !important;
	}	
}
footer {
    position: relative;
	padding: 20px 0px;
	background: #ffffff;
	color: black;
}
footer > p {
    max-width: 800px;
    margin: 0 auto;	
    color: var(--grayText);
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	letter-spacing: 1px;
}

footer .social {
    font-size: 22px;
    text-align: center;
	padding: 3%;
	color: #ffffff;
    margin: 20px auto;
}

@media (max-width:650px) {
	footer .social {
		font-size: 14px;
        line-height: 30px;
	}
}

footer .social li {
   display: inline-block;
   margin: 20px;
}
