/*
Theme Name: Lara Laguna
Theme URI: http://underscores.me/
Author: Lara Laguna
Author URI: http://underscores.me/
Description: Tema base de Lara Laguna
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lara-laguna
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Lara Laguna is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
13. Lightbox
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;

	}
	h1 {
		font-size: 38px;
	}
	h2{
		font-size: 28px;
	}
	h3{
		font-size: 20px;
	}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	overflow-x:hidden;
	padding-right: 0 !important;
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

.site-title a{
	text-indent: -1000px!important;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #6C7A89;
	font-family: 'Lato';
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 10px;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 1.5em;
}
ul {
	list-style: circle;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	display:block;
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 0;
	border-radius: 3px;
	background: transparent;
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	outline:0;
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a,
a:visited {
	color: royalblue;
	display:inline-block;
	text-decoration:none;
}
a:hover,
a:focus,
a:active {
	color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	display:block;
	text-decoration: none;
	width:100%;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	min-width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
	display: none;
}
.menu-toggle:before {
	content:'\f0c9';
	display: inline-block;
	font-family:'FontAwesome';
	margin-right:4px;
}
.main-navigation.toggled .menu-toggle:before {
	content:'\f00d';
}
@media screen and (max-width: 768px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
		max-height:0;
	}
	.main-navigation.toggled ul {
		max-height:200px;
	}
	.main-navigation ul li,
	.main-navigation ul ul li {
		display:block;
		margin:0 auto;
		text-align:center;
		width:100%;
	}
	.main-navigation ul ul {
		display:block;
		float:none;
		position:relative; top:0; left:0;
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

.wrapper {
	margin:0 auto;
	position:relative;
	width:90%;
}
@media screen and (min-width:600px) {
	.wrapper {
		width:95%;
	}
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

.widget-area h1 {
	margin-top: 0;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.site {
	display: flex;
	flex-direction: column;
	min-height: 95vh;
}

body.hide-title .entry-title,
body.hide-date .posted-on,
body.hide-author .byline,
body.hide-content .entry-content { display:none; }

body.admin-bar .edit-link { display:none; }

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.site-content {
	flex:1;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

.form-allowed-tags {
	display:none;
}

/*--------------------------------------------------------------
10.4 Sharing
--------------------------------------------------------------*/
.social-sharing {
	list-style: none;
	margin:0;
	padding:0;
}

.social-sharing li {
	display: inline-block;
	vertical-align: top;
}

.social-sharing a {
	display: block;
	height: 28px;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 21px;
}

.social-sharing a:before {
	content: "\f415";
	display: inline-block;
	font-family: 'FontAwesome';
	font-size: 1.5em;
}

.social-sharing a[href$="/feed/"]:before {
	content: "\f09e";
}

.social-sharing a[href*="codepen.io"]:before {
	content: "\f1cb";
}

.social-sharing a[href*="digg.com"]:before {
	content: "\f1a6";
}

.social-sharing a[href*="dribbble.com"]:before {
	content: "\f17d";
}

.social-sharing a[href*="dropbox.com"]:before {
	content: "\f16b";
}

.social-sharing a[href*="facebook.com"]:before {
	content: "\f09a";
}

.social-sharing a[href*="flickr.com"]:before {
	content: "\f16e";
}

.social-sharing a[href*="foursquare.com"]:before {
	content: "\f180";
}

.social-sharing a[href*="plus.google.com"]:before {
	content: "\f0d5";
}

.social-sharing a[href*="github.com"]:before {
	content: "\f09b";
}

.social-sharing a[href*="instagram.com"]:before {
	content: "\f16d";
}

.social-sharing a[href*="linkedin.com"]:before {
	content: "\f0e1";
}

.social-sharing a[href*="pinterest.com"]:before {
	content: "\f0d2";
}

.social-sharing a[href*="getpocket.com"]:before {
	content: "\f224";
}

.social-sharing a[href*="polldaddy.com"]:before {
	content: "\f217";
}

.social-sharing a[href*="reddit.com"]:before {
	content: "\f1a1";
}

.social-sharing a[href*="stumbleupon.com"]:before {
	content: "\f1a4";
}

.social-sharing a[href*="tumblr.com"]:before {
	content: "\f173";
}

.social-sharing a[href*="twitter.com"]:before {
	content: "\f099";
}

.social-sharing a[href*="vimeo.com"]:before {
	content: "\f194";
}

.social-sharing a[href*="wordpress.com"]:before,
.social-sharing a[href*="wordpress.org"]:before {
	content: "\f19a";
}

.social-sharing a[href*="youtube.com"]:before {
	content: "\f16a";
}

.social-sharing a[href*="mailto:"]:before {
	content: "\f1d8";
}

.social-sharing a[href*="spotify.com"]:before {
	content: "\f1bc";
}

.social-sharing a[href*="twitch.tv"]:before {
	content: "\f1e8";
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}



/*--------------------------------------------------------------
13. Lightbox
--------------------------------------------------------------*/

.nivo-lightbox-theme-default .nivo-lightbox-close {
	width: 35px;
	height: 35px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	display: none;
}

.nivo-lightbox-image img {
	display: inline-block;
}

/*------------------------------------------------------------------------------------------------------------------------
															ESTILOS ESPECÍFICOS 
--------------------------------------------------------------*/
.page-template-page-coming-soon {
	background-image: url('images/fondo.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.page-template-page-coming-soon #site-navigation {
	display: none!important;
}

.page-template-page-coming-soon .entry-content {
    margin: 1.5em 0 0;
    text-align: center;
    color: #fff;
    font-size: 29px;
    margin-top: 25%;
}
span.proximamente {
	font-size: 22px;
    margin-top: 38px;
    display: block;
}

.page-template-page-coming-soon h1 {
	font-size: 45px;
	font-weight: 100!important;
}

.home.page-template-page-coming-soon #masthead {
	display: none;
}

/****  GENERALES ****/

body {
	font-size: 14px;
	font-family: 'roboto';
}

article.page .entry-header {
	display: none;
}

.contenedor {
	width: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	min-height: 100vh;
	padding: 8% 25%;
}

.contenedor h2 {
    font-size: 50px;
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.hentry,
.entry-content {
	margin: 0;
}


.page-id-937 .cabecera-pagina { 
display: none;}


.cabecera-pagina {
    background-image: url(images/news.jpg);
    width: 100%;
    height: 400px;
    display: block;
    float: left;
    overflow: hidden;
    text-align: center;
    padding-top: 220px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}



.cabecera-pagina h1{
	    font-size: 50px;
    width: 100%;
    text-align: center;
        font-weight: 100;
    color: #fff;
    text-transform: uppercase;

}


/** header ****/

#masthead {
	width: 100%;
	position: fixed;
	top: 0;
    left: 0;
    height: 73px;
    z-index: 7;
    background-color:rgba(0, 0, 0, 0.53);
    padding: 0 8%;
 
}


h2.site-description {
	display: none;
}

.site-title a {
	font-size: 0px;
	color: transparent;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 200px;
	height: 50px;
	display: block;
	background-image: url(images/logotipoJorgeGranda-01.svg);
	margin-top: 10px;

}


.site-branding {
	width: 20%;
	display: inline-block;
	vertical-align: middle;
	margin: 0;

}

#site-navigation {
		width: 77%;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	float: right;
}

.menu-menu-principal-container {
	float: right;
	margin-top: 25px;
}

/*** menu ******/


.menu-toggle {
    display: block;
    position: absolute;
    right: 8%;
    color: transparent;
    font-size: 0px;
	transition:all 0.35s linear;
		-webkit-transition:all 0.35s linear;
			-ms-transition:all 0.35s linear;
				-moz-transition:all 0.35s linear;
    top: 20px;
}
.menu-toggle:before {
	content: '';
	background-image: url('images/menu.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	    width: 30px;
    height: 30px;
    display: block;

}
.menu-toggle:hover {
	opacity: 0.5;
}

.main-navigation.toggled .menu-toggle:before {
  opacity: 0;
}


.main-navigation ul {
 display: block;
 position: fixed;
 width: 100%;
 height: 100vh;
 background-color: rgba(0, 0, 0, 0.90);
 max-height: 100vh!important;
 top: -110%;
 left: 0;
 padding: 20%;

 -webkit-transition: 0.8s cubic-bezier(0.29, 0.58, 0.52, 0.83);
 -o-transition: 0.8s cubic-bezier(0.29, 0.58, 0.52, 0.83);
 transition: 0.8s cubic-bezier(0.29, 0.58, 0.52, 0.83);
}
.main-navigation.toggled ul {
top:0;

}

.main-navigation ul li {
	display: block;
	float: none;
	width: 100%;
}

.main-navigation ul li a{
	color: #fff;
	font-size: 28px;
	padding: 15px;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-weight: 100;
		transition:all 0.35s linear;
		-webkit-transition:all 0.35s linear;
			-ms-transition:all 0.35s linear;
				-moz-transition:all 0.35s linear;
}

.main-navigation ul li a:hover {
	opacity: 0.6;
}

.cerrar-menu {
    color: #fff;
    position: absolute;
    top: 25px;
    font-size: 26px;
    right: 25px;
}



/****  HOME ****/


#home {
	background-image: url('images/Jorge-home.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
	text-align: center;
	padding-top: 48vh;
}

#home h1{
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 20px;
}

#home h1 span{
	font-weight: 100;

}

#home h2 {
	font-size: 25px;
	color: #fff;
	font-weight: 100;
}

#home a {
	color: transparent;
	font-size: 0px;
	width: 25px;
	height: 25px;
	display: block;
	padding: 10px;
	background-image: url(images/ancla.svg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	transition:all 0.35s linear;
		-webkit-transition:all 0.35s linear;
			-ms-transition:all 0.35s linear;
				-moz-transition:all 0.35s linear;
				position: absolute;
				left: 50%;
				bottom:10%;

/* Animacion */
 	-webkit-animation: animacionAncla 1s infinite alternate;
 	-moz-animation: animacionAncla 1s infinite alternate;
 	-o-animation: animacionAncla 1s infinite alternate;
 }


 @-webkit-keyframes animacionAncla {
 	0% { bottom:10%; }
 	100% { bottom:7%; }
 }

 @-moz-keyframes animacionAncla {
 	0% { bottom:10%; }
 	100% { bottom:7%; }
 }

 @-o-keyframes animacionAncla {
 	0% { bottom:10%; }
 	100% { bottom:7%; }
 }

#home a:hover {
	opacity: 0.5;
	
 }




/**** noticias ******/

#noticias {
	background-color: #f2f2f2;
	padding: 8% 0;
}



#noticias ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#noticias ul li {
	display: inline-block;
	width: 33.33%;
	margin: 0 -0 0 0;
	vertical-align: top;
height: 35vh;
overflow: hidden;
}
#noticias ul li a,
#noticias ul li a img{
	width: 100%;
}


/*** trabajos ****/

#trabajos {
	padding: 0;
	min-height: 0;
}

.bandas-sonoras, .discografia {
		display: inline-block;
	width: 50%;
	margin: 0 -3px 0 0;
	vertical-align: top;
   height: 500px;
   overflow: hidden;
   padding: 400px 5% 0;
   position: relative;
}

.bandas-sonoras a, .discografia a{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.20);
	color: transparent;
	transition:all 0.35s linear;
	-webkit-transition:all 0.35s linear;
	-moz-transition:all 0.35s linear;
	-ms-transition:all 0.35s linear;
}

.bandas-sonoras a:hover, .discografia a:hover{
	background-color: rgba(0, 0, 0, 0.0);
}
.bandas-sonoras h2 {
color: #f2f2f2;
text-align: left;
position: relative;
}
.bandas-sonoras {
	text-align: left;
}
.discografia h2 {
	color: #f2f2f2;
	position: relative;
text-align: right;
}
.discografia {
	text-align: right;
}

.bandas-sonoras {
	background-image: url(images/bandassonoras.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.discografia {
	background-image: url(images/discografia.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/*****  contacto *****/

#contact h2 {
color: #f2f2f2;
}
#contact {
	text-align: center;
	background-image: url(images/contacto.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff!important;
	min-height: 100vh!important;

}

/****  footer *****/

.site-info {
	width: 100%;
	float: left;
	overflow: hidden;
	padding: 10px 8%;
	font-size: 13px;
}

.site-info ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.site-info ul li{
	display: inline-block;
	margin-left: 10px;
}

.site-info a {
	color: #4d4d4d;
}

.derechos, .email, .menu-menu-redes-sociales-container {
	width: 33.33%;
	display: inline-block;
	margin: 0 -3px 0 0;
	vertical-align: middle;
}

.email {
	text-align: center;
 	 	transition:all 0.35s linear;
 	-webkit-transition:all 0.35s linear;
 	-moz-transition:all 0.35s linear;
 		-ms-transition:all 0.35s linear;
}

.menu-menu-redes-sociales-container {
	text-align: right;
}

 .menu-menu-redes-sociales-container a {
 	font-size: 0px;
 	color: transparent;
 	 	transition:all 0.35s linear;
 	-webkit-transition:all 0.35s linear;
 	-moz-transition:all 0.35s linear;
 		-ms-transition:all 0.35s linear;
 }

 .menu-menu-redes-sociales-container a:before{
 	content: '';
 	background-repeat: no-repeat;
 	background-position: center;
 	background-size: 100%;
 	display: block;
 	width: 20px;
 	height: 24px;
 	transition:all 0.35s linear;
 	-webkit-transition:all 0.35s linear;
 	-moz-transition:all 0.35s linear;
 		-ms-transition:all 0.35s linear;
 }
 .email:hover,
 .menu-menu-redes-sociales-container a:hover:before{
 	opacity: 0.5;
 }

 .menu-menu-redes-sociales-container li.twitter a:before {
 	background-image: url(images/twitter.svg);
 }
  .menu-menu-redes-sociales-container li.facebook a:before {
 	background-image: url(images/facebook.svg);
 	width: 10px;
 }
  .menu-menu-redes-sociales-container li.linkedin a:before {
 	background-image: url(images/linkedin.svg);
 width: 20px;
 }
  .menu-menu-redes-sociales-container li.spoty a:before {
 	background-image: url(images/spoty.svg);
 }
  .menu-menu-redes-sociales-container li.imdb a:before {
 	background-image: url(images/imdb.svg);
 width: 38px;
    height: 20px;
 }
  .menu-menu-redes-sociales-container li.soundcloud a:before {
 	background-image: url(images/souncloud.svg);
 }
  .menu-menu-redes-sociales-container li.itunes a:before {
 	background-image: url(images/itunes.svg);
 	margin: -3px;
 }

 /*****  BLOG ******/
.blog.cabecera-pagina {
   background-image: url(news.jpg);
}
.single #primary,
.blog #primary {
	padding: 5% 8%;
	width: 100%;
	float: left;
	overflow: hidden;
}


article.post {
	width: 25%;
	display: inline-block;
	margin: 0 -3px 0 0;
	background-color: #f2f2f2;
	vertical-align: top;
	 border: 5px solid #fff;
}

article.post:first-child {
	width: 100%;
	margin-bottom: 25px;
}

article.post:first-child .entry-header h2 {
	width: 100%;
}
article.post:first-child .entry-header,
article.post:first-child .entry-content {
	display: inline-block;
	margin: 0 -3px 0 0;
	width: 50%;
	vertical-align: top;
	font-size: 15px;
		display: -webkit-flex;
    -webkit-flex-flow: row wrap;
    -webkit-align-content: center;
    display: inline-flex;
    flex-flow: row wrap;
    align-content: center;
    height: 300px;
}

article.post .entry-header {
	line-height: 0;
}
article.post .entry-header a {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
article.post .entry-content {
	padding: 20px;
	font-size: 13.5px;
	min-height: 280px;

}

article.post h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #565656;
    margin-bottom: 15px;
}


.fecha {
	font-weight: 400;
	font-size: 12px;
	width: 100%;

}

.leer-mas, .leer-mas:visited {
    color: #565656;
    width: 100%;
    max-width: 120px;
    padding: 5px;
    text-transform: uppercase;
    border: 1px solid #565656;
    border-radius: 40px;
    text-align: center;
    float: right;
    font-size: 13px;
     	transition:all 0.35s linear;
 	-webkit-transition:all 0.35s linear;
 	-moz-transition:all 0.35s linear;
 		-ms-transition:all 0.35s linear;
}


.leer-mas:hover {
	background-color: #4d4d4d;
	color: #fff;
}


.single article.post:first-child .entry-header, 
.single article.post:first-child .entry-content {
	width: 50%;
	height: auto;

}

.single article.post:first-child .entry-header img {
	width: 100%;
	height: 100%;
}


.single article.post{
	background-color: #fff;
}
.single article.post h1 {
	line-height: 1.2;
	font-size: 30px;
	margin-bottom: 20px;
}


/******  discografia ******/

.disco {
	width: 20%;
	display: inline-block;
	margin: 0 -4px 0 0;
	vertical-align: top;
	position: relative;
}

.disco img {
	width: 100%;
}


.disco button {
	padding: 0;
	color: transparent;
	font-size: 0px;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
		transition:all 0.35s linear;
 	-webkit-transition:all 0.35s linear;
 	-moz-transition:all 0.35s linear;
 		-ms-transition:all 0.35s linear;
}

.disco button:hover {
    background-color: rgba(0, 0, 0, 0.39);
}
.disco > p {
	margin-bottom: 0
}
.disco .contenido {
	position: fixed;
	padding: 60px 30px;
	top: 0;
	right: -110%;
	width: 30%;
	min-width: 400px;
	height: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 0.96);
		transition:all 0.6s linear;
 	-webkit-transition:all 0.6s linear;
 	-moz-transition:all 0.6s linear;
 		-ms-transition:all 0.6s linear;
 	overflow-y: auto; 
}

.disco .contenido h2 {
color: #000;
font-weight: 400;
 }

.disco .contenido.dentro {
	right: 0;

}

.disco button.cerrar-contenido {
    color: #4d4d4d;
    position: absolute;
    top: 20px;
    font-size: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    opacity: 1;
    left: auto;

}


/****** bandas sonoras ******/



.pelicula {
	width: 25%;
	display: inline-block;
	margin: 0 -4px 0 0;
	vertical-align: top;
	position: relative;
}

.pelicula img {
	width: 100%;
}


.pelicula button {
	padding: 0;
	color: transparent;
	font-size: 0px;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
		transition:all 0.35s linear;
 	-webkit-transition:all 0.35s linear;
 	-moz-transition:all 0.35s linear;
 		-ms-transition:all 0.35s linear;
}

.pelicula button:hover {
    background-color: rgba(0, 0, 0, 0.39);
}
.pelicula > p {
	margin-bottom: 0
}
.pelicula .contenido {
	position: fixed;
	padding: 60px 30px;
	top: 0;
	right: -140%;
	width: 30%;
	min-width: 400px;
	height: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 0.96);
		transition:all 0.6s linear;
 	-webkit-transition:all 0.6s linear;
 	-moz-transition:all 0.6s linear;
 		-ms-transition:all 0.6s linear;
 	overflow-y: auto; 
}

.pelicula .contenido h2 {
color: #000;
font-weight: 400;
 }

.pelicula .contenido.dentro {
	right: 0;

}

.pelicula button.cerrar-contenido {
    color: #4d4d4d;
    position: absolute;
    top: 20px;
    font-size: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    opacity: 1;
    left: auto;

}




/*****  RESPONSIVE ********/

@media screen and (max-width: 1600px){
article.post {
	width: 33.33%;



}



@media screen and (max-width: 1250px){

	.single #primary, .blog #primary {
    padding: 5%;
}
article.post {
	width: 50%;



}


@media screen and (max-width: 1100px){

.disco {
    width: 33.33%;
}

}



@media screen and (max-width: 900px){

.single article.post h1 {
    line-height: 1.2;
    font-size: 23px;
}

.pelicula {
	width: 33.33%;
}

}
@media screen and (max-width: 880px){
.derechos, .email, .menu-menu-redes-sociales-container {
    width: 100%;
    text-align: center!important;
    display: block;
    margin: 10px 0;
}
}
@media screen and (max-width: 800px){



article.post:first-child .entry-header, article.post:first-child .entry-content{
	font-size: 14px;
}


.single article.post:first-child .entry-header, 
.single article.post:first-child .entry-content {
	width: 100%;
	height: auto;
	padding: 0;

}

.disco {
    width: 50%;
}

}
@media screen and (max-width: 768px){

body {
	font-size: 14px;
}

.menu-toggle:before {
    width: 25px;
}
#home h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
}

#home h2 {
    font-size: 20px;
}

.site-title a {
    width: 170px;
}

.bandas-sonoras, .discografia {
    display: inline-block;
    width: 50%;
    margin: 0 -3px 0 0;
    vertical-align: top;
    height: 255px;
    overflow: hidden;
    padding: 200px 5% 0;
}

#biografia {
	min-height: 0!important;
}

.bandas-sonoras h2, .discografia h2{
font-size: 20px!important;

}

.contenedor h2 {
    font-size: 30px;
}

.contenedor {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    padding: 5% 10%;
}

.cabecera-pagina {
    height: 200px;
    padding-top: 100px;
}
.cabecera-pagina h1 {
    font-size: 30px;
}


.derechos, .email, .menu-menu-redes-sociales-container {
    width: 100%;
    text-align: center!important;
    display: block;
    margin: 10px 0;
}

}

@media screen and (max-width: 640px){
   .cerrar-menu,
	.main-navigation ul li a {
    font-size: 20px;
}

#home a{
	left: 45%;
}

.main-navigation ul {
	padding: 20% 0;
	    background-color: rgba(0, 0, 0, 0.88);
}
	article.post .entry-content {
		min-height: 0;
	}

article.post, article.post:first-child .entry-header, 
article.post:first-child .entry-content {
	width: 100%;
	display: block;
	min-height: 0;
	height: auto;

}
.disco .contenido {
	width: 100%;
	min-width: 100%;
}

.disco .contenido  h2 {
    font-size: 20px;
}


.pelicula {
	width:50%;
}

.pelicula .contenido {
	min-width: 100%;
	width: 100%;
}

}

@media screen and (max-width: 500px){
	body {
		font-size: 12.5px;
	}

.contenedor h2 {
    font-size: 21px;
}
#home h1 {
    font-size: 26px;
}

#home h2 {
    font-size: 15px;
}

.bandas-sonoras, .discografia {
    display: inline-block;
    width: 50%;
    margin: 0 -3px 0 0;
    vertical-align: top;
    height: 200px;
    overflow: hidden;
    padding: 100px 5% 0;
}
.bandas-sonoras h2, .discografia h2 {
    font-size: 16px!important;
    font-weight: 400;
}

.site-info {
    width: 100%;
    float: left;
    overflow: hidden;
    padding: 10px 8%;
    font-size: 11px;
}
.cerrar-menu {
    top: 10px;
    right: 10px;
}

.leer-mas, .leer-mas:visited {
	font-size: 11px;
}

.disco {
    width: 100%;
}


.pelicula {
	width:100%;
}

.site-title a {
    width: 124px;
    height: 36px;
}

#masthead {

    height: 55px;
   }

.menu-toggle {
	top: 12px;
}

}





