/*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: white;
	font-family: 'Source Sans Pro', sans-serif;
	background: black;
}
.center {
	text-align: center;
}

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

/*VARIABLES*/
:root {
	--especialFont: 'Inconsolata', sans-serif;
	--grayText: #c6c6c6;
	--grayBg: #343434;
	--accentColor: #dd1c48;
	--boxRadius: 10px;
}

/*TEMPLATE*/
header {
	width: 100%;
	height: 60px;
	position: fixed;
	background-color: #fff;
	box-shadow: 0px 0px 10px #888888;
	z-index: 100;
}
header .content {
	position: relative;
}
header .logo a {
	height: 40px;
	position: absolute;
	top: 10px;
	left: 10px;
}
header .share {
	position: absolute;
	right: 10px;
	top: 15px;
}
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: 50px;
	height: 50px;
	display: block;
	position: fixed;
	bottom: 20px;
	right: 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;
}
.back {    
    background: #000;
}
.back a {
    display: block;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    padding-left: 40px;
    color: #fff;
    font-weight: bold;
    border-top: 1px solid var(--grayBg);
    background-image: url(../img/ui/arrow_left.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 20px center;
}
.title {
    padding: 30px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-family: var(--especialFont);        
    background: var(--accentColor);
}
@media screen and (max-width: 380px) {
    .title {
        font-size: 40px;
    }
}
.title h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
}
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: #fff;
	font-weight: bold;
	border: 1px solid var(--grayBg);
	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.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: 60px;
}
section {
	color: white;
	padding: 10%;
	background: var(--accentColor);
}
section h1 {
	font-size: 40px !important;
}
article .content {
	max-width: 800px;
	width: 90%;
	margin: auto;
	padding: 30px 0 10px 0;
}
article .social {
	max-width: 800px;
	width: 90%;
	margin: auto;
	margin-bottom: 50px;
}
article .author {
    font-size: 13px;
	border-bottom: 1px solid var(--grayBg);
    margin-bottom: 20px;
}
article .author li {
	color: var(--grayText);    
    height: 65px;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}
@media screen and (max-width: 400px) {
    article .author li {
        margin: auto 10px;
        display: block;
    }
}
article .author  img {
    float: left;
    margin-right: 10px;
    margin-bottom: 0px;
}
article .author a {
    text-decoration: underline;
    color: #fff;
    letter-spacing: -0.5px;    
}
article h1 {
	font-weight: 100;
	font-size: 28px;
	margin-bottom: 30px;
	font-family: var(--especialFont);
}
article h2 {
	font-weight: 600;
	font-size: 24px;
	margin: 30px 0;
	color: var(--accentColor);
    font-family: var(--especialFont);
}
article h3 {
	border-left: var(--accentColor) 10px solid;
	margin-top: 20px;
	padding-left: 10px;
	font-size: 18px;
	font-weight: 800;
	line-height: 30px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}
article p {
	font-size: 17px;
	margin: 20px 0;
}
article p a {
	color: var(--accentColor);
	font-weight: 600;
	text-decoration: underline;
}
article .especial {
    letter-spacing: -0.3px;
    padding: 20px;
    font-weight: normal;
    border: 1px solid var(--accentColor);
    border-left: 10px solid var(--accentColor);
}
article .especial h2 {
    margin: 0;
}
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: left;
}
.list li {
	width: 30%;
	margin: 1%;	
	display: inline-block;
	vertical-align: top;
	background-size: cover;
	background-position: center;
    border-bottom: 5px solid var(--accentColor);
}
@media (max-width:650px) {
	.list li {
		width: 80%;
	}
}
.list li a {
    height: 400px; 
	padding: 20px;    
	display: block;
	text-align: left;
	color: white;
    display: table-cell; 
    vertical-align: middle;
}
.list li a span {
	font-weight: 100;
	font-size: 28px;
	font-family: var(--especialFont);
    transition: background ease .5s;
}
.list li a:hover span {
    background: var(--accentColor);
}
.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%;	
}
.columns blockquote {
    border-left: black 10px solid;    
}
@media (max-width:650px) {
	.columns {
		display: block;
	}
	.columns > div {
		width: 100% !important;
		min-height: 30vh;
	}
}
.links li {
    display: inline-block;
}
.links li a {
    padding: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: white; 
    font-weight: bold;
    display: block;
    border-radius: var(--boxRadius);
    border:  1px solid var(--accentColor); 
    cursor: pointer;
}
.links li a i {
    margin-right: 10px;
    font-size: 20px;
    float: left;
}
.icons.large {
	width: 90%;
	margin: auto;
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.icons.large li {
	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;
	font-family: var(--especialFont);
	color: var(--grayText);
	font-size: 22px;
	margin-bottom: 10px;
}
.icons.small {
	width: 90%;
	margin: 30px auto 10px auto;
}
.icons.small li {
	margin: 10px;
	padding-left: 35px;
	position: relative;
	font-size: 15px;
}
.icons.small li i {	
	color: var(--accentColor);
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 0;
}
.parallax {
	height: 300px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #cbcaca;
}
@media (max-width:500px) {
	.parallax {
		background-attachment: scroll;
	}
}
.quote {
    padding: 5%;
	min-height: 300px;
    margin: 30px 0;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #cbcaca;
}
@media (max-width:500px) {
	.quote {
		background-attachment: scroll;
        background-position: left;
	}
}
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;
    text-shadow: 1px 1px 1px #000;
}
blockquote span {
	margin-top: 15px;
	font-size: 16px;
    color: var(--grayText);
}
blockquote a {
    color: var(--accentColor);
}
.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;
    background-color: #0f0f0f;
}
footer .main {
    max-width: 800px;
    margin: 0 auto;
}
footer .main p {
    color: #fff;
	font-size: 9px;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	letter-spacing: 1px;
}
footer .main p a {
    text-decoration: underline;
    color: #fff;
}
footer .main p span {
    color: #a5a5a5;
}