/*
	Theme Name: History
	Created : 
	Updated : 
	Version: 1.0

*/
/* ========================================================================== */
/* ========================================================================== */
							/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */

/*	
	+ Global
		- Padding/Margin
		
	+ Fonts Settings
		- Lora : font-family: 'Lora', serif;
		- PTSerif : font-family: 'PT Serif', serif;
		- Poppins : font-family: 'Poppins', sans-serif;
		- Roboto : font-family: 'Roboto', sans-serif;

	+ Header

	+ Footer
	
	+ Page Banner
	
	+ Section Header
	
	+ Responsive		
		- min-width: 1200
		- min-width: 992
		- min-width: 768
		- max-width: 1200
		- min-width: 992 to max-width: 1199		
		- max-width: 991
		- min-width: 768 to max-width: 991
		- max-width: 767
		- max-width: 639
		- max-width: 479
*/

/* ## Global */

body {
	font-family: 'Poppins', serif;
	font-size: 13px;
	color: #000;
	overflow-x: hidden;
}
img {
    max-width: 100%;
	height: auto;
}
a {
    outline: 0 !important;
}


/* - Padding/Margin */
.no-padding {
	padding: 0;
}
.no-left-padding{
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.no-margin {
	margin: 0;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}

/* - OW pull-left/pull-right */
.ow-pull-left  {
	float: left;
}
.ow-pull-right  {
	float: right;
}

/* -- Section Padding */
.section-padding {
	/*padding-top: 75px;
	padding-bottom: 75px;*/
}
.padding-10 {
	padding-top: 5px;
	padding-bottom: 5px;
}
.padding-20 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-30 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.padding-40 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-50 {
	padding-top: 25px;
	padding-bottom: 25px;
}
.padding-60 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-70 {
	padding-top: 35px;
	padding-bottom: 35px;
}
.padding-80 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-90 {
	padding-top: 45px;
	padding-bottom: 45px;
}
.padding-100 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.main-container {
	width: 1920px;
	max-width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

/* + Header */
.header-section {
	background-color: #fff;
}
.header-section .container {
	position: relative;
}

/* - Top Header */
.top-header {
	text-align: left;
}
.top-header .top-content {
	float: right;
	background-color: #000;
	width: auto;
	position: relative;
	padding-right: 115px;
}
/*.top-header .top-content::after {
	content: "";
	position: absolute;
	left: -1px;
	top: 0;
	bottom: 0;
	border-bottom: 60px solid #fff; 
	border-right: 40px solid transparent;
	z-index: 1;
}*/
.top-header .top-content::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-color: #2a2a2a;
}
.top-header .top-content > a {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	position: relative;
	float: left;
	padding: 18px 50px 10px 40px;
	text-decoration: none;
	text-align: left;
}
.top-header .top-content > a:hover {
	color: #00acc8;
}
.top-header .top-content > a i {
	padding-right: 15px;
	color: #e2b13c;
}
.top-icons {
	background-color: #2a2a2a;
	float: left;
	position: relative;
}
.top-header .top-icons ul {
	padding-left: 0;
	margin-bottom: 0;
}
.top-header .top-icons ul,
.top-header .top-icons ul li {
	float: left;
	list-style: none;
}
.top-header .top-icons ul li {
	border-right: 1px solid #a5a5a5;
}
.top-header .top-icons ul li a {
	float: left;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #fff;
}
.top-header .top-icons ul li a:hover {
	color: #00acc8;
}
.top-header .top-icons h5 {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #e2b13c;
	margin: 18px 0 11px 40px;
	line-height: 27px;
}
.top-header .top-icons h5 span {
	color: #333;
}
.header-section.navbar-fixed-top {
	border-bottom: 1px solid #a5a5a5;
	z-index: 301;
}
.header-section.navbar-fixed-top .top-header {
	display: none;
}

/* - Search */
.search-box {
	background-color: #f7f6f7;
	padding: 15px;
	position: absolute;
	right: 15px;
	top: 100%;
	width: 620px;
	max-width: 100%;
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all 0.4s ease-in-out 0s;
	z-index: 101;
}
.search-box.active {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	visibility: visible;
}
.search-box form {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	display: block;
}
.search-box form input {
	background-color: transparent;
	box-shadow: none;
	border: none;
	border-radius: 0;
	color: #212121;
	font-size: 16px;
	font-style: italic;
	height: auto;
}
.search-box form input:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
	border-color: #fff;
}
.search-box span {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
}
.search-box span i {
	font-size: 15px;
	color: #212121;
	float: right;
	margin: 5px;
}

.search-box  .searchform .btn{
	display: none;
}

/* + Footer */
.footer-main {
	background-color: #111;
	padding: 65px 0 0;
	border-top: 5px solid #01acc8;
}
.footer-main .logo-block {
	padding: 70px 0;
	text-align: center;
	border-bottom: 1px solid #222222;
	margin-bottom: 40px;
}
.footer-main .ftr-widget {
	margin-bottom: 80px;
	display: inline-block;
}
.footer-main .widget_about a.navbar-brand {
	float: none;
	height: auto;
	padding: 0;
}
.footer-main .widget_about p {
	color: #a5a5a5;
	font-size: 14px;
	font-family: 'PT Serif', serif;
	letter-spacing: 0.28px;
	line-height: 26px;
	padding-right: 35px;
	margin-bottom: 25px;
	margin-top: 25px;
}
.footer-main .widget_about ul {
	padding-left: 0;
	margin-bottom: 0;
}
.footer-main .widget_about ul li {
	display: inline-block;
	margin-right: 6px;
}
.footer-main .widget_about ul li a {
	color: #a5a5a5;
	display: inline-block;
	background-color: #000;
	border-radius: 100%;
	height: 39px;
	width: 39px;
	line-height: 39px;
	text-align: center;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.footer-main .widget_about ul li a:hover {
	background-color: #e2b13c;
	color: #111;
}
.footer-main h3.widget-title {
	color: #fff;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	margin-top: 20px;
	margin-bottom: 30px;
	line-height: 26px;
	letter-spacing: 0.64px;
	padding-bottom: 10px;
}
.footer-main h3.widget-title::before {
	background-color: #01acc8;
    border-right: 4px solid #fff;
    box-shadow: -3px 0 0 0 #111 inset;
    content: "";
    display: inline-block;
    height: 2px;
    bottom: 0;
    position: absolute;
    width: 60px;
}
.footer-main .widget_link ul {
	padding-left: 0;
	list-style: none;
}
.footer-main .widget_link ul li {
	margin-bottom: 22px;
}
.footer-main .widget_link ul li.col-md-6 {
	padding-left: 0;
}
.footer-main .widget_link ul li a {
	color: #909090;	
	font-family: 'PT Serif', serif;
	font-size: 15px;
	letter-spacing: 0.3px;
	text-transform: capitalize;
	text-decoration: none;
}
.footer-main .widget_link ul li a:hover {
	color: #e2b13c;
}
.footer-main .copyright {
	border-top: 1px solid #2d2d2d;
	padding: 23px 0;
	text-align: center;
	background-color: #111;
	color: #8f8f8f;
}
.footer-main .copyright p {
	font-family: 'PT Serif', serif;
	font-size: 14px;
	margin-bottom: 0;
	letter-spacing: 0.28px;
	text-transform: capitalize;
}
/*
.footer-main .widget_subscribe .form-control {
	background-color: #000;
	border: none;
	box-shadow: none;
	border-radius: 0;
	display: inline-block;
	font-family: 'PT Serif', serif;
	font-style: italic;
	font-size: 12px;
	height: 45px;
	padding: 6px 30px;
	letter-spacing: 0.48px;
	margin-bottom: 20px;
	width: 100%;
}
.footer-main .widget_subscribe .form-control::-webkit-input-placeholder {
   color: #777;
}
.footer-main .widget_subscribe .form-control:-moz-placeholder { 
   color: #777; 
}
.footer-main .widget_subscribe .form-control::-moz-placeholder {
   color: #777;
}
.footer-main .widget_subscribe .form-control:-ms-input-placeholder {  
   color: #777; 
}
.footer-main .widget_subscribe .form-control:focus {
	border-color: #000;
}
.footer-main .widget_subscribe button {
	background-color: #e2b13c;
	border: none;
	border-radius: 0;
	color: #111;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.84px;
	padding: 12px 0;
	text-transform: uppercase;
	text-decoration: none;
	width: 100%;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	outline: transparent auto 0px !important;
}
.footer-main .widget_subscribe button:hover {
	background-color: #000;
	color: #e2b13c;
}
*/

/* ## Redesign of widget */
.footer-main .widget {
	margin-bottom: 80px;
}
/* - Text Widget */
.footer-main .widget_text.widget {
	margin-bottom: 0;
}
.footer-main .widget_text .textwidget .navbar-brand {
	float: none;
	padding: 0;
	height: auot;
}
.footer-main .widget_text .textwidget p {
	color: #a5a5a5;
	font-family: "Poppins",serif;
	font-size: 14px;
	letter-spacing: 0.28px;
	line-height: 26px;
	margin-bottom: 25px;
	margin-top: 25px;
	padding-right: 35px;
}

/* - Social Widget */
.footer-main  .widget_social_icons ul {
	margin-bottom: 0;
    padding-left: 0;
}
.footer-main .widget_social_icons ul li {
	display: inline-block;
	margin-right: 6px;
}
.footer-main .widget_social_icons ul li:last-of-type {
	margin-right: 0;
}
.footer-main .widget_social_icons ul li a {
    background-color: #000;
    border-radius: 100%;
    color: #a5a5a5;
    display: inline-block;
    height: 39px;
    line-height: 39px;
    text-align: center;
    transition: all 1s ease 0s;
    width: 39px;
}
.footer-main .widget_social_icons ul li a:hover {
	background-color: #00acc8;
	color: #111;
}

/* - Nav Widget */
.footer-main .widget_nav_menu ul {
	padding-left: 0;
	margin-bottom: 0
}
.footer-main .widget_nav_menu ul li {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}
.footer-main .widget_nav_menu ul li:last-of-type {
	margin-bottom: 0;
}
.footer-main .widget_nav_menu ul li a {
    color: #909090;
    /*font-family: "PT Serif",serif;*/
	font-family: "Poppins",Helvetica,Arial,sans-serif;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-transform: capitalize;
	word-wrap: break-word;
}
.footer-main .widget_nav_menu ul li a:hover {
	color: #01acc8;
}

/* - Newsletter */
.widget_mc4wp_form_widget .mc4wp-form-fields label {
	display: none;
}
.widget_mc4wp_form_widget .mc4wp-form-fields input {
	background-color: #000;
	border-radius: 0;
	-webkit-box-shadow: none;
	-webkit-appearance: none;
	box-shadow: none;
	display: inline-block;
	font-family: "PT Serif",serif;
	font-size: 12px;
	font-style: italic;
	height: 45px;
	letter-spacing: 0.48px;
	line-height: 24px;
	margin-bottom: 20px;
	padding: 6px 30px;
	width: 100%;
	color: #fff;
	outline: transparent auto 0px !important;
	border: 1px solid transparent;
}
.widget_mc4wp_form_widget .mc4wp-form-fields input[type="submit"] {
	background-color: #e2b13c;
	border: none;
	border-radius: 0;
	color: #111;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-style: normal;
	letter-spacing: 0.84px;
	padding: 12px 0;
	text-transform: uppercase;
	text-decoration: none;
	width: 100%;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	outline: transparent auto 0px !important;
	
}
.widget_mc4wp_form_widget .mc4wp-form-fields input::-webkit-input-placeholder {
   color: #fff;
}
.widget_mc4wp_form_widget .mc4wp-form-fields input:-moz-placeholder { 
   color: #fff; 
}
.widget_mc4wp_form_widget .mc4wp-form-fields input::-moz-placeholder {
   color: #fff;
}
.widget_mc4wp_form_widget .mc4wp-form-fields input:-ms-input-placeholder {  
   color: #fff; 
}
.widget_mc4wp_form_widget .mc4wp-form-fields input:focus {
	border-color: #fff;
}
.widget_mc4wp_form_widget .mc4wp-form-fields input[type="submit"]:hover {
	background-color: #000;
	color: #e2b13c;
}



/* + Section Header */
.section-header {
	display: inline-block;
	width: 100%;
	position: relative;
	margin-bottom: 35px;
}
.section-title-border {
	position: relative;
	display: inline-block;
	padding: 14px 40px 13px 0;
	z-index: 1;
}
.section-title-border::before {
	border: 6px solid #f0efef;
	bottom: 0;
	content: "";
	display: inline-block;
	position: absolute;
	left: 40px;
	right: 0;
	top: 0;
	z-index: -1;
}
.section-header span,
.section-header2 span {
    font-family: 'Poppins', serif;
    font-size: 50px;
    color: #01acc8;
    word-wrap: break-word;
    line-height: 36px;
    font-weight: 600;
}
.section-header h2,
.section-header2 h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #222222;
	letter-spacing: 0.64px;
	margin-bottom: 0;
	margin-top: 7px;
	text-transform: uppercase;
}
.section-header2 {
	text-align: center;
	margin-bottom: 55px;
}
.section-header2 i {
	display: block;
	margin-bottom: 15px;
}



/* + Page Banner */
.page-banner {
	background-image: url("http://museoquesomajorero.es/wp-content/uploads/2018/06/error.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	padding: 100px 0 90px;
}
.page-banner h3 {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 0;
	margin-top: 0;
	line-height: 85px;
	text-transform: uppercase;
	word-wrap: break-word;
}

/* Pagination */
.pagination {
	display: inline-block;
	width: 100%;
	background-color: transparent;
	margin: 0;
	text-align: center;
}

.pagination .page-numbers {
	border: 2px solid #000;
	color: #000;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	width: 37px;
	height: 37px;
	line-height: 35px;
	border-radius: 100%;
	padding: 0;
	text-align: center;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	display: inline-block;
	margin: 0 4px;
	text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background-color: #e2b13c;
	border-color: #e2b13c;
	color: #fff;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	border: none;
	background-color: transparent;
	color: #000;
	width: auto;
}
	
/* ========================================================================== */
/* ========================================================================== */
							/* [ + Responsive ] */
/* ========================================================================== */
/* ========================================================================== */

/* -- min-width: 1200 */
@media (min-width: 1200px) {
	/*.container {
		width: 1200px;
	}*/
}

/* -- min-width: 992 */
@media (min-width: 992px) {
	
}

/* -- min-width: 768 */
@media (min-width: 768px) {
	
}

/* -- max-width: 1200px */
@media (max-width: 1200px) {
	
}

/* -- min-width: 992 to max-width: 1199 */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.top-header .top-content {
		padding-right: 15px;
	}
}

/* -- max-width: 991 */
@media (max-width: 991px) {
	/* - Top Header */
	.top-header .top-content {
		padding: 0;
		text-align: center;
		width: 100%;
	}
	.top-header .top-content > a {
		float: none;
		display: inline-block;
		padding-left: 35px;
	}
	.top-header .top-content::after,
	.top-header .top-content::before {
		display: none;
	}
	.top-header .top-icons {
		width: 100%;
	}
	.top-header .top-icons h5 { 
		margin-left: 15px;
		margin-right: 15px;
	}
	
	/* + Footer */
	.footer-main .row > .col-md-4:nth-child(2n+1) {
		clear: both;
	}
	.footer-main .ftr-widget {
		margin-bottom: 40px;
	}
}

/* -- min-width: 768 to max-width: 991 */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.top-header .top-icons {
		text-align: right;
	}
}

/* -- max-width: 767 */
@media (max-width: 767px) {	
	/* + Page Banner */
	.page-banner h3 { 
		font-size: 40px;
	}
	
	/* - Footer Widgets */
	.footer-main .widget {
		margin-bottom: 10px;
	}
	
}

/* --  max-width: 639 */
@media (max-width: 639px) {
	/* - Section Header */
	.section-header h2 {
		font-size: 25px;
		margin-bottom: 5px;
	}
	.top-header .top-icons {
		text-align: center;
	}
	.top-header .top-icons ul {
		width: 100%;
		border-bottom: 1px solid #a5a5a5;
	}
	.top-header .top-icons ul li {
		float: none;
		display: inline-block;
	}	
	.top-header .top-icons ul li:first-child {
		border-left: 1px solid #a5a5a5;
	}
	.top-header .top-icons ul li a {
		display: block;
		float: none;
	}
	.search-box { 
		left: 0;	
	}
	/* + Footer */
	.footer-main .widget_about p {
		padding-right: 0;
	}
	.footer-main .widget_about ul li {
		margin-right: 0;
	}
	
	.section-padding {
/*		padding-top: 25px;
		padding-bottom: 25px;*/
	}
}

/* --  max-width: 479 */
@media (max-width: 479px) {
	/* + Footer */
	.footer-main .row .col-xs-6 {
		width: 100%;
	}
	
}

/*ESTILOS INDEXA*/
.clear{clear:both;}
.bannerhometienda .wpb_single_image.wpb_content_element.vc_align_center{margin-left:-15px!important; margin-right:-15px!important;}
.botondcha{clear: both; margin-top: 12%;}
.bannerhome1 h3 a{font-size: 25px;}
.bannerhome1 h3 a::after{border:none;background-color:transparent;}
span.wpcf7-form-control.wpcf7-acceptance{border: none;}
.bannerjardin img{float: left; margin-right: 5%;}
.page-banner h3{text-shadow: 5px 5px 5px #333;}
.es_lablebox{color: #fff;}
label.es_widget_form_email {color: #333;}

/*SLIDER*/
.rev_slider .tp-mask-wrap .tp-caption, .rev_slider .tp-mask-wrap :last-child, .wpb_text_column .rev_slider .tp-mask-wrap .tp-caption, .wpb_text_column .rev_slider .tp-mask-wrap :last-child{text-align:center!important;}
/*CABECERA*/
.top-header .top-content{background-color: #585858!important; border-bottom-left-radius: 0.5em;}
.header-section{background-image:url('http://museosalinasdelcarmen.es/wp-content/uploads/2018/07/fondo-header.jpg');}
.ow-navigation.navbar-default .navbar-nav > li > a{padding: 20px 0 23px!important;}
#site-loader{ display: none;}
.top-header .top-content > a i{color:#fff;}
.top-header .top-icons h5{color: #333!important;}
.top-icons{background-color:#c9c9c9;}
.top-header .top-content::before{background-color:#c9c9c9;}
.top-header .top-icons ul li a{background-color:#333;}
.entry-footer{display:none;}

/*STICKY MENU*/
.header-section.navbar-fixed-top{margin-top:-1%!important;}
.header-section.navbar-fixed-top a.navbar-brand.image-logo{width:50%; margin-top:11%!important;}
body.admin-bar header.navbar-fixed-top{padding-top:0%!important; margin-top:0px!important;}



.logoslider{position: absolute; margin-left: 43%; margin-top: -7%; z-index: 99;}
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li{margin-bottom:0px!important;}
i.icon.icon-Mouse.bounce{display:none;}
.container{padding-right:0px!important;}
.widget-area.col-md-3.col-sm-4.col-xs-12.sidebar-right.sidebar-1{margin-top: 3%;}
.error-content{width: 1280px; margin: 0px auto;}
.error-content .iconos-bottom{margin-left: 0%; margin-top: -5%; margin-bottom: 5%;}
a.left{background-image: url(http://museoquesomajorero.es/wp-content/themes/quesomajorero/images/boton_3_of.png); background-repeat: no-repeat;}
a.right{background-image: url(http://museoquesomajorero.es/wp-content/themes/quesomajorero/images/boton_3_dreha_of.png); background-repeat: no-repeat;}

/*BANNER1*/
.bannerhome1 a::after{background-color: #01acc8; border-right: 4px solid #222222; -webkit-box-shadow: -3px 0 0 0 #fff inset; -moz-box-shadow: -3px 0 0 0 #fff inset;  box-shadow: -3px 0 0 0 #fff inset; content: ""; width: 60px; height: 2px; display: inline-block; position: absolute; left: 0; top: 100%; transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%); -moz-transform: translate(0%, -50%); -ms-transform: translate(0%, -50%); margin-left: 3%;}
.bannerhome1 a{color:#333; font-weight:bold; font-size: 13px;}
.bannerhome1 h1{margin-top:0px; font-size: 29px!important; font-weight: 600;}
.bannerhome1 p{color: #000!important; font-size: 13px; text-align: justify;}
.banner1texto{width: 80%;}

/*BANNER2*/
.iconos{margin-left: 11%;}
.banner2texto{text-align:center;}
.banner2texto h2{color:#01acc8;}
.banner2texto p{color:#000!important;}
.iconos-bottom {margin-left: 42%;}
.iconos-bottom img {margin-right: 2%;}

/*BANNER3-BLOG*/
.latest-blog{background-color:transparent!important;}
.bannerhome3 .section-title-border::before{border:0px!important;}

/*FOOTER*/
.bannerfoot img{float: left; position: relative; overflow-x: auto; display: inline-block; width: 50%;}
.footer-main .container{width: 1280px;}

/*LA EXPERIENCIA*/
.textoelmuseo1{text-align:justify; line-height:30px;}
.textoelmuseo1 h3{text-align: center; font-weight: bold;}
.textoelmuseo1 h3::after{background-color: #01acc8;}
.textoelmuseo2{border: 5px solid #01acc8; display: table-cell;}
.textoint{width: 55%; float: right; margin-right: 3%;}
.textoelmuseo2 img{position: absolute; margin-top: -2%; width: 30%; margin-left: 5%;}
.textoelmuseo2 h3{font-weight: 700; color: #01acc8;}
.fotoslightbox a::after{background: transparent; border-right: transparent;}

/*VISITA*/
/*BLOQUE 1*/
.bloqvisita p{float: right;}
/*GOOGLE MAPS*/
.google-maps{position: relative; padding-bottom: 75%; height: 0; overflow: hidden;}
.google-maps iframe{position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important;}

/*BLOQUE FLECHA*/
.lado-derecha-arriba:before{content: ""; position: absolute; top: 0; left: 50px; width: 0; height: 0; border-width: 25px; border-style: solid; border-color: transparent transparent transparent #00abc7;}
.cuerpo{background: #00abc7; position: relative; max-width: 50px; min-height: 300px;-webkit-box-shadow: 5px 5px 5px 0px rgba(147,149,151,1);}

.texto-visita{padding-left:10%;}
.texto-visita2{padding-left:5%;}

.texto-visita h3{color:#00acc8; margin-left: 24%;}
.texto-visita2 h3{color:#00acc8; margin-left: 22%;}

.bloqt{float: left; width: 60%;}

.botonizqda{margin-left:10%; width: 100%;}
.botondcha{margin-left:10%; width: 100%;}

.visitabloqizqda img{margin-left:20%;}
.visitabloqdcha img{margin-left:20%;}

.texto-visita table{width: 130%!important;}

.texto-visita h3::before{content: ""; display: block; width: 75px; height: 75px; position: absolute; left: 22%; top: -2%; border-bottom: 2px dashed #ccc;}
.texto-visita h3::after{content: ""; display: block; width: 75px; height: 75px; position: absolute; right: -12%; top: -2%; border-bottom: 2px dashed #ccc;}
.texto-visita2 h3::before{content: ""; display: block; width: 75px; height: 75px; position: absolute; left: 15%; top: -2%; border-bottom: 2px dashed #ccc;}
.texto-visita2 h3::after{content: ""; display: block; width: 75px; height: 75px; position: absolute; right: -3%; top: -2%; border-bottom: 2px dashed #ccc;}

.visitabloqdcha .botondcha a::after{content:normal;}
.visitabloqizqda .botonizqda a::after{content:normal;}

/*EL MUSEO*/
.textoelmuseo3{border:5px solid #00acc8; display:table-cell; padding:5%;}
.textoelmuseo3 .textoint{margin-right:3%; text-align:justify; font-size:14px; line-height:27px; width:100%;}
.textoelmuseo3 .textoint img{width:25%; position:relative; float:left; margin-right:5%;}
.textoelmuseo3 h3{margin-top:6%; color:#00acc8;}
/*EL JARDÍN*/
.drago{text-align:justify; width: 60%; float: left;}
.bannerjardin img{width: 30%;}
.asiento{text-align:justify; width: 60%; float: left;}
.drago h3{text-align: left;}
.asiento h3{text-align: left;}
.linea {margin: 15px auto auto; height: 6px; width: 80px; background-color: #eeeeee; -webkit-transition: 0.2s ease-in-out all; -o-transition: 0.2s ease-in-out all;  transition: 0.2s ease-in-out all;}
/*MAJORERO CAFE*/


/*RESPONSIVE*/
#wprmenu_bar{height: 92px!important;}
#wprmenu_bar div.hamburger{margin-top:30px!important;}
#wprmenu_bar .bar_logo {height: 89px!important; width: 160px!important;}
body.admin-bar #wprmenu_bar{top:30px!important;}
#wprmenu_bar, #wprmenu_bar *{text-align: left!important;}


@media only screen and (min-width: 1580px) and (max-width: 1680px){
.navbar-default .navbar-collapse, .navbar-default .navbar-form{padding-right: 8%;}
	/*VISITA*/
	.bloqt{width: 55%;}
	.texto-visita2 h3::before{width: 60px;}
	.texto-visita2 h3::after{width: 60px;}
	.texto-visita2 h3{margin-left: 15%; font-size: 21px;}
	.texto-visita h3{font-size: 21px;}
	.texto-visita h3::before{width: 60px;}
	.texto-visita h3::after{width: 60px;}	
}
@media only screen and (min-width: 1440px) and (max-width: 1580px){
	.navbar-default .navbar-collapse, .navbar-default .navbar-form{margin-top: 3%; padding-right:2%;}
	.logoslider img{width:80%;}
	.iconos{margin-left:0%;}
	.latest-blog .wc-controls{margin-left:0%;}
	/*VISITA*/
	.bloqt{width: 50%;}
	.botondcha{clear:both;}
	.texto-visita2 h3::before{width: 45px; left: 20%;}
	.texto-visita2 h3::after{width: 45px;}
	.texto-visita2 h3{margin-left: 20%; font-size: 17px;}
	.texto-visita h3{font-size: 17px;}
	.texto-visita h3::before{width: 45px;}
	.texto-visita h3::after{width: 45px;}	

}

@media only screen and (min-width: 1366px) and (max-width: 1440px){
	.navbar-default .navbar-collapse, .navbar-default .navbar-form{margin-top: 4%; padding-right:5%;}	
	.logoslider img{width:80%;}
	.latest-blog .wc-controls{margin-left: 10%;}
	.iconos{margin-left:0%;}
	.ow-navigation.navbar-default .navbar-nav > li{margin-left:15px!important;}	
	.ow-navigation.navbar-default .navbar-nav li a{font-size: 10px!important;}
	/*VISITA*/
	.bloqt{width: 50%;}
	.botondcha{clear:both;}
	.texto-visita2 h3::before{width: 45px; left: 20%;}
	.texto-visita2 h3::after{width: 45px;}
	.texto-visita2 h3{margin-left: 20%; font-size: 17px;}
	.texto-visita h3{font-size: 17px;}
	.texto-visita h3::before{width: 45px;}
	.texto-visita h3::after{width: 45px;}	
	
}

@media only screen and (min-width: 1280px) and (max-width: 1366px){
	.ow-navigation.navbar-default .navbar-nav li a{font-size: 10px!important;}
	.ow-navigation.navbar-default .navbar-nav > li{margin-left:5px!important; margin-right:5px!important;}		
	.navbar-default .navbar-collapse, .navbar-default .navbar-form{margin-top: 5%; padding-right:5%;}	
	.logoslider img{width:70%;}
	.top-icons .h5, h5{font-size: 12px;}
	.top-header .top-content > a{font-size: 18px;}
	.banner1texto{width:100%;}
	.logoslider img{width:80%;}
	.latest-blog .wc-controls{margin-left: -15%;}
	.iconos{margin-left:0%;}
	img.logo{width: 15%;}
	.navbar-default .navbar-collapse, .navbar-default .navbar-form{padding-right: 2%; margin-top:4%;}
	.latest-blog .wc-controls{margin-left: 10%;}	
	.iconos{margin-left:0%;}	
	img.logo{width: 15%;}
	.iconos .ic{width: 25%;}

	
	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 20px; width: 100%; margin-left: 15%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left: 15%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	
}

@media only screen and (min-width: 1024px) and (max-width: 1280px){
	.navbar-default .navbar-collapse, .navbar-default .navbar-form{margin-top: 5%; padding-right:1%;}	
	.top-header .top-content{padding-right: 50px;}
	.logoslider{display:none;}
	img.logo{width: 15%;}
	.iconos .ic{width: 25%;}
	
	/*CABECERA*/
	.ow-navigation.navbar-default .navbar-nav{padding-right: 5px!important; }
	.ow-navigation.navbar-default .navbar-nav li a{font-size: 8px!important;}
	.ow-navigation.navbar-default .navbar-nav > li{margin-left:15px!important;}	


	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botondcha {margin-left: 10%; width: 100%; clear: both;}
	.visitabloqizqda img{margin-left: 5%;}
}

@media only screen and (min-width: 1024px) and (max-width: 1200px){
	.ow-navigation.navbar-default .navbar-nav li a{font-size: 12px!important;}
	.ow-navigation.navbar-default .navbar-nav > li{margin-left:15px;}	.navbar-default .navbar-collapse, .navbar-default .navbar-form{margin-top: 7%; padding-right: 0%;}	
	.top-header .top-content{padding-right: 50px;}
	.ow-navigation.navbar-default .navbar-nav > li{margin-right: 3px;}
	img.logo{width: 15%;}
	.iconos .ic{width: 25%;}
	
}

@media only screen and (min-width: 960px) and (max-width: 1024px) {
	.ow-navigation .navbar-brand > img{width: 75%; margin-top: 10%;}
.header-section{background-position-x: inherit; background-position-y: bottom;}
.ow-navigation .navbar-collapse.collapse.in{width: 60%!important; margin-top: -9%; position: absolute; z-index: 10000; height: auto!important; margin-left: 50%;}
.iconos img{width: 25%;}
img.logo{width:12%;}
.iconos-bottom img{width: 15%;}
.banner2texto{margin-left: 15%;}
.logoslider{display:none;}
.banner1texto{width: 145%;}
.header-section .container{display:none;}
.logoslider{display:none;}
.bannerhome1 p{font-size: 9px;}
.tp-mask-wrap{text-align:center;}
#mg-wprm-wrap.cbp-spmenu-left, #mg-wprm-wrap.cbp-spmenu-right{top: 20%!important;}	
.top-header{padding-top: 5%; background-color: #585858!important; margin: 0px auto;}
#wprmenu_bar .bar_logo{margin-top:-5%;}

.textoelmuseo2 img{position:inherit; margin-top:5%;width:85%; margin-left: 8%;}
.textoint{width: 90%; text-align: center; margin-right: 3%; margin-left: 3%;}

	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botondcha {margin-left: 10%; width: 100%; clear: both;}
	.visitabloqizqda img{margin-left: 5%;}


}
@media only screen and (min-width: 820px) and (max-width: 960px) {
.ow-navigation .navbar-brand > img{width: 75%; margin-top: 10%;}
.header-section{background-position-x: inherit; background-position-y: bottom;}
.ow-navigation .navbar-collapse.collapse.in{width: 60%!important; margin-top: -9%; position: absolute; z-index: 10000; height: auto!important; margin-left: 50%;}
.iconos img{width: 25%;}
.iconos-bottom img{width: 15%;}
.banner2texto{margin-left: 15%;}
.logoslider{display:none;}
.banner1texto{width: 145%;}
.header-section .container{display:none;}
.logoslider{display:none;}
.bannerhome1 p{font-size: 9px;}
.tp-mask-wrap{text-align:center;}
#mg-wprm-wrap.cbp-spmenu-left, #mg-wprm-wrap.cbp-spmenu-right{top: 13%!important;}	
#wprmenu_bar .bar_logo{margin-top:-5%;}
.ow-navigation.navbar-default .navbar-nav > li{margin-right: 5px;}

.textoelmuseo2 img{position:inherit; margin-top:5%;width:85%; margin-left: 8%;}
.textoint{width: 90%; text-align: center; margin-right: 3%; margin-left: 3%;clear:both;}
/*.ow-navigation.navbar{display:none;}*/
	img.logo{width: 15%;}
	.iconos .ic{width: 25%;}
	.iconos{margin-left:0%;}	
	
	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botondcha {margin-left: 10%; width: 100%; clear: both;}
	.visitabloqizqda img{margin-left: 5%;}	

}
@media only screen and (min-width: 610px) and (max-width: 820px) {
	.top-header .top-content{margin-top: 6%;}
	.header-section .container{display:none;}

	.textoelmuseo2 img{position:inherit; margin-top:5%;width:85%; margin-left: 8%;}
	.textoint{width: 90%; text-align: center; margin-right: 3%; margin-left: 3%;clear:both;}
	.logoslider{display:none;}
	img.logo{width: 15%;}
	.iconos .ic{width: 25%;}
	.iconos{margin-left:0%;}	
	.bloqt{width: 57%;}
	.visitabloqdcha img{display:none;}

	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botondcha {margin-left: 10%; width: 100%; clear: both;}
	.botonizqda {margin-left: 10%; width: 100%; clear: both;}		
	.visitabloqizqda img{margin-left: 5%;}	
	.bannerfoot img{width:100%;}	
		
}
@media only screen and (min-width: 400px) and (max-width: 600px) {
	.header-section .container{display:none;}
	.header-section{margin-top:8%;}
	/*.top-header .top-icons ul{display:none;}*/
	.logoslider{display:none;}
	.iconos-bottom{margin-left: 23%;}
	.iconos img{float: left; width: 33%;}
	.banner2texto{padding-top:3%; clear:both;}
	.textoelmuseo2{min-height: 1000px;}
	.bannerhome1 p{font-size: 14px;}
	.tp-mask-wrap{text-align:center;}
	#mg-wprm-wrap.cbp-spmenu-left, #mg-wprm-wrap.cbp-spmenu-right{top: 15%!important;}	
	.banner1texto{width: 100%; padding-left: 5%; padding-right: 5%; font-size:14px;}
	.textoelmuseo1{width: 100%; padding-left: 5%; padding-right: 5%; font-size:14px;}
	.banner1texto p{ font-size:14px;}

	.textoelmuseo2 img{position:inherit; margin-top:5%;width:85%; margin-left: 8%;}
	.textoint{width: 90%; text-align: center; margin-right: 3%; margin-left: 3%; clear:both;}	
	.textoint p{font-size: 14px;}
	.foto1{float: left; width: 30%!important; margin-left:8%;}
	.foto2{float: left; width: 30%!important; margin-left:0%;}
	.foto3{float: left; width: 30%!important; margin-left:0%;}
	.logo{width: 15%!important; margin-top: 3%;}
	.iconos .ic{width: 25%;}
	.iconos{margin-left:7%;}
	.visitabloqizqda img{display:none;}	
	.texto-visita2 h3{font-size: 19px; width: 100%;}
	.texto-visita h3{font-size: 19px; width: 100%;}
	.bloqt{width: 100%;}
	.visitabloqdcha img{display:none;}	
	.texto-visita table{width: 100%!important;}

	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botondcha {margin-left: 10%; width: 100%; clear: both;}
	.botonizqda {margin-left: 10%; width: 100%; clear: both;}		
	.visitabloqizqda img{margin-left: 5%;}	
	.vc_column_container>.vc_column-inner{padding-left: 0px!important;}	

	/*EL JARDIN*/
	.drago{width: 85%; float: left; margin-left: 10%;}
	.asiento{width: 85%; float: left; margin-left: 10%;}
	.bannerjardin img{float: left; margin-left: 25%;}
	
	.entry-content p{margin-left:10%; margin-right:10%;}
	.bannerfoot img{width:100%;}
	
}

@media only screen and (min-width: 200px) and (max-width: 400px) {
	.header-section .container{display:none;}
	.header-section{margin-top:8%;}
	/*.top-header .top-icons ul{display:none;}*/
	.logoslider{display:none;}
	.iconos-bottom{margin-left: 23%;}
	.iconos img{float: left; width: 33%;}
	.banner2texto{padding-top:3%; clear:both;}
	.textoelmuseo2{min-height: 1000px;}
	.bannerhome1 p{font-size: 12px;}
	.tp-mask-wrap{text-align:center;}
	#mg-wprm-wrap.cbp-spmenu-left, #mg-wprm-wrap.cbp-spmenu-right{top: 18%!important;}	
	.banner1texto{width: 100%; padding-left: 5%; padding-right: 5%; font-size:14px; text-align:center;}
	.textoelmuseo1{width: 100%; padding-left: 5%; padding-right: 5%; text-align:center;}
	.banner1texto p{ font-size:14px;}
	
	.textoelmuseo2 img{position:inherit; margin-top:5%;width:85%; margin-left: 8%;}
	.textoint{width: 90%; text-align: center; margin-right: 3%; margin-left: 3%; clear:both;}	
	.foto1{float: left; width: 33%!important;}
	.foto2{float: left; width: 33%!important;}
	.foto3{float: left; width: 33%!important;}
	.logo{width: 15%!important; margin-top: 3%;}
	.iconos .ic{width: 25%;}
	.iconos{margin-left:7%;}
	.visitabloqizqda img{display:none;}	
	.texto-visita2 h3{font-size: 19px; width: 100%;}
	.texto-visita h3{font-size: 19px; width: 100%;}
	.bloqt{width: 100%;}
	.visitabloqdcha img{display:none;}	

	/*VISITA*/
	.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botondcha {margin-left: 10%; width: 100%; clear: both;}
	.botonizqda {margin-left: 10%; width: 100%; clear: both;}		
	.visitabloqizqda img{margin-left: 5%;}	
	.vc_column_container>.vc_column-inner{padding-left: 0px!important;}		
	.texto-visita table{width: 100%!important;}
	
	/*EL JARDIN*/
	.drago{width: 85%; float: left; margin-left: 10%;}
	.asiento{width: 85%; float: left; margin-left: 10%;}
	.bannerjardin img{float: left; margin-left: 25%;}
	
	
	.entry-content p{margin-left:10%; margin-right:10%;}
	
	.bannerfoot img{width:100%;}
	.bannerhome1 a::after{left:38px;}
	
	/*.header-section .container{display:none;}
	.header-section{margin-top:10%;}
	.top-header .top-icons ul{display:none;}
	.logoslider{display:none;}
	.iconos-bottom{margin-left: 23%;}
	.iconos{margin-left:7%;}
	.iconos img{float: left; width: 33%;}
	.banner2texto{padding-top:3%; clear:both;}
	.textoelmuseo2{min-height: 1000px;}
	.bannerhome1 p{font-size: 11px;}
	.tp-mask-wrap{text-align:center;}
	.page_spacing{margin-top:0px;}
	#mg-wprm-wrap.cbp-spmenu-left, #mg-wprm-wrap.cbp-spmenu-right{top: 13%!important;}
	/*.ow-navigation.navbar{display:none;}*/
	/*.visitabloqizqda img{display:none;}	
	.bloqt{width: 100%;}
	.visitabloqdcha img{display:none;}		
	.logo{width: 15%!important; margin-top: 3%;}
	.foto1{float: left; width: 33%!important;}
	.foto2{float: left; width: 33%!important;}
	.foto3{float: left; width: 33%!important;}
	.textoelmuseo2 img{position:inherit; margin-top:5%;width:85%; margin-left: 8%;}
	.textoint{width: 90%; text-align: center; margin-right: 3%; margin-left: 3%; clear:both;}	
	

	/*VISITA*/
	/*.pincho{display:none;}
	.bloqt{width: 100%;}
	.botonizqda a{font-size:12px!important;}
	.botondcha a{font-size:12px!important;}	
	.texto-visita2 h3{font-size: 25px; width: 100%; margin-left:0%;}
	.texto-visita h3{font-size: 20px; width: 100%; margin-left:0%;}
	.texto-visita h3::before{content:none;}
	.texto-visita h3::after{content:none;}	
	.texto-visita2 h3::before{content:none;}
	.texto-visita2 h3::after{content:none;}	
	.texto-visita h3 {font-size: 25px; width: 100%;}
	.botonizqda {margin-left: 5%; width: 100%; clear: both;}	
	.botondcha {margin-left: 5%; width: 100%; clear: both;}
	.visitabloqizqda img{margin-left: 5%;}
	.vc_column_container>.vc_column-inner{padding-left: 0px!important;}	*/
	
}