/* # Sebastián Lora
Theme Name: Sebastián Lora
Theme URI: http://sergiosa.la/
Description: Diseño personalizado para Sebastian Lora por Sergio Sala.
Author: Sergio Sala
Author URI: http://www.sergiosa.la
Template: genesis
Version: 1.5.5
*/


/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- Primary Navigation
	- Secondary Navigation
	- Skip Links
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Site Footer
- Media Queries
	- Retina Display
	- Max-width: 1200px
	- Max-width: 960px
	- Max-width: 800px
- Print Styles
*/


/* ## Modal
--------------------------------------------- */

.border-radius, .modal {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.box-shadow, .modal {
  -webkit-box-shadow: 0 0 10px #121212;
  -moz-box-shadow: 0 0 10px #121212;
  -o-box-shadow: 0 0 10px #121212;
  -ms-box-shadow: 0 0 10px #121212;
  box-shadow: 0 0 10px #121212;
}

.transition, .modal a.close-modal, .modal #modal-link a:hover {
  transition: 0.3s ease-in-out;
}

.button-radius, .modal #modal-link a {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9998;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(2, 103, 163, 0.8);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 60%;
  box-sizing: border-box;
  background: #fff;
  padding: 50px;
  text-align: left;
}
.modal a.close-modal {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  font-size: 26px;
  font-weight: normal;
  top: 16px;
  right: 18px;
}
.modal a.close-modal:hover {
  opacity: 0.6;
  cursor: pointer;
}
.modal p {
  font-size: 16px;
  line-height: inherit;
  color: inherit;
}
.modal #modal-link a {
  background-color: #555;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transition: ease-in-out 0.5;
  padding: 12px 26px;
  display: inline-block;
}
.modal #modal-link a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .modal {
    max-width: 100%;
    padding: 20px;
  }
}



/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* ## Box Sizing
--------------------------------------------- */

html,
input[type="search"]{
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}


/* ## Float Clearing
--------------------------------------------- */

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}

/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

html {
    font-size: 62.5%; /* 10px browser default */
}

/* Chrome fix */
body > div {
    font-size: 1.8rem;
}

body {
	background-color: #fff;
	color: #333;
	font-family: "ff-enzo-web", sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.625;
	margin: 0;
}

::-moz-selection {
	background-color: rgba(2, 103, 163, 1);
	color: #fff;
}

::selection {
	background-color: rgba(2, 103, 163, 1);
	color: #fff;
}

#quotable-toolbar {
	color: #0267a3 !important;
}

a.quotable-link {
	color: #27953c !important
}

a.quotable-link:hover {
	color: #f36c22 !important
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

a {
	color: #f36c22;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #333;
	text-decoration: none;
}

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

.entry-content li {
	margin-left: 20px;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #ddd;
	clear: both;
	margin: 1em 0;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 40px;
	font-size: 24px;
	font-size: 2.4rem;
	color: #27953c
}

blockquote.testimonials {
	padding: 20px 0;
	font-size: 22px;
	font-size: 2.2rem;
}

blockquote.testimonials img {
	margin-left: -140px !important;
	max-width: 120px;
}

p.cite {
	font-family: "freight-sans-pro", sans-serif;
	text-transform: uppercase;
	font-style: normal;
	font-size: 21px;
	font-size: 2.1rem;
	color: #0267a3;
	padding-top: 20px;
}

/*blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}*/


/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0267A3;
	font-family: "freight-sans-pro", sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 10px;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 30px;
	font-size: 3rem;
}

h3 {
	font-size: 24px;
	font-size: 2.4rem;
}

h4 {
	font-size: 20px;
	font-size: 2rem;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

h6 {
	font-size: 16px;
	font-size: 1.6rem;
}

/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

iframe.youtube-player {
	width: 690px;
}

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto;
}

/* ## Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery img {
	border: 1px solid #ddd;
	height: auto;
	padding: 4px;
}

.gallery img:hover,
.gallery img:focus {
	border: 1px solid #999;
}

/* ## Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid rgba(2, 103, 163, 0.25);
	color: #333;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 300;
	padding: 16px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #333;
	font-weight: 300;
	opacity: 0.5;
	font-style: italic;
}

::-webkit-input-placeholder {
	color: #333;
	font-weight: 300;
	opacity: 0.5;
	font-style: italic;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background-color: #F36C22;
	border: 0;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 16px 24px;
	text-transform: uppercase;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
button:focus,
input:focus[type="button"],
input:focus[type="reset"],
input:focus[type="submit"],
.button:focus  {
	background-color: #0267A3;
	color: #fff;
}

.entry-content .button:hover,
.entry-content .button:focus {
	color: #fff;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Stripe */

form.sc-checkout-form {
	text-align: center !important;
}

/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}

th {
	font-weight: 400;
}

/* ## Screen Reader Text
--------------------------------------------- */

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type="submit"]:focus,
.widget_search input[type="submit"]:focus  {
	clip: auto !important;
	height: auto;
	width: auto;
	display: block;
	font-size: 1em;
	font-weight: bold;
	padding: 15px 23px 14px;
	color: #333;
	background: #fff;
	z-index: 100000; /* Above WP toolbar. */
	text-decoration: none;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
}

.more-link {
    position: relative;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1050px;
}

.site-inner {
	clear: both;
}

/* ## Column Widths and Positions
--------------------------------------------- */

/* ### Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 980px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* ### Content */

.content {
	float: right;
	width: 690px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 580px;
}

.full-width-content .content {
	width: 100%;
}

.full-width-content .content p,
.full-width-content .content ul,
.full-width-content .content ol,
.full-width-content .content h1,
.full-width-content .content h2,
.full-width-content .content h3,
.full-width-content .content h4,
.full-width-content .content h5,
.full-width-content .content blockquote,
.full-width-content .content form {
	max-width: 690px;
	width: 100%;
	margin: 0 auto !important;
	margin-bottom: 28px !important;
}


.full-width-content .wpcf7-response-output {
	max-width: 690px;
	width: 100%;
	margin: 0 auto;
}

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 330px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* ## Column Classes
--------------------------------------------- */
/* Link: https://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar,
.author-box .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

/* ## Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
}

.author-box {
	background-color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 40px;
	padding: 40px;
}

.author-box-title {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form input[type="submit"], 
.widget_search input[type="submit"] {
	font-family: FontAwesome;
	clip: inherit;
	width: 25px;
	height: 25px;
	font-size: 25px;
	background: transparent;
	color: #0267a3;
	position: static;
	margin-left: 10px;
	padding: 0;
}

.search-form input[type="search"] {
	width: 85% 
}

.search-form input[type="submit"]:hover {
	color: #f36c22;
}

/* To clear search input field's text when the search field gets focus */

input[type="search"]:focus::-webkit-input-placeholder { color:transparent; }
input[type="search"]:focus:-moz-placeholder { color:transparent; } /* Firefox 18- */
input[type="search"]:focus::-moz-placeholder { color:transparent; } /* Firefox 19+ */
input[type="search"]:focus:-ms-input-placeholder { color:transparent; } /* oldIE ;) */

/* ## Titles
--------------------------------------------- */

.archive-title {
	padding: 20px 0;
	text-transform: uppercase;
	color: #27953c;
	border-top: 1px solid rgba(39, 149, 60, 0.3);
	margin-bottom: 15px;
	font-size: 22px;
	font-size: 2.2rem
}

.archive-description {
	border-bottom: 1px solid rgba(39, 149, 60, 0.3);
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.entry-title {
	font-size: 36px;
	font-size: 3.6rem;
}

.page .entry-title {
	text-transform: uppercase;
	text-align: center
}

.entry-title a,
.sidebar .widget-title a {
	color: #0267a3;
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
	color: #f36c22;
}

.widget-title {
	text-transform: uppercase;
	text-align: center;
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

.aligncenter {
	text-align: center;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.sticky {
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 28px;
}

/* # Homepage
---------------------------------------------------------------------------------------------------- */

#cookie-notice .button {
	background-color:#0267a3;
	font-size: 14px;
}

#cookie-notice .button:hover {
	background-color: #f36c22;
}

.home .site-header {
	z-index: 100;
	display: block;
	width: 100%;
}

.home .site-inner {
	max-width: none !important;
}

.home .featured-box {
	display: inherit !important;
	background-position: 0%;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 0;
}

.home .fbi-tagline {
	margin: 0;
	padding: 25px;
	opacity: 0.8;
	text-align: center;
}

.home .logos {
	font-family: "freight-sans-pro", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	line-height: 1;
	color: #0267a3;
}

.home .logos ul {
	display: flex;
	min-height: 100px;
	flex-direction: row; 
	align-items: center;
	justify-content: center;
}

.home .logos ul li {
	padding: 0 3%;
}

.home .logos ul li:first-child {
	padding: 0 1%;
	white-space: nowrap;
}

.home .optin {
	background-color: #0267a3;
	color: #fff;
	padding: 50px;
	text-align: center;
	margin-bottom: 50px;
}

.home .optin h3 {
	color: #fff;
	font-size: 3.6rem;
}

.home .optin p {
	font-size: 2.6rem;
}

.home .optin input[type="text"],
.home .optin input[type="email"] {
	width: 35%;
	margin-right: 15px;
}

.home .optin input:hover[type="submit"] {
	background-color: #fff;
	color: #0267A3;
}

.home .optin .small {
	font-style: italic;
	opacity: 0.5;
	margin-bottom: 0 !important;
	font-size: 16px;
	font-size: 1.6rem;
}

.home .optin .mc4wp-response p {
	font-size: 2rem;
	font-style: italic;
	color: #F36C22;
}

.home .intro {
	max-width: 690px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.home h3 {
	font-size: 3.6rem;
	text-align: center;
}

.home .products {
	text-align: center;
}

.home h4 {
	margin-bottom: 0;
	font-family: "ff-enzo-web", sans-serif;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: bold;
	color: #27953C;
	text-align: center;
	text-transform: uppercase;
}

.home .products img {
	max-height: 120px;
	margin: 50px 0;
}

.home .testimonials {
	margin-top: 50px;
}

.home .tmls_images_pagination {
	margin-bottom: 0 !important;
}

@media only screen and (min-width:768px) {

	.home .site-header {
		position: absolute;
	}

	.home .featured-box {
		position: relative;
		height: 80vh;
		background-position: 0 50%;
		background-repeat: no-repeat;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		background-size: cover;
		padding-top: 130px;
		margin-bottom: 0;
	}
	
	.home .fbi-tagline {
		margin-top: 0;
		padding-top: 50px;
		text-align: left;
		opacity: 1;
	}
	
	.home .logos {
		font-family: "freight-sans-pro", sans-serif;
		font-size: 24px;
	}
}

.banner {
	background-size: cover;
	margin: 50px 0;
}

.banner .bg {
	min-height: 250px;
	-webkit-transition: background .6s ease;
	-moz-transition: background .6s ease;
	-o-transition: background .6s ease;
	transition: background .6s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner p {
	margin-bottom: 0;
} 

.bg_orange {
	background-color: rgba(255, 165, 0, 0.75);	
}

.bg_green {
	background-color: rgba(39, 149, 60, 0.75);
}

.bg_blue {
	background-color: rgba(2, 103, 163, 0.75);
}

.bg_orange:hover {
	background-color: rgba(255, 165, 0, 0.9);	
}

.bg_green:hover {
	background-color: rgba(39, 149, 60, 0.9);
}

.bg_blue:hover {
	background-color: rgba(2, 103, 163, 0.9);
}

.banner a {
	font-size: 2.4rem;
	font-style: italic;
	text-align: center;
	text-shadow: 1px 2px 2px #333;
	text-decoration: none;
	color: #fff;
	display: block;
	width: 100%;
	padding: 40px;
}

/* ## Featured Box Tagline & Móvil
--------------------------------------------- */

.bg-homepage {
	height: 400px;
}

.fbi-tagline {
	margin-top: 50px;
	font-family: "freight-sans-pro", sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 2px 4px 5px #0267a3;
}

.fbi-tagline p {
	margin-bottom: 0;
	line-height: 1.2;
}

/* ## Featured Box
--------------------------------------------- */

.home .featured-box {
	margin-bottom: 0
}


.featured-box {
	margin-bottom: 50px;
}

#enews-ext-5 .enews,
#enews-ext-6 .enews {
	background-color: #0267a3;
	padding: 50px;
	text-align: center;
	margin-bottom: 50px;
}

#enews-ext-5 h3.widgettitle,
#enews-ext-6 h3.widgettitle {
	font-size: 36px;
	font-size: 3.6rem;
}

#enews-ext-5 .enews p,
#enews-ext-6 .enews p {
	font-size: 26px;
	font-size: 2.6rem;
	font-style: italic;
}

#enews-ext-5 .enews input[type="text"],
#enews-ext-5 .enews input[type="email"],
#enews-ext-6 .enews input[type="text"],
#enews-ext-6 .enews input[type="email"] {
	width: 35%;
	margin-right: 15px;
}

#enews-ext-5 .enews input[type="submit"],
#enews-ext-6 .enews input[type="submit"] {
	width: auto !important;
}

#enews-ext-5 .enews input:hover[type="submit"],
#enews-ext-6 .enews input:hover[type="submit"] {
	color: #0267A3 !important;
}

#enews-ext-5 .enews form + p,
#enews-ext-6 .enews form + p {
	font-style: italic;
	opacity: 0.5;
	margin-bottom: 0 !important;
	font-size: 16px;
	font-size: 1.6rem;
}

/* ## Mailchimp for Wordpress
--------------------------------------------- */

.full-width-content form.mc4wp-form,
.mc4wp-form {
	max-width: 100%;
}

.mc4wp-form-fields {
	background-color: #0267a3;
	padding: 50px;
	text-align: center;
	margin-bottom: 50px;
}

.mc4wp-form-fields p {
	color: #fff;
	font-size: 2.6rem;
	font-style: italic;
}

.mc4wp-form-fields input[type="text"],
.mc4wp-form-fields input[type="email"] {
	width: 35%;
	margin-right: 15px;
}

.mc4wp-form-fields input + p {
	font-style: italic;
	opacity: 0.5;
	margin-bottom: 0 !important;
	color: #fff;
	font-size: 1.6rem;
	padding-top: 24px;
}


/* ## Featured Text
--------------------------------------------- */

.home-featured {
	text-align: center;
}

.mobile-small {
	display: none;
	text-transform: uppercase
}

.home-featured h3 {
	font-size: 36px;
	font-size: 3.6rem;
}

.home-textwidget .textwidget {
	max-width: 690px;
	width: 100%;
	margin: 0 auto;
}

.home-textwidget .enews {
	background-color: #0267a3;
	padding: 50px;
	text-align: center;
	margin-bottom: 50px;
}

.home-textwidget h3.widgettitle {
	font-size: 36px;
	font-size: 3.6rem;
}

.home-textwidget .enews p {
	font-size: 26px;
	font-size: 2.6rem;
	font-style: italic;
}

.home-textwidget .enews input[type="text"],
.home-textwidget .enews input[type="email"] {
	width: 35%;
	margin-right: 15px;
}

.home-textwidget .enews input[type="submit"] {
	width: auto !important;
}

.home-textwidget .enews input:hover[type="submit"] {
	color: #0267A3 !important;
}

.home-textwidget .enews form + p {
	font-style: italic;
	opacity: 0.5;
	margin-bottom: 0 !important;
	font-size: 16px;
	font-size: 1.6rem;
}

/* ## Featured Icons
--------------------------------------------- */

.home-icons-title p {
	font-size: 26px;
	font-size: 2.6rem;
	font-style: italic;
	margin-bottom: 70px;
}

#home-icons aside h3 {
	margin-bottom: 0;
	font-family: "ff-enzo-web", sans-serif;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: bold;
	color: #27953C;
}

#home-icons aside {
	padding: 0 20px;
}

.home-icons-center {
	border-left: 1px solid rgba(39, 149, 60, 0.2);
	border-right: 1px solid rgba(39, 149, 60, 0.2);
	padding: 0 20px;
}

#home-icons img {
	max-height: 120px;
	margin: 50px 0;
}

#home-icons .last-img {
	max-width: 140px;
	margin: 65px 0 70px 0;
}

/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	word-wrap: break-word;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* ## Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	padding: 0 0 24px;
}

.featured-content .entry-title {
	font-size: 20px;
	font-size: 2rem;
}

/* # Blog Page
---------------------------------------------------------------------------------------------------- */

/*.single .featured-box {
	z-index: 1;
	position: relative;
}

.single div.flare.countloaded.visible {
	z-index: -1 !important;
}

.single .site-inner {
	z-index: -1 !important
}*/

.blog .archive-description {
	display: none
}

.single .entry-footer {
	text-align: center
}

.single .entry-footer .entry-time,
.single .entry-footer .entry-categories,
.single .entry-footer .entry-tags {
	font-style: italic;
	font-size: 18px;
	font-size: 1.8rem;
}

.blog-nav {
	margin-bottom: 50px;
}

.blog .entry-content img,
.single .entry-content img,
.archive .entry-content img {
	margin-bottom: 30px;
	display: block;
	margin-right: auto;
	margin-left: auto !important;
	text-align: center;
	float: none !important;
}

.categories-color ul {
	list-style: none;
	margin: 0 0 25px 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

.categories-color ul li {
    display: inline-block;
	line-height: normal;
	margin: 0;
	padding: 10px 20px;
    border-right: 1px solid rgba(39, 149, 60, 0.25);
}

.categories-color ul li:last-child {
	border-right: 0;
}

.categories-color li a {
	font-family: "freight-sans-pro", sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	text-transform: uppercase;
	text-decoration: none;
	color: #27953c;
}

.categories-color li a:hover {
	color: #0267a3;
}

.blog .entry-content p:last-child {
	margin-bottom: 0;
}

.archive .entry,
.blog .entry {
	border-bottom: 1px solid rgba(2, 103, 163, 0.25);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

/* ## After Entry
--------------------------------------------- */

.after-entry {
	background-color: #27953c;
	padding: 30px;
	font-size: 22px;
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 50px;
}

.after-entry h3 {
	font-family: "ff-enzo-web", sans-serif;
	text-transform: inherit;
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: bold;
}

.after-entry .enews input[type="text"],
.after-entry .enews input[type="email"] {
	width: 35%;
	margin-right: 15px;
}

.after-entry .enews input[type="submit"] {
	width: auto !important;
	background-color: #0267a3;
}

.after-entry .enews form + p {
	font-size: 20px;
	font-size: 2rem;
	font-style: italic;
	opacity: 0.6;
	margin: 0;
}

/* ## Related Posts
--------------------------------------------- */

.related-posts {
	padding: 30px;
	border: 1px solid rgba(2, 103, 163, 0.25);
	margin-bottom: 50px;
}

.related-posts h3 {
	margin-bottom: 25px;
}

.related-posts li a {
	font-style: italic;
	text-decoration: none;
}

.related-posts li a:hover {
	text-decoration: underline
}

/* ## Testimonials
--------------------------------------------- */

.tmls.style1,
.tmls_images_pagination {
	background-color: #27953c;
	padding: 30px;
	color: #fff;
}

.tmls a {
	color: #fff;
	text-decoration: underline !important;
	font-style: italic;
}

.tmls a:hover {
	color: #d8d4d4
}

.home-bottom.widget-area {
	margin-top: 50px;
}

.tmls_images_pagination {
	margin-top: 0 !important;
	margin-bottom: 50px !important;
}

.home .tmls_images_pagination {
	margin-bottom: 0 !important
}

.tmls_text {
	font-size: 22px !important;
	font-size: 2.2rem !important;
	font-style: italic !important;
}

.tmls_name {
	font-size: 20px !important;
	font-size: 2.0rem !important;
	font-weight: bold !important;
}

.tmls_position {
	font-size: 20px !important;
	font-size: 2rem !important;
	font-weight: bold !important;
}

/* # Páginas
---------------------------------------------------------------------------------------------------- */

/* ## Acerca
--------------------------------------------- */

.intro-acerca {
	margin-top: -10px;
	background-color: #0267a3;
	padding: 50px 30px;
}

.intro-acerca h2 {
	color: #fff;
	text-align: center
}

/* ## Formación
--------------------------------------------- */

.bg-formacion {
	height: 400px;
}

.page-id-2983 hr,
.page-id-2972 hr,
.page-id-2924 hr,
.page-id-2987 hr {
	width: 60%;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 100px;
	height: 1px;
	border-top: 1px solid rgba(2, 103, 163, 0.3);
}

.idiomas {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center
}

.idiomas a.button {
	margin-left: 20px;
	margin-right: 20px
}

a.button.idiomas2 {
	background-color: #27953c
}

a.button.idiomas2:hover {
	background-color: #0267a3
}

/* ## Colaboremos
--------------------------------------------- */

.bg-colaboremos {
	height: 400px;
}


/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Genesis eNews Extended
--------------------------------------------- */

.enews-widget,
.enews-widget .widget-title {
	color: #fff !important;
}

.sidebar .widget.enews-widget {
	background-color: #0267a3;
	border: 0;
}

.enews-widget input {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.enews-widget input[type="submit"] {
	background-color: #f36c22;
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews-widget input:hover[type="submit"],
.enews-widget input:focus[type="submit"]  {
	background-color: #fff;
	color: #333;
}

.enews form + p {
	padding-top: 24px;
}

/* ## wBounce
--------------------------------------------- */

.wbounce-modal.underlay {
	background-color: rgba(2, 103, 163, 0.8) !important
}

.wbounce-modal .wbounce-modal-sub {
	background-color: #fff !important
}

.wbounce-modal .modal-title {
	padding: 0 !important;
	border-radius: 0 !important;
	max-height: 150px !important;
}

.wbounce-modal {
	font-family: "ff-enzo-web", sans-serif !important;
	font-size: 22px !important;
	font-size: 2.2rem !important;
}

.wbounce-modal form input[type=email],
.wbounce-modal form input[type=text] {
	width: 36% !important;
	border-radius: 0 !important;
	margin-right: 2% !important;
	padding: 10px !important;
	font-size: 22px !important;
	font-size: 2.2rem !important;
}

.wbounce-modal form input[type=submit]{
	border-radius: 0 !important;
	background-color: #f36c22 !important;
	font-size: 22px !important;
	font-size: 2.2rem !important;
}

.wbounce-modal form input[type=submit]:hover{
	background-color: #27953c !important
}

.wbounce-modal .modal-footer p {
	text-transform: none !important;
	font-style: italic !important
}

/* ## Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}

/* ## Slider
--------------------------------------------- */

#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}

a.control_prev, a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

a.control_prev {
  border-radius: 0 2px 2px 0;
}

a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}


/* # Skip Links
---------------------------------------------------------------------------------------------------- */
.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* # Landing ---------------------------------------------------------------------------------------------------- */

.landing .title-area {
	float: none;
}

.landing .copyright {
	display: none;
}

/*.landing .content {
	padding: 0;
}

.landing .ld-content {
	padding: 3em 0 2.15em 0; 
}

.landing .ld-content + .ld-content {
	margin-top: 0.75em;
}*/

.ld-padding {
	padding: 2rem 0;
}

.landing .site-title,
.landing .title > * {
	text-align: center;
	text-transform: uppercase;
}

.landing h2,
.landing h3 {
	text-align: center;
}

.landing .blue > *,
.landing .green > *,
.landing .orange > *,
.blue h2,
.green h2,
.orange h2 {
	color: #fff;
}

.landing .blue {
	background-color: #2B669E;
}

.landing .orange {
	background-color: #E37339;
}

.landing .green {
	background-color: #4B9247;
}

.landing .white {
	background-color: #fff;
}

.landing .home-textwidget .enews {
	padding: 0;
	margin-bottom: 0;
}

.landing .wp-caption {
	text-align: center;
}

.landing .products {
	text-align: center;
}

.landing .products ul {
	width: 30%;
	margin: 0 auto;
	text-align: left;
}

.landing .products .one-half + .one-half,
.landing .products .one-third + .one-third {
	border-left: 1px solid rgba(39, 149, 60, 0.2);
}

.landing .products .one-half ul {
	width: 60%;
}

.landing .products .one-third ul {
	width: 70%;
}

.landing.full-width-content .content ol {
	margin-bottom: 0px !important;
	padding-bottom: 28px !important;
}

.landing .glossary .clearfix + .clearfix {
	border-top: 1px solid rgba(39, 149, 60, 0.2);
}

.landing .bonus {
	border: 1px solid rgba(39, 149, 60, 0.2);
}

.content-block { 
    border:1px solid #eee; 
    padding:3px;
    background:#ccc;
    max-width:250px;
    float:right; 
    text-align:center;
}
.content-block:after { 
    clear:both;
} 
.blue-button { 
	background-color:#33bdef;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #057fd0;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:6px 24px;
	text-decoration:none;
}

.red-button {
	background-color:#bc3315;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #942911;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:6px 24px;
	text-decoration:none;
}

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* # Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	/*min-height: 160px;*/
}

.site-header .wrap {
	padding: 30px 0;
}

/* ## Title Area
--------------------------------------------- */

.title-area {
	float: left;
	/*padding: 10px 0;
	width: 360px;*/
}



.header-full-width .title-area {
	width: 100%;
}

.site-title {
	font-size: 32px;
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 1.2;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
	color: #333;
}

.site-title a img {
	vertical-align: top;
}

/*.header-image .site-title > a {
	background: url(images/logo.png) no-repeat left;
	float: left;
	min-height: 60px;
	width: 100%;
}*/

.site-description {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.5;
}

.site-description,
.site-title {
	margin-bottom: 0;
}

.header-image .site-description,
.header-image .site-title {
	display: block;
	/*text-indent: -9999px;*/
}

/* ## Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
	text-align: right;
	/*width: 800px;*/
}


/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.footer-widgets .menu,
.genesis-nav-menu {
	clear: both;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1;
	width: 100%;
}

.footer-widgets .menu .menu-item,
.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.footer-widgets .menu a,
.genesis-nav-menu a {
	color: #0267A3;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "freight-sans-pro", sans-serif;
	display: block;
	padding: 27px 18px;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus  {
	color: #f36c22;
}

.widget_nav_menu .genesis-nav-menu li {
	border-left: 1px solid rgba(2,103,100,0.2);
}

.widget_nav_menu .genesis-nav-menu li:first-child {
	border-left: 0;
}

.widget_nav_menu .genesis-nav-menu li:last-child a {
	padding-right: 0;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

/* ## Accessible Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

/* ## Site Header Navigation
--------------------------------------------- */

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -56px;
}

.site-header .genesis-nav-menu li li {
	margin-left: 0;
}

/* ## Footer Widgets Navigation
--------------------------------------------- */

.footer-widgets .menu a {
	color: #fff;
}

.footer-widgets .menu a:hover {
	color: #f36c22;	
}

.footer-widgets .menu li {
	border-right: 1px solid rgba(255,255,255,0.25);
}

.footer-widgets .menu li:last-child {
	border-right: 0;
}

.footer-widgets .simple-social-icons ul {
	padding-top: 15px;
}

/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* ## Entries
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
	/*padding: 50px 60px;*/
}

.content .entry {
	background-color: #fff;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

/* ## Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 0;
	color: #a4a4a4;
}

p.entry-meta a {
	color: #a4a4a4;
	text-decoration: none;
}

p.entry-meta .entry-categories a,
p.entry-meta .entry-tags a {
	text-decoration: underline
}

p.entry-meta a:hover {
	color: #333;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
	text-transform: uppercase;
}

.entry-footer .entry-meta {
	border-top: 2px solid rgba(2, 103, 163, 0.25);
	padding-top: 24px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.blog .entry-categories,
.archive .entry-categories {
	display: initial;
}

.single .entry-header span.entry-categories,
.single .categ {
	display: none;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 40px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #0267a3;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:hover,
.archive-pagination li a:focus,
.archive-pagination .active a {
	background-color: #f36c22;
	text-decoration: none;
}

/* ## Comments
--------------------------------------------- */

.page-template-page_landing #disqus_thread {
	display: none
}

.entry-comments h3 {
	text-align: center;
	text-transform: uppercase;
	font-size: 32px;
	font-size: 3.2rem;
}

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	margin-bottom: 40px;
}

/*.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
}

.entry-comments {
	padding: 40px;
}*/

.comment-header {
	font-size: 16px;
	font-size: 1.6rem;
}

li.comment {
	border: 1px solid rgba(2, 103, 163, 0.25);
}

.comment-content {
	clear: both;
	word-wrap: break-word;
}

.comment-list li {
	margin-top: 24px;
	padding: 32px;
}

.comment-list li li {
	margin-right: -32px;
	border-right: 0
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 24px;
}

p.comment-meta a {
	font-style: italic;
	color: #aaa;
	text-decoration: none
}


/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	font-size: 1.6rem;
}

.sidebar li {
	border-bottom: 1px solid rgba(2, 103, 163, 0.25);
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.sidebar p:last-child,
.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	background-color: #fff;
	margin-bottom: 40px;
	padding: 20px;
	border: 1px solid rgba(2, 103, 163, 0.25);
}

/* Acerca */

#text-14 {
	padding: 0;
}

#text-14 .acerca {
	padding: 20px;
}

#text-14 .acerca p:last-child {
	margin-bottom: 0;
}

#text-14 .acerca a {
	text-decoration: none;
	font-style: italic;
}

/* Simple social icons */

.sidebar .widget.simple-social-icons {
	border: 0;
	padding: 0;
}

.sidebar .simple-social-icons ul li a {
	margin: 0 !important;
	font-size: 30px !important;
	background-color: #fff !important;
	color: #0267a3 !important;
}

.sidebar .simple-social-icons ul li a:hover {
	background-color: #fff !important;
}

/* Populares */

.sidebar .widget_nav_menu {
	padding: 20px !important;
}

.widget_nav_menu .widget-title {
	border-bottom: 1px solid rgba(2, 103, 163, 0.25) !important;
	padding-bottom: 25px !important;
}

.sidebar .widget_nav_menu a {
	color: #333;
	text-decoration: none;
}

.sidebar .widget_nav_menu a:hover {
	color: #f36c22;
}

.sidebar .widget_nav_menu li:last-child {
	border-bottom: 0;
}

/* Search */

.widget_search {
	padding: 0 !important;
	border: 0 !important;
}

/* Banners */

#text-19 {
	padding: 0 !important;
	border: 0;
}

.widget_text a img:hover {
	opacity: 0.9;
}


/* # Subfooter
---------------------------------------------------------------------------------------------------- */

.subfooter {
	margin: 50px 0;
	text-align: center;
	color: #fff
}

.subfooter-1,
.subfooter-2 {
	width: 47.5%; /* 570px / 1200px */
	float: left;
	min-height: 200px;
}

.subfooter-1 {
	margin-right: 5%; /* 60px / 1200px */
}

.bg-newsletter {
	background-image: url('/wp-content/themes/sebastianlora/images/newsletter.jpg');
	background-size: cover;
}

.bg-curso {
	background-image: url('/wp-content/themes/sebastianlora/images/curso.jpg');
	background-size: cover;
}

.bg-newsletter a,
.bg-curso a {
	font-size: 24px;
	font-size: 2.4rem;
	font-style: italic;
	text-shadow: 1px 2px 2px #333;
	text-decoration: none;
	color: #fff;
	display: block;
	width: 100%;
	padding: 40px 5px;
	margin-bottom: 0;
	-webkit-transition: background .6s ease;
	-moz-transition: background .6s ease;
	-o-transition: background .6s ease;
	transition: background .6s ease;
	text-decoration: none;
}

.bg-newsletter a:hover {
	background: rgba(243, 108, 34, 0.8)
}

.bg-curso a:hover {
	background: rgba(39, 149, 60, 0.8)
}

.bg-curso a {
	padding: 69px 5px;
}

.bg-curso span {
	font-family: "freight-sans-pro", sans-serif;
	font-size: 36px;
	font-size: 3.6rem;
	font-style: normal;
}



/* # Footer Widgets
---------------------------------------------------------------------------------------------------- */

/* https://sridharkatakam.com/css-multi-column-footer-widgets-genesis/ */

.footer-widgets {
	padding-top: 50px;
	background-color: #0267a3;
	color: #fff;
}

.footer-widgets-1,
.footer-widgets-2 {
	width: 47.5%; /* 570px / 1200px */
	float: left;
}

.footer-widgets-1 {
	margin-right: 5%; /* 60px / 1200px */
}

.footer-widgets-2 {
	text-align: right
}

/* # Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #0267a3;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1;
	padding: 40px 0;
	text-align: center;
}

.site-footer p:last-child {
	margin-bottom: 0;
}

.site-footer a {
	color: #fff;
}

/* Responsive Menu
--------------------------------------------- */

.responsive-menu-icon {
	cursor: pointer;
	display: none;
	text-align: center;
}

.responsive-menu-icon::before {
	content: "\f333";
	display: inline-block;
	font: normal 26px/1 'dashicons';
	color: #0267a3;
	margin: 0 auto;
	padding: 16px 0px 16px 42px;
}
.nav-primary .responsive-menu-icon::before {
	color: #fff;
}

.menu-text {
	color: #fff;
	line-height: 1;
	vertical-align: top;
	margin-top: 16px;
	display: inline-block;
}

/* To avoid noticeable vertical movement for hover state of Soliloquy's Control Nav (typically circles) and bxSlider's left and right arrows */

.soliloquy-container .soliloquy-control-nav li a,
.soliloquy-theme-classic .soliloquy-pager-link,
.bx-wrapper .bx-controls-direction a {
	-webkit-transition: none;
	-moz-transition:    none;
	-ms-transition:     none;
	-o-transition:      none;
	transition:         none;
}

/* To remove bottom border for Soliloquy controls */

.entry-content .soliloquy-controls-direction a, .entry-content a.soliloquy-pager-link {
	border-bottom: none;
}

/* # Media Queries
---------------------------------------------------------------------------------------------------- */

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

	.site-inner,
	.wrap {
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content,
	.site-header .widget-area {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}

	.sidebar-primary,
	.title-area {
		width: 300px;
	}
	
	.flare {
		margin-left: -20px !important
	}

}


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

	.flare {
		margin-left: -30px !important
		}
	
	.site-inner,
	.wrap {
		max-width: 800px;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}

	.site-header .wrap {
		padding: 20px 5%;
	}

	.header-image .site-title > a {
		background-position: center top;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		padding: 20px 16px;
	}

	.site-header .search-form {
		margin: 16px auto;
	}

	.genesis-nav-menu li.right {
		display: none !important;
	}

}

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

	body {
		background-color: #fff;
		font-size: 16px;
		font-size: 1.6rem;
	}
	
	.content p,
	.content ul,
	.content ol,
	.content h1,
	.content h2,
	.content h3,
	.content h4,
	.content h5,
	.content blockquote {
		padding-left: 5%;
		padding-right: 5%;
	}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget,
	.site-header {
		padding: 0;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
	}

}

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

	.genesis-nav-menu {
		padding-bottom: 20px;
	}

	.genesis-nav-menu.responsive-menu > .menu-item > .sub-menu,
	.genesis-nav-menu.responsive-menu {
		display: none;
	}

	.genesis-nav-menu.responsive-menu .menu-item,
	.responsive-menu-icon {
		display: block;
	}

	.genesis-nav-menu.responsive-menu .menu-item {
		margin: 0;
	}

	.genesis-nav-menu.responsive-menu .menu-item:hover {
		position: static;
	}

	.genesis-nav-menu.responsive-menu .current-menu-item > a,
	.genesis-nav-menu.responsive-menu .sub-menu .current-menu-item > a:hover,
	.genesis-nav-menu.responsive-menu a,
	.genesis-nav-menu.responsive-menu a:hover {
		background: none;
		line-height: 1;
		padding: 16px 20px;
	}
	.nav-primary .genesis-nav-menu.responsive-menu .current-menu-item > a,
	.nav-primary .genesis-nav-menu.responsive-menu .sub-menu .current-menu-item > a:hover,
	.nav-primary .genesis-nav-menu.responsive-menu a,
	.nav-primary .genesis-nav-menu.responsive-menu a:hover {
		color: #fff;
	}

	.genesis-nav-menu.responsive-menu .menu-item-has-children {
		cursor: pointer;
	}

	.genesis-nav-menu.responsive-menu .menu-item-has-children > a {
		margin-right: 60px;
	}

	.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
		content: "\f347";
		float: right;
		font: normal 16px/1 'dashicons';
		height: 16px;
		padding: 16px 20px;
		right: 0;
		text-align: right;
		z-index: 9999;
	}
	.nav-primary .genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
		color: #fff;
	}

	.genesis-nav-menu.responsive-menu .menu-open.menu-item-has-children:before {
		content: "\f343";
	}

	.genesis-nav-menu.responsive-menu .sub-menu {
		border: none;
		left: auto;
		opacity: 1;
		padding-left: 25px;
		position: relative;
		-moz-transition:    opacity .4s ease-in-out;
		-ms-transition:     opacity .4s ease-in-out;
		-o-transition:      opacity .4s ease-in-out;
		-webkit-transition: opacity .4s ease-in-out;
		transition:         opacity .4s ease-in-out;
		width: 100%;
		z-index: 99;
	}

	.genesis-nav-menu.responsive-menu .sub-menu .sub-menu {
		margin: 0;
	}

	.genesis-nav-menu.responsive-menu .sub-menu .current-menu-item > a:hover,
	.genesis-nav-menu.responsive-menu .sub-menu li a,
	.genesis-nav-menu.responsive-menu .sub-menu li a:hover {
		background: none;
		border: none;
		padding: 12px 20px;
		position: relative;
		width: 100%;
	}

	.footer-widgets-1,
	.footer-widgets-2 {
		width: 100%;
	}

	.footer-widgets-1 {
		margin-right: 0;
	}
	
	.featured-box-movil .wrap {
		padding: 0 !important
	}
	
	section#enews-ext-5,
	.featured-box {
		display: none !important;
		margin-bottom: 0
	}
	
	.page-id-2924 .featured-box-movil,
	.page-id-454 .featured-box,
	.page-id-1087 .featured-box,
	.featured-box-movil {
		display: inherit !important;
		margin-bottom: 25px
	}

	.fbi-tagline-movil {
		padding: 20px 0;
		margin-top: -10px
	}
	
	.fbi-tagline-movil p {
		font-size: 30px;
		font-size: 3rem;
		margin-bottom: 5px;
	}
	
	.fbi-tagline-movil p:last-child {
		margin-bottom: 0;
	}
	
	.home-bottom.widget-area,
	.home-featured {
		margin-top: 25px
	}
	
	.home-icons-title p,
	.home-textwidget .enews {
		margin-bottom: 25px
	}
	
	.subfooter,
	#home-icons img,
	#home-icons .last-img {
		margin: 25px 0;
	}
	
	.sidebar,
	.home-textwidget .enews {
		padding: 25px;
	}
	
	.wbounce-modal form input[type=text],
	.wbounce-modal form input[type=email] {
		margin-bottom: 16px !important;
	}
	
	.subfooter-1,
	.subfooter-2,
	.wbounce-modal form input[type=text],
	.wbounce-modal form input[type=email],
	input[type="text"],
	input[type="email"] {
		width: 100% !important
	}
	
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets .simple-social-icons ul,
	.widget_nav_menu .genesis-nav-menu li {
		text-align: center !important
	}
	
	.subfooter-1,
	.subfooter-2 {
		margin: 20px 0;
	}
	
	.widget_nav_menu .genesis-nav-menu li:last-child a {
		padding: 16px 20px;
	}
	
	.widget_nav_menu .genesis-nav-menu li,
	.home-icons-center {
		border: 0;
	}
	
	.home-featured .wrap {
		padding: 0 !important;
	}
	
	#home-icons,
	.home-textwidget .enews,
	#home-text .widget_text,
	.tmls.style1,
	#disqus_thread {
		padding-left: 5% !important;
		padding-right: 5% !important;
	}
	
	.bg-homepage {
		height: 200px;
	}
	
	.bg-newsletter {
		font-size: 16px;
		font-size: 1.6rem;
	}
	
	.footer-widgets .simple-social-icons ul {
		float: none;
	}
	
	.footer-widgets .simple-social-icons ul li {
		display: inline-block !important;
		float: none;
	}
	
	.page .entry-title,
	.home-featured h3 {
		font-size: 30px !important;
		font-size: 3rem !important
	}
	
	.intro-acerca h2 {
		font-size: 26px !important;
		font-size: 2.6rem !important
	}
	
	.home-icons-title p,
	.home-textwidget .enews p {
		font-size: 22px;
		font-size: 2.2rem
	}
	
	
	.tmls.style1,
	.tmls_images_pagination {
		padding: 30px 0;
	}
	
	.intro-acerca {
		padding: 25px 5%;
	}
	
	.wbounce-modal .modal-title {
		max-height: 130px !important;
	}
	
	.categories-color ul {
		margin: 0 !important;
	}
	
	.categories-color ul li {
		width: 50% !important;
		padding: 0 !important
	}
	
	.categories-color ul li:nth-child(2) {
		border: 0
	}
	
	.categories-color ul li a {
		font-size: 16px;
		font-size: 1.6rem
	}
	
	#text-19,
	.sidebar .enews-widget,
	.mobile-hide {
		display: none
	}
	
	.blog .entry,
	.archive .entry {
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
	
	.page-id-2983 hr, 
	.page-id-2972 hr,
	.page-id-2924 hr, 
	.page-id-2987 hr {
		margin-top: 25px;
		margin-bottom: 25px;
	}
	
	.page-id-2983 .entry-content img,
	.page-id-2972 .entry-content img,
	.page-id-2924 .entry-content img, 
	.page-id-2987 .entry-content img {
		max-height: 140px !important;
	}
	
	.mobile-show {
		display: inherit !important;
		margin-bottom: 28px
	}
	
	blockquote.testimonials {
		font-size: 22px;
		font-size: 2.2rem;
	}
	
	blockquote.testimonials img {
		margin-bottom: 30px;
		display: block;
		margin-right: auto;
		margin-left: auto !important;
		text-align: center;
		float: none !important;
		max-width: 35% !important;
	}
	
	p.cite {
		padding-left: 0;
		padding-right: 0;
	}
	
	.archive-description {
		text-align: center
	}
	
	#cookie-notice .button {
		margin-left: 0 !important;
	}
}

@media only screen and (max-width: 480px) {
	
	.fbi-tagline-movil p {
		font-size: 24px;
		font-size: 2.4rem;
		margin-bottom: 15px;
	}
	
	.home-featured h3,
	.home-textwidget h3.widgettitle {
		font-size: 26px !important;
		font-size: 2.6rem !important
	}
	
	ul#menu-pie-de-pagina li:nth-child(2),
	.categories-color ul li:nth-child(2) {
		border-right: 0
	}
	
	.categories-color ul li:first-child {
		padding-left: 0
	}
	
	.sidebar .simple-social-icons ul li a {
		font-size: 22px !important;
		font-size: 2.2rem !important;
	}
	
	.mobile-small {
		display: inherit !important
	}
	
	.home-textwidget h3.widgettitle {
		display: none;
	}
}

