/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffb727;
  text-decoration: none;
}

a:hover {
  color: #ffc85a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb727;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc550;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  height: 60px;
  background: rgba(25, 28, 31, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ffb727;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: #3b434a;
  letter-spacing: 1px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #ffb727;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 41, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ffb727;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #ffb727;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# BREADCRUMB
--------------------------------------------------------------*/
#breadcrumb {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  color: #fff;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(25, 28, 31, 0.6);
  flex-wrap: wrap;
  border-radius: 1px;
}

.breadcrumb .breadcrumb-item a {
  color: white !important;
}

.breadcrumb .breadcrumb-item a:hover {
  color: #ffb727 !important;
}

.breadcrumb .breadcrumb-item.active a {
  color: #ffb727 !important;
}

.breadcrumb .breadcrumb-item.active::before {
  content: ">" !important;
  color: white;
}

/*--------------------------------------------------------------
# INICIO Section
--------------------------------------------------------------*/
#inicio {
  width: 100%;
  height: 100vh;
  /*background: url("./img/inicio-bg.jpg") top right;*/
  background-size: cover!important;
}

#inicio:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#inicio .inicio-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}

#inicio h1 {
  margin: 70vh 0vh 1vh 0vh;
  font-size: 64px;
  font-family: "Satisfy", serif;
  color: #fff;
}

#inicio h2 {
  color: #eee;
  border-bottom: 2px solid #ffb727;
  border-top: 2px solid #ffb727;
  padding: 1vh;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#inicio .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

#inicio .btn-scroll i {
  font-size: 48px;
}

#inicio .btn-scroll:hover {
  color: #ffb727;
}

@media (min-width: 1024px) {
  #inicio {
    background-attachment: fixed;
  }
}

@media (max-width: 575px) {
  #inicio h1 {
    font-size: 40px;
  }

  #inicio h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 2vh 2vh;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding: 15px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #3b434a;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #eef0f2;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# ACERCA DE
--------------------------------------------------------------*/
.acerca .acerca-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #3b434a;
}

.acerca .acerca-item {
  padding: 0px 0px 0px 20px;
  margin-top: -2px;
  border-left: 2px solid #82909c;
  position: relative;
}

.acerca .acerca-item h4 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffb727;
  margin-bottom: 10px;
}

.acerca .acerca-item h5 {
  font-size: 16px;
  background: #eef0f2;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.acerca .acerca-item ul {
  padding-left: 20px;
}

.acerca .acerca-item ul li {
  padding-bottom: 10px;
  padding-inline-start: 1ch;
}

.acerca .acerca-item ul li::marker {
  color: #ffb727;
  content: "✔";
}
.acerca .acerca-item:last-child {
  padding-bottom: 0;
}

.acerca .acerca-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #82909c;
}

.acerca .maps {
  border: 1px solid #82909c;
  border-radius: 10px;
  padding: 1px;
  width: -webkit-fill-available;
}

/*--------------------------------------------------------------
# SERVICIOS section
--------------------------------------------------------------*/
.servicios .card {
  padding: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}
.servicios .card-body {
  margin-top: 18px;
}

.servicios .card-img-top {
  margin: 5px auto 5px auto;
  padding-top: 17px;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background: #fff4df;
}

.servicios .card-img-top i {
  font-size: 36px;
  line-height: 1;
  color: #ffb727;
}

.servicios .card-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.servicios .card-title a {
  color: #111;
  transition: 0.3s;
}

.servicios .card-text {
  line-height: 28px;
  font-size: 15px;
}

.servicios .card:hover {
  border-color: #ffb727;
}

.servicios .card:hover .card-title a {
  color: #ffb727;
}
.servicios .card-footer{
  border: 0px;
}

.servicios .card-footer .btn {
  font-size: 12px;
  color: white;
  background-color: #ffc041;
  border: 1px solid #ffb727;
}

.servicios .card-footer .btn:hover,
.servicios .card-footer .btn:active,
.servicios .card-footer .btn:focus-visible {
  color: #ffc041 !important;
  background-color: white !important;
  border: 1px solid #ffb727 !important;
}


#amenities .col {
  border: 1px solid #ffb727 !important;
  border-radius: 10px;
  animation-duration: 2000ms;
  animation-iteration-count: 1;
}

#amenities p {
  color: #444444;
  font-weight: 600;
  margin: 0;
  font-size: 15px;
}

#amenities i {
  color: #ffb727;
  font-size: 30px;
}

/*--------------------------------------------------------------
# GALERIA
--------------------------------------------------------------*/
.galeria #galeria-filters {
  list-style: none;
  margin-bottom: 20px;
}

.galeria #galeria-filters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
  border: 2px solid #fff;
}

.galeria #galeria-filters li:hover,
.galeria #galeria-filters li.filter-active {
  color: #f3a200;
  border-color: #ffb727;
}

.galeria .galeria-item {
  margin-bottom: 30px;
}

.galeria .galeria-item .galeria-img {
  overflow: hidden;
  height: 170px;
}

.galeria .galeria-item .galeria-img img {
  transition: all 0.8s ease-in-out;
  min-height: 170px;
}

.galeria .galeria-item .galeria-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  right: 12px;
  left: 12px;
}

.galeria .galeria-item .galeria-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.galeria .galeria-item .galeria-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

.galeria .galeria-item:hover .galeria-img img {
  transform: scale(1.1);
}

.galeria .galeria-item:hover .galeria-info {
  opacity: 1;
}

.glightbox-open .gslide-description {
  bottom: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.glightbox-open .gslide-description .gdesc-inner {
  padding: 3px;
  text-align: center;
  margin: 0;
}

.glightbox-open .gslide-description .gslide-title {
  font-size: 16px;
  color: white;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  line-height: 1.5em;
}

.glightbox-open .gslide-description .gslide-desc {
  font-size: 12px;
  color: white;
  font-family: "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
# FOTOS Section
--------------------------------------------------------------*/
.fotos {
  padding-top: 20px;
}

.fotos .fotos-slider {
  width: 70%;
}

.fotos .fotos-slider img {
  width: 100%;
  height: 60vh;
}

.fotos .fotos-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.fotos .fotos-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffb727;
}

.fotos .fotos-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb727;
}

.fotos .fotos-slider .swiper-button-prev::after,
.fotos .fotos-slider .swiper-button-next::after {
  color: white;
  font-size: 40px;
}

.btn-galeria {
  max-width: 400px;
  color: white;
  background-color: #ffc041;
  border: 1px solid #ffb727;
}

.btn-galeria:hover,
.btn-galeria:active,
.btn-galeria:focus-visible {
  color: #ffc041 !important;
  background-color: white !important;
  border: 1px solid #ffb727 !important;
}

/*--------------------------------------------------------------
# PRICING Section
--------------------------------------------------------------*/
.pricing .row > * {
  padding: 0px;
}
.pricing .card {
  border-width: 0px;
  margin: 10px;
}

.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffb727;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #444444;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 25px;
  color: #ffb727;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ffb727;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .note {
  width: 200px;
  position: absolute;
  font-size: 12px;
  background: #ffb727;
  color: #fff;
  border-radius: 4px;
  opacity: 0.7;
  max-height: 18px;
  left: -83px;
  transform: rotate(-45deg);
}

.pricing .table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: #fff6e4;
    --bs-table-accent-bg: #fff6e4;
}

.pricing tr{
  border-color: #ffb727!important;
}
.pricing .table-group-divide{
       border-top: calc(var(--bs-border-width) * 2) solid #ffb727!important;
}

/*--------------------------------------------------------------
# CONTACTO Section
--------------------------------------------------------------*/
.contacto .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0px 30px 0px;
  border: 0px;
  display: block;
}

.contacto .info-box i.bx {
  font-size: 24px;
  color: #ffb727;
  border-radius: 50%;
  padding: 15px;
  background: #fff6e4;
}

.contacto .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contacto .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.contacto .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #687683;
  line-height: 1;
  margin: 0 8px;
  transition: 0.3s;
  padding: 14px;
  border-radius: 50px;
  border: 1px solid #dde1e4;
}

.contacto .social-links a:hover {
  color: #fff;
  border-color: #ffb727;
  background: #ffb727;
}

.contacto .maps {
  border: 1px solid #82909c;
  border-radius: 10px;
  padding: 1px;
  width: -webkit-fill-available;
  min-height: 300px;
}

.contacto #contacto-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 27px;
}

.contacto #contacto-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contacto #contacto-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contacto #contacto-form .error-message br + br {
  margin-top: 25px;
}

.contacto #contacto-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contacto #contacto-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contacto #contacto-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contacto #contacto-form input,
.contacto #contacto-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contacto #contacto-form input::focus,
.contacto #contacto-form textarea::focus {
  background-color: #ffb727;
}

.contacto #contacto-form input {
  padding: 10px 15px;
}

.contacto #contacto-form textarea {
  padding: 12px 15px;
}

.contacto #contacto-form button[type="submit"] {
  background: #ffb727;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contacto #contacto-form button[type="submit"]:hover {
  background: #ffc85a;
}


@media (max-width: 1200px) {
  .contacto .info-box a {
    font-size: 14px;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
#footer {
  /*background: url("./img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  */
  background-color: #f3a200;
  color: #fff4df;
  font-size: 14px;
  text-align: center;
  padding: 25px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#footer .container {
  position: relative;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff4df;
  position: relative;
  font-family: "Satisfy", serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15px;
  font-style: italic;
}

#footer .menu {
  display: inline-grid !important;
}

#footer .menu a {
  color: #fff4df;
}
#footer .menu a:hover {
  color: #ffc85a;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff4df;
  color: #f3a200;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffc041;
  color: #fff;
  text-decoration: none;
}
