/*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: black;
	font-family: 'Inconsolata', monospace;
	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: 'Roboto', sans-serif;
	--grayText: #9b9b9b;
	--grayBg: #edecec;
	--accentColor: #4b47bf;
	--boxRadius: 10px;
}

/*TEMPLATE*/
header {
	width: 100%;
	height: 60px;
	position: fixed;
    background-color: rgba(0, 0, 0, 0.7);
	z-index: 100;
}
header .headerColor {
	background-color: rgb(255, 0, 0);
    width: 100%;
	height: 60px;
	position: fixed;
	z-index: 100;
}
header .content {
	position: relative;
}
header .logo a {
	height: 40px;
	position: absolute;
	top: 15px;
	left: 20px;
}
header .share {
	position: absolute;
	right: 20px;
	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;
}

header .logo a {
	height: 40px;
    width: 100%;
    display: block;
    max-width: 120px;
    text-align: center;
	position: absolute;
	top: 15px;
	left: 50%;
    transform: translate( -50%);
}
header .backbutton a {
	position: absolute;
	top: 15px;
    padding-left: 50px;
	color: #ffec01;
    font-size: 24px;
	font-weight: bold;
	display: block;
	background-image: url(../img/ui/back.svg);
	background-size: 10px;
	background-position: 30px center;
	background-repeat: no-repeat;
}
@media (max-width:650px) {
	header .backbutton a {
		font-size: 16px;
        padding-left: 20px;
        background-position: 5px center;
        top: 22px;
	}
}
.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;
}
article .share {
	margin: 10px 0;
}
article .share li {
	display: inline-block;
	margin: 5px;
}
article .share li a {
	height: 40px;
    width: 40px;
	display: block;
    margin: auto;
}
article .share li img{
	height: 40px;
    width: 40px;
}

.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);
}

section {
    text-align: center;
	color: white;
	padding: 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section h1 {
	font-size: 50px !important;
    margin: 30px auto !important;
    color: #ffec01;
    font-weight: 600 !important;
}
@media (max-width:650px) {
	section h1 {
		font-size: 32px !important;
       line-height: 36px;
	}
}

section p{
	font-size: 16px;
    color: white;
    font-weight: 600;
    margin: 0px !important;
}
section img{
	width: 100%;
    max-width: 800px;
    overflow: hidden;
}
article .content {
	max-width: 800px;
	width: 90%;
	margin: auto;
}
article .social {
	text-align: center;
    padding: 3%;
	margin: auto;
	border-bottom: 1px solid var(--grayBg);
    background-color: #ffec01;
}
article .social h1{
	font-size: 36px;
    font-weight: 600; 
}
article h1 {
	font-weight: 100;
	font-size: 28px;
	margin-bottom: 30px;
	font-family: var(--especialFont);
}
article h2 {
    text-align: center;
	font-weight: 600;
	font-size: 34px;
	margin: 60px 0;
    color: black;
    font-family: 'Roboto', sans-serif;
}
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 p {
	font-size: 17px;
	margin: 20px 0;
    line-height: 28px;
}
article p a {
	color: var(--accentColor);
	font-weight: 600;
	text-decoration: underline;
}
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;
}


.comments {
	width: 100%;
	max-width: 600px;
    min-height: 145px;
	margin:auto;
}
.commentsbox{
    margin:auto;
    width: 100%;
	max-width: 600px;
    background-image: url(../img/content/commentalert.jpg);
    background-position: center;
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat; 
}
.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: #000000;
	color: black;
}
footer > p {
    font-family: var(--especialFont);
    max-width: 800px;
    margin: 20px auto;	
    color: var(--grayText);
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	letter-spacing: 1px;
}
footer a{
    max-width: 280px;
    width: 100%;
    margin: auto;
    padding: 15px;
    line-height: 30px;
	padding-left: 60px;
	color: #ffec01;
    font-size: 24px;
	font-weight: bold;
	display: block;
	border-radius: var(--boxRadius);
	background-image: url(../img/ui/back.svg);
	background-size: 10px;
	background-position: 30px center;
	background-repeat: no-repeat;
}
@media (max-width:650px) {
	footer a {
		font-size: 18px;
        max-width: 260px;
	}
}


/*PHOTOESSAY*/



.essayTexts{
}

.textbox{
    width: 100%;
    display: block;
    margin: 100px 0 100px 0;
    max-width: 900px;
    padding: 400px 2% 400px 5%;
}
.textbox .textbg{
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.76);
}

.textbox h1{
    color: #ffec01;
    font-family: var(--especialFont);
    font-size: 26px;
    margin-bottom: 10px;
    
}

.textbox p{
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    
    margin-bottom: 5px;
}
.textbox span{
    color: white;
}

.essayphoto{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
}


