/* Estilos generales y variables */
:root {
  --secondary-bg: #6c757d;
  --light-text: #f8f9fa;
  --dark-text: #212529;
  --success-color: #28a745;
  --light-bg: #e6e6e6;
  font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body { margin: 0 }

[v-cloak] { display: none; }

.modal-body {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}
.modal-open {
}


h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem; /* ~40px */
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 2rem; /* ~32px */
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem; /* ~28px */
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  font-size: 1.5rem; /* ~24px */
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  font-size: 1.25rem; /* ~20px */
  font-weight: 500;
  line-height: 1.2;
}

h6 {
  font-size: 1rem; /* ~16px */
  font-weight: 500;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: content-box; /* Opcional, pero es la configuración por defecto de Bootstrap */
  height: 0; /* Asegura que el hr no tenga altura si no es un borde */
  overflow: visible; /* Asegura que el contenido sea visible */
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.navbar {
  background-color: var(--secondary-bg);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed; /* Fija la barra de navegación en la parte superior */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10; /* Asegura que esté por encima de otros elementos */
}

.fixed-top {
    /* fixed-top: Posicionamiento fijo en la parte superior */
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; /* Valor alto para asegurar que esté sobre el contenido */
}

.bg-light {
    /* bg-light: Color de fondo claro */
    background-color: #f8f9fa !important; /* Gris muy claro */
}

.navbar-light {
    /* navbar-light: Estilo para texto oscuro sobre fondo claro */
    color: rgba(0, 0, 0, 0.55); /* Color de texto base (oscuro) */
}

.shadow {
    /* shadow: Una sutil sombra de caja */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Sombra suave */
}

.nav-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-brand img {
  width: 300px;
  display: block;
}

.navbar-toggler {
  display: none; /* Oculto por defecto en escritorio */
  background: none;
  border: 1px solid var(--light-text);
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.navbar-toggler-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28248, 249, 250, 0.75%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  flex-grow: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.nav-item a {
  	cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.nav-item a:hover {
    text-decoration: none;
    color: #0056b3;
}

.nav-item a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.nav-item a:hover {
    color: inherit; /* Mantiene el mismo color en hover */
    text-decoration: none;
}

.nav-link {
  padding: 0.5rem 0.5rem; /* Ajusta el padding para que se vea bien en todos los casos */
}

/* Estilo específico para los enlaces de texto */
.nav-link a {
  color: var(--light-text);
  text-decoration: none;
}

.nav-link a:hover {
  color: var(--dark-text);
}

/* Responsive design para pantallas pequeñas */
@media (max-width: 992px) {
  .nav-wrapper {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    display: block; /* Muestra el botón de hamburguesa */
  }

  .navbar-collapse {
    width: 100%;
    max-height: 0; /* Oculta el menú por defecto */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }

  .navbar-collapse.show {
    max-height: 500px; /* Expande el menú al mostrar */
  }

  .nav-list {
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: stretch;
    margin-top: 1rem;
  }

  .nav-link {
    margin: 0.05rem 0;
  }

  .nav-link a {
    display: block; /* Hace que los enlaces llenen el ancho */
  }
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,1);
	padding: 7px 5px;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(5,5,5,1);
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.row-home {
  margin: 2rem 0;
}

.container {
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-right: auto;
  margin-left: auto;
}

/* Pequeño (sm) - Ancho >= 576px */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Mediano (md) - Ancho >= 768px */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Grande (lg) - Ancho >= 992px */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra grande (xl) - Ancho >= 1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Extra extra grande (xxl) - Ancho >= 1400px */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-lg {
  padding: 0.5rem 1rem; /* Aumenta el padding para hacerlo más grande */
  font-size: 1.25rem; /* Aumenta el tamaño de la fuente */
  line-height: 1.5; /* Mantiene la altura de línea consistente */
  border-radius: 0.3rem; /* Aumenta el radio de los bordes para coincidir con el tamaño */
}

.btn-block {
  display: block;
  width: 100%;
}

/* Botón Primary */
.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* Botón Secondary */
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}

/* Botón Success */
.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}

/* Botón Danger */
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}

/* Botón Warning */
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}

/* Botón Info */
.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}

/* Botón Light */
.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #000;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

/* Botón Dark */
.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:hover {
  color: #0a58ca;
}

.btn-link:focus {
  text-decoration: none;
}

/* Botón Outline-Primary */
.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* Botón Outline-Secondary */
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* Botón Outline-Success */
.btn-outline-success {
  color: #198754;
  border-color: #198754;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

/* Botón Outline-Danger */
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* Botón Outline-Warning */
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* Botón Outline-Info */
.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

/* Botón Outline-Light */
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* Botón Outline-Dark */
.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}


.evaluador img { border-radius: 7px; }

.embed-video {
    background: #140e0b;
    padding: 5px;
    border-radius: 11px;
	overflow: hidden;
}

.no-margins {
	margin-right: 0px;
    margin-left: 0px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.fa-4 {
    font-size: 7em;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #075176;
}
p {
  font-size: 14px;
  line-height: 1.75;
}
p.large {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h6 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.img-centered {
  margin: 0 auto;
}
.bg-light-gray {
  background-color: #eeeeee;
}
.bg-darkest-gray {
  background-color: #222222;
}
#scroll-top {
	position:fixed;
	bottom:15px;
	right:15px;
	display:inline-block;
	visibility:hidden;
	cursor:pointer;
	z-index:999;
	border-radius:3px;
	opacity:0;
	color: #fff;
	background: #561700;
    border: 1px solid #561700;
	-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);
	box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
    font-size: 14px;
    padding: 8px 7px;
	text-align:center;
}
#scroll-top:hover {
	background-color: #73412f;
	border-color: #73412f;
}
#scroll-top.fixed {
	visibility:visible;
	opacity:1;
}
.btn-primary {
  color: white;
  background-color: #075176;
  border-color: #075176;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: white;
  background-color: #0d9de5;
  border-color: #0d9de5;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #075176;
  border-color: #075176;
}
.btn-primary .badge {
  color: #fed136;
  background-color: white;
}
.btn-xl { 
  color: #ffffff;
  background-color: #561700;
  border-color: #561700;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  font-size: 18px;
  padding: 20px 40px;
}
.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  color: white;
  background-color: #73412f;
  border-color: #fff;
}
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  background-image: none;
}
.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
  background-color: #fed136;
  border-color: #fed136;
}
.btn-xl .badge {
  color: #fed136;
  background-color: white;
}

/* Estilos para el Overlay (Fondo oscuro) */
.modal-overlay {
  /* Posicionamiento y tamaño para cubrir toda la ventana */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Fondo semi-transparente y que esté por encima de todo */
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  
  /* Centrado del contenido del modal */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilos para el Contenedor del Modal */
.modal-container {
  background: white;
  border-radius: 0.5rem;
  width: 98%;
  max-width: 74rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  
  /* Puedes añadir padding o estilos para el contenido si lo deseas */
  overflow: hidden; /* Asegura que todo quede dentro de los bordes */
}

/* Estilos para las secciones internas */
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 10px 20px;
  border-top: 1px solid #eee;
  text-align: right;
}

/* Botón de cierre */
.modal-close-btn {
  background: none;
  border: none;
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  color: #aaa;
  margin-top: -1rem;
  margin-right: -0.5rem;
}
.modal-close-btn:hover {
  color: #333;
}

/* Estilos de botones generales */
.btn-abrir, .btn-secundario {
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
}
.btn-abrir {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

#mnu00009{
	margin-top: 30px;
}

#mnu00009 li a {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  	color: #8a6d3b;
    background-color: #fcf8e3;
  	border: 1px solid #faebcc;
}

#mnu00009 li a:hover {
  	background-color: #F3EDCE ;
	border: 1px solid #E4D6B7;
}


#header {
  background-image: url('https://packglobal-publico.s3.amazonaws.com/APP104/libreria/2017/novillos.jpg');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  margin-top: 70px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  text-align: center;
  color: white;
  --background-color: #498bad;
  background-blend-mode: multiply ;

}
header .intro-text {
  padding-top: 100px;
  padding-bottom: 50px;
}
header .intro-text .intro-lead-in {
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 25px;
}
header .intro-text .intro-heading {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  header .intro-text {
    padding-top: 300px;
    padding-bottom: 200px;
  }
  header .intro-text .intro-lead-in {
    font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  header .intro-text .intro-heading {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 50px;
    2px 2px 2px rgba(150, 150, 150, 1);
  }
}

section h2.section-heading {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}
section h3.section-subheading {
  font-size: 16px;
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 75px;
}

.service-heading {
  margin: 15px 0;
  text-transform: none;
}
#portfolio .portfolio-item {
  margin: 0 0 15px;
  right: 0;
}
#portfolio .portfolio-item .portfolio-link {
  display: block;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  background: rgba(254, 209, 54, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
  opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  position: absolute;
  width: 100%;
  height: 20px;
  font-size: 20px;
  text-align: center;
  top: 50%;
  margin-top: -12px;
  color: white;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}
#portfolio .portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  background-color: white;
  text-align: center;
  padding: 25px;
}
#portfolio .portfolio-item .portfolio-caption h4 {
  text-transform: none;
  margin: 0;
}
#portfolio .portfolio-item .portfolio-caption p {
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 16px;
  margin: 0;
}
#portfolio * {
  z-index: 2;
}
@media (min-width: 767px) {
  #portfolio .portfolio-item {
    margin: 0 0 30px;
  }
}
.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}
.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #f1f1f1;
  left: 40px;
  margin-left: -1.5px;
}
.timeline > li {
  margin-bottom: 50px;
  position: relative;
  min-height: 50px;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timeline-panel {
  width: 100%;
  float: right;
  padding: 0 20px 0 100px;
  position: relative;
  text-align: left;
}
.timeline > li .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline > li .timeline-image {
  left: 0;
  margin-left: 0;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 100;
  background-color: #fed136;
  color: white;
  border-radius: 100%;
  border: 7px solid #f1f1f1;
  text-align: center;
}
.timeline > li .timeline-image h4 {
  font-size: 10px;
  margin-top: 12px;
  line-height: 14px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  text-align: left;
  padding: 0 20px 0 100px;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
}
.timeline .timeline-heading h4.subheading {
  text-transform: none;
}
.timeline .timeline-body > p,
.timeline .timeline-body > ul {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    margin-bottom: 100px;
    min-height: 100px;
  }
  .timeline > li .timeline-panel {
    width: 41%;
    float: left;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    width: 100px;
    height: 100px;
    left: 50%;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    margin-top: 16px;
    line-height: 18px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    text-align: left;
    padding: 0 30px 20px 20px;
  }
}
@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    margin-top: 30px;
    line-height: 26px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
}
.team-member {
  text-align: center;
  margin-bottom: 50px;
}
.team-member img {
  margin: 0 auto;
  border: 7px solid white;
}
.team-member h4 {
  margin-top: 25px;
  margin-bottom: 0;
  text-transform: none;
}
.team-member p {
  margin-top: 0;
}
aside.clients img {
  margin: 50px auto;
}
section#contact {
  background-color: #222222;
  --background-image: url('../img/map-image.png');
  background-position: center;
  background-repeat: no-repeat;
}
section#contact .section-heading {
  color: white;
}
section#contact .form-group {
  margin-bottom: 25px;
}
section#contact .form-group input,
section#contact .form-group textarea {
  padding: 20px;
}
section#contact .form-group input.form-control {
  height: auto;
}
section#contact .form-group textarea.form-control {
  height: 236px;
}
section#contact .form-control:focus {
  border-color: #fed136;
  box-shadow: none;
}
section#contact ::-webkit-input-placeholder {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee;
}
section#contact :-moz-placeholder {
  /* Firefox 18- */
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee;
}
section#contact ::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee;
}
section#contact :-ms-input-placeholder {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee;
}
section#contact .text-danger {
  color: #e74c3c;
}
footer {
  padding: 25px 0;
  background-color: #222;
  color: #fff;
}
footer span.copyright {
  line-height: 40px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-transform: none;
}
footer ul.quicklinks {
  margin-bottom: 0;
  line-height: 40px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-transform: none;
}
ul.social-buttons {
  margin-bottom: 0;
}
ul.social-buttons li a {
  display: block;
  background-color: #222222;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  font-size: 20px;
  line-height: 40px;
  color: white;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
  background-color: #fed136;
}
.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
  outline: none;
}
.portfolio-modal .modal-dialog {
  margin: 0;
  height: 100%;
  width: auto;
}
.portfolio-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center;
}
.portfolio-modal .modal-content h2 {
  margin-bottom: 15px;
  font-size: 3em;
}
.portfolio-modal .modal-content p {
  margin-bottom: 30px;
}
.portfolio-modal .modal-content p.item-intro {
  margin: 20px 0 30px;
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 16px;
}
.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 30px;
  margin-top: 0;
}
.portfolio-modal .modal-content img {
  margin-bottom: 30px;
}
.portfolio-modal .close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #222222;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #222222;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052;
}
.portfolio-modal .modal-backdrop {
  opacity: 0;
  display: none;
}
::-moz-selection {
  text-shadow: none;
  background: #fed136;
}
::selection {
  text-shadow: none;
  background: #fed136;
}
img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}
body {
  webkit-tap-highlight-color: #fed136;
}

.servicios{
	list-style-type: none;
  	margin: 0px;
  	padding: 0px;
}

.servicios li{
	color: #777;
}

blockquote {
    padding: 6px 16px;
    border: none;
    quotes: "\201C" "\201D";
    display: inline-block;
    position: relative;
  	font-size: 32.5px;
  	color: #777;
}

blockquote:before { 
    content: open-quote;
    font-weight: bold;
    position:absolute;
    top:0;
    left: 0;
} 
blockquote:after { 
    content: close-quote;
    font-weight: bold;
    position:absolute;
    bottom:0; right: 0;
}
.contacto {
    background-color: #222222; 
    padding: 25px 0;
    -webkit-transition: padding 0.3s;
    -moz-transition: padding 0.3s;
    transition: padding 0.3s;
    border: none;
}

div#formContacto {
    display: block;
}


/** 03. Top Nav
 **************************************************************** **/


header#topHead {
	height:40px;
	line-height:40px;
    z-index: 9999;
	position: fixed;
	top: 0; left:0; right:0; /* do not remove - position:fixed added by javascript */
	background-color: #222;
    border-bottom: #eee 1px solid;
    color: #fff;
}
}

	header#topHead a.social {
		text-align:center;
		margin:1px 0 0 1px;
		font-size:20px;
		padding:0;
		background:transparent;
		color:#ccc;
	}

	header#topHead .nav {
		margin-right:10px;
	}
	header#topHead a {

		font-size:13px;
		padding-right:10px;
	}

	header#topHead .btn-group.open .dropdown-toggle {
		-webkit-box-shadow:none;
				box-shadow:none;
	}
	header#topHead  .dropdown-menu {
		background-color:#2E363F;
	}
	header#topHead  .dropdown-menu li a img,
	header#topHead  button.language img,
	header#topHead  button.language {
		font-size:13px;
		display:inline-block;
		margin-right:6px;
	}
	header#topHead  .dropdown-menu li a {
		color:#fff;
		padding:6px 10px;
		font-size:13px;
	}
	header#topHead  .dropdown-menu li:hover a {
		background-color:#1B1F23;
	}
	header#topHead  .dropdown-menu:after {
		content: " ";
		display: block;
		position: absolute;
		width: 0; height: 0;
		right:10px; top: -18px;

		border:#2E363F 10px solid;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid transparent;
	}



header#topNav .nav>li>a:hover, .nav>li>a:focus {
    text-decoration: none;
    color: #000;
  border-bottom: 1px solid #51400c;
}

header#topNav.topHead {
	top:40px;
}

.MenuBarHorizontal{
  	margin: auto;
}
.MenuBarHorizontal li{
  	display: inline-block;
	list-style: none;
    margin-right: 10px;
}
.MenuBarHorizontal li a{
    padding:10px 0px;
    font-size: 12px;
    color:#fff;
}

.affix {
    position: fixed;
}

#subastas {
    background: #3B3B3B;
}
.margintop40 {
    margin-top: 40px;
}
section {
    position: relative;
}

#subastas-background {
    background-image: linear-gradient(
     rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),url(https://packglobal-publico.s3.amazonaws.com/APP104/libreria/2017/fondo-internet.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F0FCFF;
    padding: 100px 0;
    text-shadow: 1px 1px 1px #000;
    background-size: cover;
	background-blend-mode: multiply;
}
#subastas-background h1, #campos-background h1, #feria-background h1, #cabana-background h1 {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 50px;
    line-height: 1;
    letter-spacing: -3px;
}

#subastas-background p, #campos-background p, #feria-background p, #cabana-background p {
    text-align: center;
    margin: 10px;
}
    
#subastas-background h2, #campos-background h2, #feria-background h2, #cabana-background h2 {
    text-align: center;
    margin: 20px auto;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
    font-size: 22px;
    letter-spacing: 0;
	text-transform: none;
    max-width: 990px;
}

.desc-section .btn-lg, .desc-section .btn-lg, #campos .btn-lg {
	background-color: #88462c;
    font-weight: 700;
    border-radius: 7px;
    font-size: 18px;
    padding: 20px 40px;
    border-color: #fff;
}

.desc-section .btn-lg:hover, .desc-section .btn-lg:hover, #campos .btn-lg:hover {
	background-color: #561700;
}

nav .btn-login {
	background-color: #88462c;
    border-radius: 7px;
    color: white !important;
    padding-left: 7px !important;
	padding-right: 7px !important;
    border-color: #fff;
}

.main{
	padding-top: 150px;
}
.bg-light-gray {
    background-color: #d2d2d2;
}
section h2.section-heading {
    font-size: 35px;
    margin: 10px;
}

section h3.section-subheading {
    font-size: 16px;
    text-transform: none;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 35px;
}
.text-muted {
    color: #777777;
}

.table { width: 100%; border-collapse: collapse; }
.table thead tr { border-bottom: 1px solid black; }
.table tbody tr { border-bottom: 1px solid #ccc; }
.table td { padding: 0.25rem 2rem; }


#feria-background {
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),url(https://packglobal-publico.s3.amazonaws.com/APP104/libreria/2017/remate-feria.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F0FCFF;
    padding: 100px 0;
    text-shadow: 1px 1px 1px #000;
    background-size: cover;
}

#cabana-background {
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),url(https://packglobal-publico.s3.amazonaws.com/APP104/libreria/2017/cabana.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F0FCFF;
    padding: 100px 0;
    text-shadow: 1px 1px 1px #000;
    background-size: cover;
}

#campos-background {
    background-image: url(https://packglobal-publico.s3.amazonaws.com/APP104/libreria/2017/campo-cultivo.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F0FCFF;
    padding: 100px 0;
    text-shadow: 1px 1px 1px #000;
    background-size: cover;
}


/** 27. Carousel
 **************************************************************** **/
	.owl-carousel {
		margin-bottom:20px;
	}

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

	

.owl-theme .owl-controls .owl-buttons div
, .owl-theme .owl-nav {
  position: absolute;
}
 
.owl-theme .owl-controls .owl-buttons .owl-prev
, .owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: -10px;
  top: 55px; 
}
 
.owl-theme .owl-controls .owl-buttons .owl-next
, .owl-theme .owl-nav .owl-next {
  position: absolute;
  right: -10px;
  top: 55px;
}

	/* top text caption */
	.owl-carousel .owl-item div {
		position:relative;
	}
	.owl-carousel .owl-caption {
		padding:10px;
		position:absolute !important;
		left:0; top:0; right:0;
		margin-top:0; max-width:100%;
		background:rgba(0,0,0,0.3);
		display:block; color:#fff;
	}

	.owl-carousel .owl-caption p {
		color:#fff;
		font-size:13px;
		line-height:20px;
		padding:0; margin:0;
	}
	.owl-carousel .owl-caption h1,
	.owl-carousel .owl-caption h1 a,
	.owl-carousel .owl-caption h2,
	.owl-carousel .owl-caption h2 a,
	.owl-carousel .owl-caption h3,
	.owl-carousel .owl-caption h3 a {
		color:#fff;
		font-size:21px;
		line-height:21px;
		font-weight:bold;
		margin-bottom:10px;
	}
	.owl-carousel .owl-caption a {
		color:#fff;
		font-weight:bold;
	}


header .intro-text {
  padding-top: 100px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 1280px) and (min-width: 768px){
  header .intro-text {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1281px) {
  header .intro-text {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
.panel-default>.panel-heading {
    color: #fff;
    background-color: #222;
    border-color: #ddd;
}

.recuadro p {
    font-size: 12px;
    line-height: 1.3;
    font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.recuadro {
	padding: 10px;
    margin: 5px;
    background-color: #ddd;
    border-radius: 5px;
}

.col-center{
  float: none;
  margin-left: auto;
  margin-right: auto;
}

  .footer-hacienda{
    background-color: #222;
    color: #fff;
    padding: 10px;
    line-height: 0.8;
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .plazo {
  	text-align: center;
    width: 250px;
    background-color: #222;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.46);
    height: 250px;
    color: #fff;
    border: 5px solid #ddd;
    vertical-align: middle;
    font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .plazo h1 {
	margin-top: 0;
  	font-size: 75px;
  }
  .wrapper-hacienda{
  	max-width: 990px;
  }
  .detalle-hacienda{
  	margin-left: 30px;
  }
  .detalle-hacienda p, .hacienda-destacados p{
  	font-size: 18px;
    font-weight: bold;
    line-height: 0.8;
    font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  .hacienda-destacados h2{
  	text-decoration: underline;
    font-weight: bold;
    font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  .custom-icon {
  font-size:60px;
  padding:30px;
  -webkit-border-radius:1100%;
  -moz-border-radius:100%;
  -o-border-radius:100%;
  border-radius:100%;
  border:6px solid #fff;
  color:#fff;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.46);
  text-align:center;
  display:table-cell;
  vertical-align:middle;
  width:60px;
  height:60px;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  -o-transition:.5s;
  transition:.5s;
}

.fix-editor {
  display:none;
}
.icon-wrapper {
    display: inline-block;
    margin: 35px auto;
}

  .box1 h1, .box2 h1 {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 90px;
    line-height: 1;
    letter-spacing: 5px;
    text-shadow: 1px 1px 1px #000;
    font-weight: bold;
}

.box1 h2, .box2 h2{
	text-align: center;
    margin: 0;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    font-size: 35px;
    letter-spacing: 0;
    text-shadow: 1px 1px 1px #000;
}
  
.box h3 {
	color: #fff;
  text-align:center;
    position:relative;
    top:80px;
}

.box h2, .box p {
	color: #fff;
}
  
  .titulo{
  	background-color: #222;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

.effect1{
    -webkit-box-shadow: 0 10px 6px -6px #777;
       -moz-box-shadow: 0 10px 6px -6px #777;
            box-shadow: 0 10px 6px -6px #777;
}

/*==================================================
 * Effect 2
 * ===============================================*/
.effect2
{
  position: relative;
}
.effect2:before, .effect2:after, .effect4:before, .effect4:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.effect2:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/*==================================================
 * Effect 4
 * ===============================================*/
.effect4
{
  position: relative;
}
.effect4:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  right: 10px;
  left: auto;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
}

/*==================================================
 * Effect 8
 * ===============================================*/
.effect8
{
    position:relative;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.effect8:before, .effect8:after
{
    content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:10px;
    bottom:10px;
    left:0;
    right:0;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}
.effect8:after
{
    right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}

.box {
    width:100%;
    min-height:200px;
    background:#88462c;
    margin:20px auto;
    padding: 10px 25px;
}

.box1{
	width: 45%;
    height: 200px;
    background: #FFF;
    margin: 20px auto;
    background-color: #88462c;
    text-align: center;
}
.box2{
	width: 53%;
    height: 200px;
    background: #FFF;
    margin: 20px auto;
    background-color: #88462c;
    text-align: center;
}

.index .main-container{
	margin-top: 130px !important;;
        min-height: 60vh;
}


.single-wc-content {
    padding-top: 10px;
    float: left;
    display: inline;
    min-width: 250px;
}
.single-wc-content span {
    border-radius: 100%;
    display: inline-block;
    font-size: 35px;
    height: 117px;
    line-height: 117px;
    text-align: center;
    width: 117px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.single-wc-content p {
        font-size: 15px;
    padding: 5px;
}
.wc-table {
    display: inline-block;
    text-align: center;
}
.wc-table li {
    float: left;
    width: 25%;
}

.single-wc-content span {
    border: 1px solid #fff;
    color: #fff;
}

.single-wc-content .wc-icon{
	color: #88462c;
    background-color: rgba(255, 255, 255, 0.7);
}

.single-wc-content:hover .wc-icon {
    color: #ffffff;
    background-color: rgba( 136, 70, 44, 0.7 );
}

.single-wc-content .wc-tittle {
    padding-bottom: 16px;
	padding-top: 20px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}
@media (max-width: 991px){
.single-wc-content .wc-tittle {
    font-size: 15px;
}
}

@media (max-width: 768px) {
.navbar-brand>img {
    display: block;
    width: 275px;
    margin: -15px;
}
.wc-table li {
	  margin-bottom: 20px;
	  width: 50%;
	}
.single-wc-content {
    float: none;
}

}

section .panel {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.69);
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

/* Preloader */

#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:99999; /* makes sure it stays on top */
}

.loader {
	font-size: 10px;
	top: 300px;
	left: 45%;
	text-indent: -9999em;
	width: 11em;
	height: 11em;
	border-radius: 50%;	
	position: relative;
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}
.loader:before {
	width: 50%;
	height: 50%;	
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}
.loader:after {
	background: #fff;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader {  
  background: #6c2300;
  background: -moz-linear-gradient(left, #6c2300 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #6c2300 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #6c2300 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #6c2300 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #6c2300 10%, rgba(255, 255, 255, 0) 42%);  
}
.loader:before {
  background: #6c2300; 
}

#contacto-background {
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),url(https://packglobal-publico.s3.amazonaws.com/APP104/libreria/2017/contact-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F0FCFF;
    padding: 10px 0 100px;
    text-shadow: 1px 1px 1px #000;
    background-size: cover;
	background-blend-mode: multiply;
}

#contacto-background{
	color: #fff;
}

.contact-left {
	background-color: rgba(104, 102, 96, 0.5);
	display: inline;
	float: left;
	padding: 30px 40px 10px;
	width: 100%;
}
.contact-right {
    background-color: rgba(104, 102, 96, 0.5);
    display: inline;
    float: left;
    padding: 30px 40px;
    width: 100%;
}

#contacto-background .form-control {
    background-color: rgba(255, 255, 255, 0.7);
}

#contacto-background .well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: rgba(104, 102, 96, 0.5);
    margin-top: 10px;
	border: 0px solid #e3e3e3;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}
.resultados-container{
	padding: 15px;
}

.single-wc-content .resultados-icon{
    border: 1px solid #ccc;
    height: 117px;
    line-height: 117px;
    text-align: center;
    border-radius: 100%;
    width: 117px;
}

.single-wc-content .resultados-tittle {
    color: #000;
    font-size: 18px;
    border-bottom: 1px solid #bbbbbb;
    margin-top: 32px;
    padding-bottom: 17px;
}
.desc-section{
	margin: 20px auto 30px;
}

.desc-section .descripcion{
	padding-top: 5px;
    font-size: 18px;
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 17px;
}

.desc-section .descripcion-internet{
    font-size: 18px;
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 17px;
}

.single-remates-content .remates-icon {
    border: 1px solid #ccc;
    height: 117px;
    line-height: 117px;
    text-align: center;
    border-radius: 100%;
    width: 117px;
}

.single-remates-content .remates-tittle {
    color: #000;
    font-size: 18px;
    margin-top: 15px;
}

.single-remates-content .resultados-tittle {
    color: #000;
    font-size: 18px;
    margin-top: 32px;
    padding-bottom: 17px;
    border-bottom: 1px solid #bbbbbb;
}
.single-remates-content {
    padding-top: 10px;
    min-width: 250px;
}

.header-content{
	min-height: 285px;
}

.desc-section .descripcion-internet {
    padding-top: 30px;
    font-size: 18px;
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 17px;
}

#owl-campos .item {
	padding:20px 10px;
}

.owl-carousel .owl-item .thumbnail{
    min-height: 310px;
	border-radius: 0px;
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09);
    transition-property: all;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-duration: .3s;

}
.owl-carousel .owl-item .thumbnail:hover{
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
}

.intro-text h3{
	color: rgba(255,255,255,1);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 300;
    font-family: Open Sans,sans-serif;
	text-transform: none;
}
.feria-cancelado{
	overflow-y: auto;
    background-color: rgba(0,0,0,.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px;
    z-index: 1060;
}
.box-cancelado{
	width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    display: block;
    min-height: 148px;
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    max-width: 100%;
    border: 5px dashed red;
}

.card {
    border-radius: 0px;
    overflow: hidden;
}
.h-100 {
    height: 100%!important;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.bg-dark {
    background-color: #343a40!important;
}
.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.card-header, .card-body {
    padding: 0.6rem .9rem;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}
.card-header, .card-body {
    padding: 0.6rem .9rem;
}
.text-white {
    color: #fff!important;
}
.bg-dark {
    background-color: #343a40!important;
}
.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.navbar-brand img, .footer__img img {
    max-width: 300px;
    transition: all 1s ease;
}
