/* resources/css/app.css */
:root {
  --theme-primary: #B45309;
  --bs-primary: var(--theme-primary);
  --bs-primary-rgb:
    255,165,0;
  --bs-link-color: var(--theme-primary);
}
.btn-primary {
  --bs-btn-bg: var(--theme-primary);
  --bs-btn-border-color: var(--theme-primary);
  --bs-btn-hover-bg: #9a4307;
  --bs-btn-hover-border-color: #9a4307;
  --bs-btn-active-bg: #7e3606;
  --bs-btn-active-border-color: #7e3606;
}
.bg-primary {
  background-color: var(--theme-primary) !important;
}
.text-primary {
  color: var(--theme-primary) !important;
}
body {
  font-family: "Open Sans", sans-serif;
}
#main-container {
  padding-top: 3pc;
}
#foot-actions {
  width: 100%;
  left: 0;
  position: fixed;
  bottom: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
}
#map {
  height: 100vh;
}
.title-center {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 30px 0;
}
.title-center::before,
.title-center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #ccc;
}
.title-center::before {
  right: 54%;
  margin-right: 85px;
}
.title-center::after {
  left: 54%;
  margin-left: 85px;
}
ul.nav-inline {
  list-style: none;
}
ul.nav-inline li {
  display: inline;
}
ul.nav-inline.right {
  margin-left: 71%;
}
.galeria {
  display: inline-flex;
}
.galeria .imgContainer {
  width: 20%;
  float: left;
  margin-right: 4px;
}
.galeria .imgContainer img {
  max-width: 100%;
}
.btn-custom {
  background-color: #62B3AA !important;
  border-color: #62B3AA !important;
  color: white !important;
}
.img-wrapper img {
  max-width: 100%;
}
.click-item {
  text-decoration: none;
  color: inherit;
}
.reset-link {
  color: inherit;
  text-decoration: none;
}
.reset-link:hover {
  color: inherit;
  text-decoration: none;
}
.no-caret::after {
  display: none !important;
}
.position-relative {
  position: relative;
}
.i-fix {
  position: absolute;
  top: 14px;
  left: 0px;
}
.badge-fix {
  position: absolute;
  top: 10px;
  left: 8px;
  font-size: 8px;
}
section#banner {
  width: 100%;
  height: 28pc;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: .5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.thumbnail {
  overflow: hidden;
}
.thumbnail img {
  transition: transform 0.3s ease;
}
.thumbnail:hover img {
  transform: scale(1.05);
}
.banner-home {
  width: 100%;
  height: 500px;
  text-align: center;
  padding-top: 16%;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 1.5rem;
}
.footer-custom {
  background-color: #5d4037;
  color: #fff;
}
.footer-custom p,
.footer-custom small {
  color: #f5f5f5;
}
.footer-custom .btn-outline-dark {
  color: #fff;
  border-color: #fff;
}
.footer-custom .btn-outline-dark:hover {
  background-color: #ff7a00;
  border-color: #ff7a00;
  color: #fff;
}
.page-link {
  color: var(--theme-primary);
  border-color: var(--theme-primary);
}
.page-link:hover {
  color: #fff;
  background-color: #9a4307;
  border-color: #9a4307;
}
.page-item.active .page-link,
.active > .page-link,
.page-link.active {
  color: #fff;
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}
.page-link:focus {
  box-shadow: 0 0 0 0.15rem rgba(180, 83, 9, 0.25);
}
.breadcrumb-item a {
  color: var(--theme-primary);
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: #9a4307;
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #7e3606;
  font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #b28c73;
}
.social-btn {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  font-size: 16px;
}
