/* Webfonts ------------------------------------------------------------------- */
@import url("fonts.css");
@import url("font-awesome/css/font-awesome.min.css");


/* Cuerpo ------------------------------------------------------------------- */
html,
body {
	height: 100%;
}

html {
	background: #161415 url(../images/bg.jpg) no-repeat center center fixed;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	background-size: cover !important;
}

body {
	font: 15px/30px "montserrat-regular", sans-serif;
	font-weight: normal;
	color: #575859;
}

/* Enlaces  ----------------------------------------------------------------- */
a,
a:visited {
	outline: none;
	color: #fbca08;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover,
a:focus {
	color: white;
}

/* Tipografía  --------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "montserrat-bold", sans-serif;
	color: #575859;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin: 18px 0 15px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
}
h1 {
	font-size: 30px;
	line-height: 36px;
	margin-top: 0;
	letter-spacing: -1px;
}
h2 {
	font-size: 24px;
	line-height: 30px;
}
h3 {
	font-size: 20px;
	line-height: 30px;
}
h4 {
	font-size: 17px;
	line-height: 30px;
}
h5 {
	font-size: 14px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
h6 {
	font-size: 13px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
p {
	margin: 15px 0 15px 0;
}
p img {
	margin: 0;
}
p.lead {
	font: 17px/33px "montserrat-regular", sans-serif;
	color: #707273;
}
em {
	font: 15px/30px "montserrat-regular", sans-serif;
	font-style: normal;
}
strong,
b {
	font: 15px/30px "montserrat-bold", sans-serif;
	font-weight: normal;
}
small {
	font-size: 11px;
	line-height: inherit;
}
blockquote {
	margin: 18px 0px;
	padding-left: 40px;
	position: relative;
}
blockquote:before {
	content: "\201C";
	opacity: 0.45;
	font-size: 80px;
	line-height: 0px;
	margin: 0;
	font-family: arial, sans-serif;
	position: absolute;
	top: 30px;
	left: 0;
}
blockquote p {
	font-family: georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 18px;
	line-height: 30px;
}
blockquote cite {
	display: block;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
}
blockquote cite:before {
	content: "\2014 \0020";
}
blockquote cite a,
blockquote cite a:visited {
	color: #707273;
	border: none;
}
abbr {
	font-family: "montserrat-bold", serif;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .5px;
	color: #7d7e80;
}
pre,
code {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
code {
	padding: 3px;
	background: #ECF0F1;
	color: #707273;
	border-radius: 3px;
}
del {
	text-decoration: line-through;
}
abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
mark {
	background: #FFF49B;
	color: #000;
}


/* Listas -------------------------------------------------------------------- */
ul,
ol {
	margin-top: 15px;
	margin-bottom: 15px;
}
ul {
	list-style: disc;
	margin-left: 17px;
}
dl {
	margin: 0 0 15px 0;
}
dt {
	margin: 0;
	color: #fbca08;
}
dd {
	margin: 0 0 0 20px;
}

/* Imagenes flotantes  --------------------------------------------------------------------- */
img.pull-right {
	margin: 12px 0px 0px 18px;
}
img.pull-left {
	margin: 12px 18px 0px 0px;
}

/* Placeholder ---------------------------------------------------------------- */
::-webkit-input-placeholder {
	color: black;
}
:-moz-placeholder {

	/* Firefox 18- */
	color: black;
}
::-moz-placeholder {

	/* Firefox 19+ */
	color: black;
}
:-ms-input-placeholder {
	color: black;
}
.placeholder {
	color: black !important;
}

/* Preloader ---------------------------------------------------------------- */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	z-index: 9999999;
	height: 100%;
}

.no-js #preloader,
.oldie #preloader,
.ie9 #preloader {
	display: none;
}

#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}

#loader:before {
	content: "";
	border-top: 11px solid rgba(255, 255, 255, 0.2);
	border-right: 11px solid rgba(255, 255, 255, 0.2);
	border-bottom: 11px solid rgba(255, 255, 255, 0.2);
	border-left: 11px solid #7c7c7c;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
	display: block;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* 
/* Estilos  ---------------------------------------------------------------- */
.browserupgrade {
	text-align: center;
	padding: 15px 30px;
	background: white;
}

#content-wrap {
	min-height: 100%;
	padding-top: 20%;
}

@media only screen and (max-width:900px) {
	#content-wrap {
		padding-top: 35%;
	}
}

@media only screen and (max-width:768px) {
	#content-wrap {
		padding-top: 40%;
	}
}

@media only screen and (max-width:600px) {
	#content-wrap {
		min-height: auto;
		padding-top: 250px;
	}
}

@media only screen and (max-width:400px) {
	#content-wrap {
		padding-top: 54px;
	}
}

/* Main ----------------------------------------- */
main.row {
	max-width: 700px;
}
main {
	text-align: center;
}
main::after {
	content: "";
	display: block;
	height: 150px;
}
main .site-header .logo {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 36px 0;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	width: 300px;
	height: 125px;
	background: url("../images/logopete.png") no-repeat;
	background-size: contain;
}

@media only screen and (max-width:900px) {
	main.row {
		width: 85%;
	}
	main h1 {
		font: 35px/1.2em "montserrat-bold", sans-serif;
	}
	main p {
		font: 16px/30px "montserrat-regular", sans-serif;
	}
	main .site-header .logo {
		margin: 0 0 30px 0;
	}
	main .site-header .logo a {
	width: 300px;
	height: 125px;
	}
}

@media only screen and (max-width:768px) {
	main.row {
		width: 92%;
	}
	main h1 {
		font: 32px/1.2em "montserrat-bold", sans-serif;
	}
	main p {
		font: 15px/30px "montserrat-regular", sans-serif;
	}
	main .site-header .logo {
		margin: 0 0 24px 0;
	}
}

@media only screen and (max-width:500px) {
	main.row {
		width: 96%;
	}
	main h1 {
		font: 30px/1.2em "montserrat-bold", sans-serif;
	}
	main p {
		line-height: 27px;
	}
	main::after {
		height: 78px;
	}
}

@media only screen and (max-width:400px) {
	main.row {
		width: 100%;
	}
	main h1 {
		font: 28px/1.2em "montserrat-bold", sans-serif;
	}
	main p {
		font: 14px/27px "montserrat-regular", sans-serif;
	}
	main .site-header .logo a {
		width: 95px;
		height: 66px;
	}
}

/* Pie /* =================================================================== */
footer {
	clear: both;
	font: 12px/24px "montserrat-regular", sans-serif;
	/* background: #000; */
	padding: 18px 30px;
	color: #fff;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999992;
	text-align: center;
}
footer a,
footer a:visited {
	color: #fff;
}
footer a:hover,
footer a:focus {
	color: #fff;
}

/* Copyright  ------------------------------------------ */
.footer-copyright {
	margin: 0;
	padding: 0;
		text-align: center;
}
.footer-copyright li {
	display: inline-block;
	margin: 0;
	padding: 0;
	line-height: 24px;
}
.footer-copyright li::before {
	content: "|";
	padding-left: 6px;
	padding-right: 10px;
	color: #2c2c2c;
}
.footer-copyright li:first-child:before {
	display: none;
}
@media only screen and (max-width:768px) {
	footer {
		padding-top: 24px;
		text-align: center;
	}
	.footer-copyright {
		float: none;
	}
}
@media only screen and (max-width:600px) {
	footer {
		position: static;
		padding-bottom: 30px;
		text-align: center;
	}
	.footer-copyright li {
		display: block;
		margin: 0;
		padding: 0;
		line-height: 24px;
	}
	.footer-copyright li::before {
		content: none;
	}
}