/* ===================================
    Clases Especificas
====================================== */
html {
  width: 100% !important;
  overflow-x: hidden;
}

body {
  padding: 0 !important;
}

.container-general {
  padding: 0 58px;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 11;
}

.header-search {
  z-index: 9;
  background: var(--Neutro-1, #f5ece1);
}

.header.fixed {
  background: var(--Neutro-1, #f5ece1);
  position: sticky;
}

main {
  background: var(--Neutro-1, #f5ece1);
}

nav {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.navbar-items li a {
  color: #fff;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  /* 166.667% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0 25px 0 0;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 1;
}

.navbar-items li a:hover {
  transition: all 0.5s ease;
  opacity: 0.8;
}

.dropdown-toggle {
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1.2px;
}

.dropdown-toggle::after {
  display: none;
}

.header-search .navbar-items li a {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.header.fixed .dropdown-toggle {
  color: #453d33;
}

.header.fixed .dropdown-toggle svg path {
  fill: #453d33;
}

.header.fixed .burguer-btn path {
  stroke: #453d33;
}

.header.fixed .navbar-items li a {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.header.fixed .logo-container {
  display: block;
}

.header.fixed nav {
  border-bottom: 1px solid #453d3373;
}

.booking-btn {
  padding: 10px 31px;
  background: var(--call-to-action, #eb6b57);
  border: 1px solid transparent;
  color: #fff;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  opacity: 1;
  margin: 0 20px;
}

.fixed-mobile {
  width: 320px !important;
  padding: 23px 0 !important;
  text-decoration: none !important;
  text-align: center !important;
  margin: 0;
}

.booking-btns-mobile {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 60px;
}

.booking-btn:hover {
  transition: all 0.5s ease;
  opacity: 0.8;
}

.burguer-btn {
  cursor: pointer;
}

#hero {
  width: 100%;
  min-height: auto;
  position: relative;
}

#hero video {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 750px;
  max-height: 750px;
  transform: scale(1);
}

#hero .mask {
  width: 100%;
  min-height: 100%;
  height: 100%;
  opacity: 0.3;
  background: #000;
  position: absolute;
  z-index: 3;
}

#hero .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
  padding: 85px 0 0 0;
}

#hero .content .container-general {
  padding-top: 108px;
}

.hero-icon {
  margin-top: 28px;
}

.hero-category {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 166.667% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.standard-hero .arrow-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 100px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(0) translateY(25px); /* Cambia la distancia de rebote si deseas */
  }
}

.standard-hero .title {
  margin-top: 28px;
}

.title {
  color: var(--neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 68px;
}

.title span {
  color: #ffdc99;
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}

.reel {
  cursor: pointer;
}
.swiper {
  width: 100%;
  min-height: 300px;
}
.swiper-slide .card {
  width: 100%;
  height: 408px;
}

.swiper-slide .card.mobile {
  height: auto;
  min-height: 580px;
}

.swiper-slide .card img {
  object-fit: cover;
  height: 253px;
}

.swiper-slide .card .card-title {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.swiper-slide .card .card-body {
  background: var(--Secundary-3, #453d33);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-slide .card-text.link {
  text-decoration: none;
}
.swiper-slide .card-text.link small {
  color: var(--Neutro-1, #f5ece1) !important;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  letter-spacing: 1.2px;
}

.swiper-slide .card .card-body.light {
  background: var(--Primary, #d9c8b5);
}

.swiper-slide .card .card-body.light .card-text.link small {
  color: #453d33 !important;
}
.swiper-slide .card .card-body.light .card-text.link svg path {
  stroke: #453d33;
}

.swiper-slide .card .card-body.light .card-title {
  color: #453d33;
}

.reel p {
  color: var(--neutro-1, #f5ece1);
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1.2px;
}

/* Caroussel */

.btns-container {
  position: absolute;
  bottom: 0;
}

.carousel-control-next,
.carousel-control-prev {
  position: relative;
  color: red;
}

.logo-container {
  display: none;
}

.logo-container svg {
  width: 100%;
}

.carousel-indicators {
  bottom: 245px;
  left: 53px;
  z-index: 6;
}

.carousel-indicators [data-bs-target] {
  width: 63px;
  height: 2px;
  padding: 0;
  margin-right: 6px;
  margin-left: 6px;
  opacity: 1;
  background-color: #878787;
  transition: none;
}

.progress-bar {
  background-color: transparent;
}

.progress.active .progress-bar {
  background-color: white;
  height: 100%;
}

.controls-container {
  padding: 0 58px;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 50px;
  z-index: 5;
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-height: 100px;
}

.arrows-container {
  display: flex;
  width: 120px;
  align-items: center;
  justify-content: space-between;
  max-height: 50px;
}

.circle-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #d4d2e3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offers-container {
  overflow: hidden;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.offers-container .news-button {
  display: flex;
  align-items: center;
  border: 1px solid var(--neutro-1, #f5ece1);
  padding: 15px;
  text-decoration: none;
  max-width: 260px;
}

.offers-container .text {
  color: var(--neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

#promotionsModal .promotions {
  position: static;
  transform: none;
  width: 100%;
  padding: 20px 15px;
}

.promotions {
  position: relative;
  bottom: -52px;
  right: 0;
  background: var(--Neutro-1, #f5ece1);
  padding: 20px 30px;
  width: 400px;
  transition: transform 0.5s ease;
  transform: translateY(500px);
}

.promotions.show {
  transition: transform 0.5s ease;
  transform: translateY(0);
}

.promotions .icon {
  max-width: 40px;
  padding: 0;
  cursor: pointer;
}

.prom-items {
  margin-bottom: 40px;
}

.prom-items .title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 150% */
  margin: 0;
}

.prom-items .subtitle {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  /* 166.667% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.prom-items .description {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px;
  /* 138.462% */
  padding: 10px 0;
}

.prom-items .offer {
  display: flex;
  align-items: center;
}

.prom-items .offer p {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  letter-spacing: 1.2px;
  margin-right: 8px;
}

/* BreadCrumbs */

#breadcrumb {
  display: flex;
  align-items: center;
}
.breadcrumb-text {
  display: flex;
  align-items: center;
  color: #000;
  font-family: var(--main-font);
  font-size: 10px;
  font-style: normal;
  font-weight: 200;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery */

.bar-gallery {
  display: flex;
  width: 100%;
}
.container-gallery {
  display: flex;
  justify-content: space-between;
}

.container-gallery h2 {
  min-width: 495px;
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  bottom: 225px;
  transform: rotate(-90deg);
  z-index: 1;
}

.rectangle {
  width: 140px;
  height: 600px;
  overflow: hidden;
  transition: width 0.3s ease;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  transition: width 0.5s ease;
}

.rectangle:last-child {
  margin-right: 0;
}

.rectangle.active {
  width: calc(100% - 40px);
}

.background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.img-1 {
  background-image: url('../assets/img-1.png');
}

.img-2 {
  background-image: url('../assets/img-2.png');
}

.img-3 {
  background-image: url('../assets/img-3.png');
}
.img-4 {
  background-image: url('../assets/img-1.png');
}

.img-5 {
  background-image: url('../assets/verticalbar-1.jpeg');
}

.img-6 {
  background-image: url('../assets/verticalbar-2.jpeg');
}
.img-7 {
  background-image: url('../assets/verticalbar-3.jpeg');
}
.img-8 {
  background-image: url('../assets/verticalbar-4.jpeg');
}

.rectangle.expanded .background-image {
  transform: scale(1.2);
}

.rectangle.expanded {
  transition: width 0.5s ease;
  width: calc(100% - 40px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.rectangle.expanded .overlay {
  opacity: 0;
}

.content-card {
  width: 415px;
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translate(-100%, -50%);
  padding: 30px;
  background-color: var(--Secundary-3, #453d33);
  transition: transform 0.8s ease, opacity 0.8s ease;
  overflow: hidden;
  opacity: 0;
}

.content-card.light {
  background-color: #f5ece1;
}

.content-card .title {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  margin-bottom: 21px;
}

.content-card.light .title {
  color: #453d33;
}

.content-card .title span {
  font-size: 32px;
  color: var(--Call-to-Action, #eb6b57);
  font-style: italic;
}

.content-card .text {
  color: var(--Primary, #d9c8b5);
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 38px;
}

.content-card.light .text {
  color: #80705d;
}

.content-card .link {
  color: var(--Neutro-1, #f5ece1);
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.2px;
}
.content-card.light .link {
  color: #453d33;
}

.content-card.light svg path {
  stroke: #453d33;
}

.rectangle.expanded .content-card {
  transform: translate(0, -50%);
  opacity: 1;
}

.rectangle.expanded h2 {
  opacity: 0;
}

.menu-container {
  position: relative;
  min-height: inherit;
}
.menu-container .header {
  position: relative;
}
.menu {
  width: 100%;
  min-height: 750px;
  position: fixed;
  transform: translateY(0px);
  background-color: black;
  z-index: 8;
  transition: all 0.9s ease;
  top: 0;
  overflow-y: auto;
}

.menu.hide {
  transition: all 0.9s ease;
  transform: translateY(-2000px);
}
.breadcrumb-item.hide {
  display: none;
}

.breadcrumb-item {
  display: block;
}

.nav-menu {
  border-bottom: 1px solid #f0e1ce;
}

.img-bg-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.brown-mask {
  width: 100%;
  height: 100%;
  background-color: rgba(69, 61, 51, 0.85);
  position: absolute;
  top: 0;
  z-index: 2;
}

.img-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.items {
  top: 0;
  position: relative;
  z-index: 3;
  height: auto;
  min-height: calc(750px - 103px);
}

.items-search {
  position: static;
  z-index: 1;
  background: var(--Neutro-1, #f5ece1);
  height: 100%;
}

.menu.fixed {
  position: static;
  z-index: 1;
  min-height: auto;
  height: 100vh;
}

.menu-box {
  padding: 40px 40px 65px 0;
}

.link-items,
.link-headings {
  list-style: none;
  padding: 0;
}

.link-title {
  color: rgb(217, 200, 181, 0.5);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.link-headings li {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding-top: 25px;
}

.link-items li {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.blog-container {
  width: 100%;
  min-height: calc(750px - 103px);
  padding: 40px 35px;
  background: #555046;
}

.blog-card {
  padding: 0;
  width: 297px;
}

.blog-card .blog-breadcrumb {
  color: rgb(217, 200, 181, 0.5);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  /* 166.667% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card .blog-img {
  width: 100%;
  height: 166px;
  object-fit: cover;
  margin-bottom: 16px;
}

.blog-card .blog-title {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}

.blog-card .blog-text {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px;
  margin-bottom: 29px;
}

.blog-link {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.2px;
}

.blog-link svg {
  margin-left: 10px;
}

.input-search-container {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 30px 15px 15px;
  border: 1px solid var(--Neutro-1, #f5ece1);
}

.input-search-container input {
  min-width: 100%;
  border: 0;
  background-color: transparent;
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
}

.input-search-container input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background-image: url('../assets/input-search-cross.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  width: 35px;
  height: 35px;
  position: relative;
  right: 0px;
  cursor: pointer;
}

.input-search-container input:focus {
  outline: none;
}

.input-search-container input::placeholder {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.input-search-container .icon {
  position: absolute;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 50%;
}

.input-search-container.active .icon {
  background-color: rgba(128, 112, 93, 1);
}

.icon.no-bg {
  background-color: transparent !important;
}

.icon.no-bg svg {
  background-color: white;
}

.input-search-container.active {
  border: 1px solid var(--Complemento-1, #80705d);
  background: #fff;
}

.input-search-container.active input {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-search-container.active input::placeholder {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.icons-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rrss-circle {
  width: 53px;
  height: 53px;
  background-color: rgba(128, 112, 93, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foundation-button {
  border-radius: 50px;
  background: var(--Complemento-1, #80705d);
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  padding: 15px 24px;
  border: 1px solid transparent;
}

.footer-menu {
  padding-right: 40px;
}

.search-container {
  min-width: 280px;
  max-width: 280px;
}

.search-title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}

.search-links-container {
  padding-bottom: 20px;
}

.search-links-container .category {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 11px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px;
  letter-spacing: 0.55px;
  padding-bottom: 5px;
}

.search-links-container .headline {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}

.results p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.controls .pagination {
  margin: 0;
}
.controls .pagination .page-link {
  color: var(--Complemento-1, #80705d);
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  box-shadow: none;
}
.controls .pagination .page-link.active {
  background: var(--Secundary-3, #453d33);
  color: white;
  border: none;
}
.max-w-280 {
  max-width: 290px;
}
.buttons-mobile {
  display: none;
}

.menu-search-container {
  height: 100vh;
}

.subscription,
.contact-center {
  max-width: 380px;
}

.footer .title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: Gelasio;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.copyright {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 230.769% */
}

.subscription .container-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.social-network {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.social-network .icon {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(245, 236, 225, 1);
}

.social-network .no-icon {
  border-radius: 50px;
  background: #f5ece1;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 15px 20px;
  text-decoration: none;
}
.short-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.short-links a {
  display: block;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  letter-spacing: 1.2px;
  text-decoration: none;
}
.short-links a svg {
  margin-left: 10px;
}

#allInclusive .section-video {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  padding: 0;
}

#allInclusive .mask {
  width: 100%;
  min-height: 100%;
  height: 100%;
  opacity: 0.3;
  background: #000;
  position: absolute;
  top: 0;
}
#allInclusive .programm-content {
  width: 100%;
  height: 100%;
  padding: 0;
}

.nav.programm {
  top: 0;
  position: absolute;
  padding-top: 25px;
  display: flex;
  justify-content: center;
  z-index: 6;
  width: 100%;
}
.programm .nav-link {
  color: #fff;
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 138.462% */
  background-color: transparent !important;
  border-radius: 0;
}

.programm .nav-link.active {
  padding-bottom: 10px;
  border-bottom: 2px solid white;
}

.item-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-content h2 {
  color: var(--Neutro-1, #f5ece1);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 41px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  width: 100%;
  margin-bottom: 0;
}

.item-content p {
  color: #fff;
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  width: 50%;
  padding: 18px 0 28px 0;
}

.programm-btn {
  max-width: 150px;
  border: 1px solid var(--Neutro-1, #f5ece1);
  padding: 13px 20px;
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.frame-container {
  padding: 0 58px;
  position: absolute;
  z-index: 5;
}

.frame-content {
  border: 5px solid var(--Neutro-1, #f5ece1);
}

.frame-content.brown {
  border: 5px solid var(--Secundary, #453d33);
}

.frame-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 50px 50px 124px;
  min-height: 500px;
}

.frame-box.beige {
  background: var(--Neutro-1, #f5ece1);
}
.frame-box.brown {
  background: var(--Secundary-3, #453d33);
  padding: 50px;
}

.frame-box.brown .blog-link {
  color: var(--Neutro-1, #f5ece1);
}

.frame-box.brown p:first-child {
  color: var(--Neutro-1, #f5ece1);
}
.frame-box.brown p {
  color: var(--Primary, #d9c8b5);
}

.frame-box p:first-child {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
.frame-box strong{
  font-weight: bold !important;
}
.frame-box p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
  margin-bottom: 0.6em;
  margin-top: 0.6em;
}

.frame-box p:last-of-type{
  margin-bottom: 36px;
}
.photo-frame-mobile {
  display: none;
}

.btn-mobile {
  border: 1px solid var(--Secundary, #453d33);
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.3px;
  padding: 23px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-mobile.map {
  padding: 13px 0;
  max-width: 176px;
}

.btn-mobile svg {
  margin-left: 25px;
}

.heading h2 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
  padding: 0;
}
.heading h2 span {
  color: var(--Call-to-Action, #eb6b57);
}
.heading .link {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px;
  letter-spacing: 0.65px;
  padding: 0;
}

.map-content h2 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 40px;
}

.map-content h2 span {
  color: var(--Call-to-Action, #eb6b57);
}

#homeMap img {
  width: 100%;
}

.bg-map {
  background-image: url('../assets/track.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% 0;
}

.tab-selector-container {
  position: absolute;
  width: 400px;
  height: auto;
  left: 58px;
}

.tab-selector-container .nav-tabs {
  border: 0;
}

.tab-selector-container .nav-link {
  background: var(--Secundary-3, rgba(69, 61, 51, 0.5));
  border: 0;
  border-radius: 0;
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.tab-selector-container .nav-link.active {
  color: var(--Neutro-1, #f5ece1);
  background: var(--Secundary-3, #453d33);
}

.tab-selector-container .tab-content {
  background-color: rgba(69, 61, 51, 0.8);
  padding: 40px 22px;
}

.detail-title {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; /* 56.25% */
  margin-bottom: 16px;
}

.detail-title.min-card {
  font-size: 24px;
}
.detail-text {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px; /* 138.462% */
}
.detail-items {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px; /* 138.462% */
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(245, 236, 225, 1);
  margin-top: 17px;
}
.detail-items span {
  font-weight: 700;
}
.bg-container {
  width: 100%;
  min-height: 700px;
}

.bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-content h2 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
.history-content p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
  margin-bottom: 36px;
}

.history-content a {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px; /* 138.462% */
  letter-spacing: 0.65px;
  text-decoration: none;
}

.history-content a svg {
  margin-left: 7px;
}

#eventsSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#eventsSlider .controls {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 25px;
  left: 36px;
  overflow: hidden;
}

#eventsSlider .controls button {
  width: auto;
}

.carousel-indicators.story {
  bottom: 0;
  left: 15px;
  top: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.carousel-indicators.story button {
  width: 13px !important;
  height: 13px;
  border-radius: 50%;
  background-color: rgba(69, 61, 51, 0.2);
}
.carousel-indicators.story .active {
  background-color: rgba(69, 61, 51, 1);
}

.review-title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 125% */
  margin: 0;
}

.review-title span {
  color: var(--Call-to-Action, #eb6b57);
  font-style: italic;
}

.review-btn {
  min-width: 160px;
  padding: 13px 0px;
  text-align: center;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  min-height: 39px;
  text-decoration: none;
  border: 1px solid var(--Secundary, #453d33);
}

.arrow-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 60px;
  gap: 20px;
}

.arrow-controls .swiper-button-next,
.arrow-controls .swiper-button-prev {
  position: static;
  width: 50px;
  height: 50px;
}

#reviews {
  overflow: hidden;
}

.review-card {
  border: 1.5px solid var(--Primary, #d9c8b5);
  padding: 30px 18px;
}

.review-text {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 18.179px */
  padding: 12px 0;
}

.review-author {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  text-align: start;
  font-family: var(--secondary-font);
  font-size: 18.179px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27.269px */
}

.star.inactive {
  opacity: 0.3;
}

.container-elements {
  width: 100%;
  min-height: 450px;
  height: auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 !important;
}

.info-content {
  max-width: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.info-content h2 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}

.info-tab {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 180% */
  letter-spacing: 1px;
  background: var(--Secundary-3, #453d33);
  padding: 5px 9px;
  margin-bottom: 20px;
}

.info-content h1 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.info-content p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
  margin-bottom: 31px;
}
.info-content a {
  border: 1px solid var(--Secundary, #453d33);
  min-width: 100px;
  padding: 13px;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}
.adaptable-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame-mobile .mobile-box {
  padding: 20px 16px;
  background: var(--Secundary-3, #453d33);
}

.photo-frame-mobile .mobile-box .mobile-title {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}

.photo-frame-mobile .mobile-box p {
  opacity: 0.8;
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: lighter;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
}
.news-card {
  width: 100%;
  max-width: 445px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card .news-img img {
  width: 100%;
}

.news-card h4 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; /* 125% */
  margin-bottom: 0;
  padding: 16px 0;
}
.news-card p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 20px; /* 153.846% */
  margin-bottom: 16px;
}
.news-card a {
  display: flex;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  letter-spacing: 1.2px;
  text-decoration: none;
  padding: 0;
}

.news-card a svg {
  margin-left: 10px;
}

.news-card-footer {
  position: relative;
  bottom: 0;
  left: 0;
}

.reel-video-container {
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reel-video-container video {
  width: 100%;
  height: auto;
  display: block;
  outline: none; /* Remove the focus outline */
  transform: scale(1.2);
}
#reelModal .modal-content {
  background: rgba(0, 0, 0, 0.8);
}

.template-container {
  max-width: 800px;
  width: 100%;
  height: auto;
}

.template-title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  padding: 20px 0;
}

.template-text {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  padding-bottom: 20px;
}

#generalNews h2 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 156.25% */
}

.conservation .news-card h4 {
  font-size: 20px;
  line-height: 120%;
}
.conservation .news-card p {
  font-size: 13px;
}
.conservation .news-card a {
  align-items: center;
}

#customHeading {
  background: var(--Neutro-1, #f5ece1);
}

.custom-title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px; /* 137.5% */
  margin: 0;
  padding: 10px 0;
}

.custom-text {
  color: var(--Complemento-1, #80705d);
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
  padding-bottom: 10px;
}

.map-overflow {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  padding: 0;
  width: 1164px;
  height: 470px;
  margin-bottom: 34px;
}
.map-container {
  width: 1164px;
  height: 470px;
  min-width: 1164px;
  min-height: 470px;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0;
}

.map-container img {
  min-width: 1164px;
  min-height: 470px;
}
.pin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  display: flex;
  align-items: center;
}

.pin:hover svg {
  transform: scale(1.4);
  cursor: pointer;
  transition: all 0.5s ease;
}
.pin p {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 10px;
  cursor: pointer;
}

.location-1 {
  left: 410px;
  top: 25px;
}

.location-2 {
  left: 510px;
  top: 71px;
}

.location-3 {
  left: 868px;
  top: 113px;
}
.location-4 {
  left: 454px;
  top: 135px;
}

.location-5 {
  left: 813px;
  top: 178px;
}

.location-6 {
  left: 419px;
  top: 218px;
}

.location-7 {
  left: 324px;
  top: 277px;
}

.location-8 {
  left: 753px;
  top: 285px;
}

.location-9 {
  left: 910px;
  top: 291px;
}

.location-10 {
  left: 361px;
  top: 335px;
}

.location-11 {
  left: 635px;
  top: 243px;
}

#frameModal .frame-box {
  padding: 50px;
  min-height: auto;
}

#frameModal .frame-box p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
}
#frameModal .frame-box p:first-child {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#frameModal .photo-frame-desktop img {
  object-fit: cover;
  height: 388px;
}

#frameModal .modal-header {
  position: absolute;
  z-index: 9;
  justify-content: end;
  width: 100%;
}

.swiper-slide .img-card {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.info-title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
}

.info-btn {
  min-width: 135px;
  color: #e4d9cb;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 13px 0;
  text-align: center;
  border: 1px solid #e4d9cb;
  background: var(--Secundary-3, #453d33);
  text-decoration: none;
}

.custom-table {
  width: 843px;
  height: auto;
  padding: 0;
}

.header-cell {
  padding: 20px 0 !important;
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 300% */
}

.table td {
  border-bottom: 1px solid rgba(206, 188, 167, 1);
  border-top: 0 !important;
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
  padding: 13px 0;
}

.table th,
.table tr {
  border-bottom: 1px solid rgba(206, 188, 167, 1);
  border-top: 0 !important;
}

.table th:nth-child(2),
.table td:nth-child(2) {
  background: var(--Neutro-2, #f0e1ce);
}

.table td:nth-child(2),
.table td:nth-child(3),
.table th:nth-child(2),
.table th:nth-child(3) {
  text-align: center;
}

.plugin-example {
  min-height: 700px;
  background-color: white;
}
.time-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.time-card {
  min-width: 240px;
  max-width: 240px;
  padding: 16px;
  border: 1px solid var(--Primary, #d9c8b5);
}
.time-card .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-card .img-container img {
  max-width: 340px;
  max-height: 185px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time-card .card-content .card-heading {
  color: var(--Secundary-3, #453d33);
  font-family: var(--main-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 343.75% */
  padding: 10px 0;
}

.feature-item .heading {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}

.feature-item .value {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}

.mini-programms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}

.programm-item {
  width: 365px;
  height: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  background: var(--Neutro-2, #f0e1ce);
  padding: 10px;
}
.programm-item svg {
  width: 70px;
}

.programm-item p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  padding-left: 10px;
}

.disclaimer {
  padding: 20px 0;
}

.disclaimer .title {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 153.846% */
  margin: 0 !important;
}

.disclaimer .text {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

.left-content h2 {
  width: 80%;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
}

.left-content h2 span {
  color: var(--Call-to-Action, #eb6b57);
  font-style: italic;
}

.left-content p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  padding: 5px 0;
}

.rigth-content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#transferInOut{
	min-height: 400px;
}

.transfer {
  width: 100%;
	
}

.transfer table{
	min-height: 259px;	
}
.transfer .heading {
  display: flex;
  align-items: center;
  padding: 20px;
}

.transfer .heading p {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  padding-left: 20px;
}

.transfer .table tr {
  border: none;
}

.transfer .table th {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 12.131px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px; /* 123.077% */
  letter-spacing: 0.607px;
  background: var(--Neutro-2, #f0e1ce);
  padding: 10px;
  border-right: 1px solid #d9c8b5;
  border-bottom: 0;
}

.transfer .table td {
  color: var(--Complemento-1, #80705d);
  font-family: var(-- --main-font);
  font-size: 12.131px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  background: var(--Neutro-2, #f0e1ce);
  padding: 10px;
  border-right: 1px solid #d9c8b5;
  border-bottom: 0;
}

.info-heading h1 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  margin: 0;
  padding: 20px;
}

.info-heading p {
  color: var(--Complemento-1, #80705d);
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
}

.options-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.option-item {
  padding: 15px;
  width: 189px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(217, 200, 181, 1);
}

.option-title {
  color: #000;
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px;
}

.option-text {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}

.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-item {
  width: 300px;
}

.blog-item .card {
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  border: 0;
  height: 100%;
}

.blog-item .card-body {
  padding: 10px 0;
}

.blog-item .card-header img {
  width: 100%;
  object-fit: cover;
}

.blog-date {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 10px;
  font-style: normal;
  font-weight: 200;
  line-height: 20px; /* 200% */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-title {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 150% */
}

.blog-text {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px; /* 138.462% */
}

.blog-footer {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  letter-spacing: 1.2px;
  padding: 10px 0;
}

.hero-tab {
  width: fit-content;
  background: var(--Neutro-1, #f5ece1);
  padding: 5px 9px;
}

.hero-tab p {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1.2px;
}
.slider-fixed h1 {
  margin-top: 30px;
}

.warning-text {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 153.846% */
}

.select-container {
  display: flex;
  gap: 20px;
}

.custom-select {
  width: 156px;
  height: 39px;
  outline: 1px solid;
  border: 0px solid var(--Secundary, #453d33);
  background: var(--Neutro-1, #f5ece1);
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;
  border-inline: 12px solid transparent;
}
.excursion-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.exc-item {
  width: 272px;
  height: 355px;
  position: relative;
  overflow: hidden;
}

.exc-item img {
  width: 100%;
  height: 100%;
	object-fit:cover;
}

.exc-content-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 1) 100%);
  z-index: 9;
  padding: 20px 20px 40px;
  transform: translateY(60%);
  transition: all 0.7s ease;
  cursor: pointer;
}

.exc-content-card.mobile {
  transform: translateY(55%);
  background: var(--Secundary-3, #453d33);
}
.exc-item:hover .exc-content-card.mobile {
  background: var(--Secundary-3, #453d33);
  transform: translateY(55%);
  transition: all 0.7s ease;
}

.exc-content-card.mobile .exc-card-title {
  padding-top: 10px;
  margin-bottom: 10px;
}
.exc-content-card.mobile .exc-footer-card a {
  border: none;
  padding: 0;
}

.exc-item:hover .exc-content-card {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(0);
  transition: all 0.7s ease;
}
.exc-item:hover .exc-content-card .exc-card-body {
  transition: all 0.7s ease;
  opacity: 1;
}

.exc-card-body {
  opacity: 0;
  flex: 1 1 auto;
}

.card-tab {
  width: fit-content;
  background: var(--Neutro-1, #f5ece1);
  padding: 5px 9px;
  height: 23px;
}

.card-tab .tag {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.exc-card-title {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  padding-top: 25px;
  margin-bottom: 35px;
}

.detail-item {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}

.detail-item p {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
  text-transform: uppercase;
  padding-left: 10px;
}
.detail-item img {
  width: 19px;
  height: 19px;
}

.exc-footer-card a {
  border: 1px solid var(--Neutro-1, #f5ece1);
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  opacity: 0.7;
  transition: all 0.5s ease;
  z-index: 99;
}
.exc-footer-card a:hover {
  transition: all 0.5s ease;
  opacity: 1;
}

.clean-filter {
  display: flex;
  align-items: center;
}

.clean-filter a {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.6px;
  text-decoration-line: underline;
  text-transform: uppercase;
  padding-right: 10px;
}

.btn-filter-modal {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.3px;
  background-color: transparent;
  border: 1px solid var(--Secundary, #453d33);
  width: 280px;
  height: 64px;
}

.modal.fade.show {
  padding-right: 0 !important;
}

.hero-detail-features {
  display: flex;
  align-items: center;
}
.hero-detail-features .feature:first-child {
  border-right: 1px solid #80705d;
}

.feature {
  display: flex;
  align-items: center;
  padding: 0 9px;
}

.feature svg {
  margin-right: 10px;
}
.feature p {
  margin: 0;
}
.font-12 p {
  font-size: 12px;
}

.map-img:not(:first-child) {
  display: none;
}

.tab-container-wrapper h1 {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--secondary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding-bottom: 20px;
}

.tab-container-wrapper p {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 166.667% */
}

.tab-container-wrapper .nav-link {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  text-align: center;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 138.462% */
  padding: 0 0 8px 0;
  margin-right: 20px;
}

.tab-container-wrapper .nav-link.active {
  font-weight: 600;
  border-bottom: 2px solid black;
}
.map-dinamyc-container {
  overflow: hidden;
  height: 100%;
}
.map-dinamyc-container img {
  position: relative;
  right: -50px;
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 630px;
}
.step-container {
  display: flex;
  align-items: start;
  gap: 10px;
}

.step-container p {
  padding-bottom: 20px;
}

.min-width-custom {
  min-width: 450px;
}

.weather-box {
  width: 128px;
  height: 123px;
  background: var(--Neutro-1, #f5ece1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.weather-box img {
  width: 60px;
  height: 45px;
  padding-bottom: 12px;
}

.contact-section {
  width: 100%;
  min-height: 615px;
  position: relative;
}

.contact-section img {
  width: 100%;
  min-height: 700px;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 80px;
}

.contact-section h1,
.contact-section h2 {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact-section h1 span,
.contact-section h2 span {
  color: #ffdc99;
}

.contact-section p {
  color: var(--Neutro-1, #f5ece1);
  font-family: var(--main-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}

.contact-section .heading {
  color: var(--Destacado, #ffdc99);
  font-family: var(--main-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding-bottom: 10px;
}

.contact-section form {
  padding: 25px;
  background-color: var(--Secundary-3, #453d33);
}

.contact-section .form-control,
.contact-section .form-select {
  background-color: transparent;
  border: 1px solid var(--Neutro-1, #f5ece1);
  color: rgba(245, 236, 225, 0.5);
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-section .form-control::placeholder {
  color: rgba(245, 236, 225, 0.5);
  opacity: 0.5;
  font-family: var(--main-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.submit-btn {
  width: 105px;
  height: 42px;
  color: var(--Secundary, var(--Secundary-3, #453d33));
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--Neutro-1, #f5ece1);
  margin-top: 18px;
  border: 1px solid transparent;
}

.form-control::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.date-container {
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  position: sticky;
  top: 139px;
}

.date-container .date-item {
  color: var(--Secundary, var(--Secundary-3, #453d33));
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  transition: all .5s ease;
}
.date-container .date-item:hover {
	color: #eb6b57;
	transition: all .5s ease;
}

.history-img img {
  object-fit: cover;
  width: 100%;
  min-height: 397px;
  height: 100%;
}
.history-img {
  height: 100%;
  position: relative;
}

.history-content.blueprint {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 60px 100px 0 100px;
  position: relative;
}

.history-tab {
  height: 25px !important;
  width: 130px;
  background: var(--Secundary-3, #453d33);
}

.history-tab p {
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 215.385% */
  color: var(--Neutro-1, #f5ece1);
  margin-bottom: 16px;
}

.info-tip {
  width: 195px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.info-tip-header {
  background: var(--Secundary-3, #453d33);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 9px;
}

.info-tip-header p {
  color: var(--Primary, #d9c8b5);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 93.75% */
  padding-left: 10px;
}
.info-tip-body {
  border-radius: 0px 0px 30px 30px;
  background: var(--Neutro-2, #f0e1ce);
  padding: 15px 10px 30px 35px;
}

.info-tip-body ul li {
  color: var(--Complemento-1, #80705d);
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  margin-bottom: 8px;
}

.date-blueprint {
  position: absolute;
  right: -50px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-blueprint .text {
  position: absolute;
  z-index: 9;
  color: var(--Neutro-1, #f5ece1);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 19.98px;
  font-style: normal;
  font-weight: 700;
  line-height: 34.964px; /* 175% */
}

.history-item {
  min-height: 397px;
  height: auto;
}

.history-item.left .date-blueprint {
  left: -50px;
  right: unset;
}

.history-item.left .info-tip {
  left: 30px;
  right: unset;
}

.sticky-container {
  position: sticky;
  top: 140px;
  z-index: 6;
}

/* prueba */
/* Estilos básicos para la barra de progreso */
#progress-bar-container {
  position: sticky;
  top: 140px;
  width: 100%;
  height: 3px;
  background-color: var(--Neutro-2, #f0e1ce);
}

#progress-bar {
  height: 100%;
  width: 0;
  background-color: var(--Secundary, #453d33);
  transition: width 0.3s ease-in-out;
  position: relative;
}
#progress-ball {
  width: 10px; /* Ajusta el tamaño de la bolita según tus necesidades */
  height: 10px;
  background-color: #453d33; /* Color de la bolita */
  border-radius: 50%; /* Para hacer que la bolita sea redonda */
  position: absolute;
  top: 50%; /* Centra la bolita verticalmente en la barra de progreso */
  transform: translateY(-50%);
  right: 0; /* Coloca la bolita al final de la barra de progreso */
}

.custom-container {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--Neutro-1, #f5ece1);
	
}
.wrapper {
  width: 100%;
  position: relative;
  max-width: 1440px;
}

#header .container-general,
#hero .container-general,
footer .container-general {
  padding: 0 58px;
}

/* Responsive */
@media (min-width: 1440px) {
  .exc-item {
    width: 315px;
  }
}

@media (width <= 1440px) {
  .container-general {
    padding: 0 58px;
  }
}

@media (max-width: 1200px) {
  .history-content.blueprint {
    padding: 50px;
  }
  .link-headings li {
    font-size: 20px;
    padding-top: 15px;
  }
  .menu-box {
    padding-right: 0;
    padding-bottom: 0;
  }
  .footer-menu {
    padding-right: 0;
  }
  .blog-container {
    padding: 40px 20px;
  }

  .frame-box {
    padding: 50px;
    min-height: auto;
  }
}

@media (max-width: 1150px) {
  .header.normal .navbar-items,
  .header.fixed .navbar-items {
    display: none;
  }
}

@media (max-width: 992px) {
  .sticky-container {
    top: 99px;
  }
  .history-content.blueprint {
    padding: 30px 10px;
  }
  .custom-title.timeline {
    font-size: 24px;
    line-height: 140%;
  }
  .contact-section h1,
  .contact-section h2 {
    font-size: 24px;
  }
  .contact-section h2 {
    text-align: center;
  }
  .contact-content {
    padding: 40px;
  }
  .tab-container-wrapper h1 {
    font-size: 24px;
  }
  .tab-container-wrapper .nav-link {
    font-size: 12px;
  }
  .carousel-indicators {
    left: 12px;
  }
  .info-heading h1 {
    font-size: 24px;
    line-height: 120%;
    margin: 0;
  }
  .left-content h2 {
    width: 100%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
  }
  .time-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #frameModal .frame-box {
    padding: 10px;
  }
  #generalNews h2 {
    font-size: 24px;
    line-height: 120%;
  }
  .frame-box.brown {
    padding: 30px;
  }
  .news-card h4 {
    font-size: 24px;
    line-height: 120%;
  }
  #header .container-general,
  #hero .container-general,
  footer .container-general,
  .container-general {
    padding: 0 15px;
  }
  .info-content h2,
  .info-content h1 {
    width: 100%;
    font-size: 24px;
    line-height: 120%;
  }
  .history-content h2 {
    padding-top: 20px;
  }
  .info-content {
    max-width: 100%;
  }

  #eventsSlider .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    bottom: -20px;
    left: 0;
  }
  .item-content h2 {
    font-size: 24px;
    line-height: 120%;
  }
  .subscription,
  .contact-center {
    max-width: 320px;
  }
  .short-links {
    gap: 15px;
    margin: 40px 0;
    flex-direction: column;
  }
  .short-links a {
    border: 1px solid var(--Secundary, #453d33);
    max-width: 380px;
    width: 100%;
    padding: 23px;
    display: flex;
    justify-content: center;
  }
  .short-links a svg {
    display: none;
  }
  .subscription .container-btns {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }

  .container-btns button {
    width: 100%;
    max-width: 380px;
  }
  .navbar-items {
    display: none;
  }

  .logo-container {
    display: block;
  }

  .menu-container .container-general nav {
    padding: 10px 0;
    background-color: transparent;
  }

  .menu-container .dropdown-toggle {
    stroke: var(--neutro-1, #f5ece1);
    color: var(--neutro-1, #f5ece1);
  }

  .container-general nav {
    padding: 10px 0;
    background: var(--neutro-1, #f5ece1);
  }

  .container-general nav .burguer-btn path,
  .dropdown-toggle path {
    stroke: #453d33;
  }

  .dropdown-toggle {
    color: #453d33;
  }

  .blog-card .blog-title {
    font-size: 18px;
  }

  .frame-box {
    padding: 25px;
    min-height: auto;
  }
  .frame-box p:first-child {
    font-size: 24px;
  }

  .frame-container {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .overflow-custom {
	overflow-x: hidden !important;
  }
  .info-tip.mobile {
    width: 100%;
    display: block;
    position: static;
    border-radius: 0;
    background: var(--Neutro-2, #f0e1ce);
    padding-top: 15px;
  }

  .info-tip.mobile .info-tip-body {
    border-radius: 0;
  }

  .info-tip.mobile .info-tip-header {
    width: 118px;
    display: flex;
    justify-content: center;
    margin-left: 20px;
  }
  .info-tip.mobile .info-tip-header p {
    color: var(--Neutro-1, #f5ece1);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    padding: 0;
  }
  .bg-wood.blueprint {
    background-color: rgba(245, 236, 225, 1) !important;
  }
  .sticky-container {
    display: none !important;
  }
  #progress-bar-container {
    display: none;
  }
  .history-item.left .date-blueprint {
    left: 0;
    right: 0;
  }
  .history-content.blueprint {
    padding: 70px 10px 20px 10px;
  }
  .date-blueprint {
    right: 0;
    left: 0;
    top: -50px;
  }
  .info-tip {
    display: none;
  }
  .contact-section form {
    padding: 15px 0px;
  }
  .contact-content {
    padding: 20px 10px;
  }
  .contact-section img {
    width: 100%;
    min-height: 1100px;
    height: 100%;
    object-fit: cover;
  }

  .map-dinamyc-container img {
    position: relative;
    right: -50px;
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: auto;
  }
  .hero-detail-features {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  .feature:first-child {
    border-right: 0 !important;
  }
  .feature {
    padding: 8px;
  }
  .custom-table {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .header-cell {
    padding: 20px 5px !important;
    font-family: var(--secondary-font);

    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    min-width: 84px;
  }

  .frame-mobile-container img {
    width: 100%;
    min-height: 345px;
    object-position: center;
    object-fit: cover;
  }

  .frame-mobile-container h2 {
    color: var(--Secundary, var(--Secundary-3, #453d33));
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0;
  }
  .frame-mobile-container p {
    color: var(--Complemento-1, #80705d);
    font-family: var(--main-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px; /* 153.846% */
  }
  .photo-frame-desktop {
    display: none;
  }
  .photo-frame-mobile {
    display: block;
  }
  .btn-mobile.map {
    max-width: 100%;
    width: 100%;
  }
  .map-content h2 {
    font-size: 24px;
    text-align: center;
    line-height: 120%;
  }

  #homeMap img {
    max-width: 448px;
    width: 100%;
    max-height: 500px;
  }

  .heading h2 {
    color: var(--Secundary, var(--Secundary-3, #453d33));
    font-family: var(--secondary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 10px;
    padding: 0;
  }
  .item-content p {
    color: var(--Complemento-1, #80705d);
    text-align: center;
    font-family: var(--main-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px; /* 138.462% */
    width: auto;
  }
  .item-content h2 {
    color: var(--Secundary, var(--Secundary-3, #453d33));
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .section-video {
    display: none !important;
  }
  .mobile-item-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
  }
  .programm-btn {
    border: 1px solid var(--Secundary, #453d33);
    color: var(--Secundary, var(--Secundary-3, #453d33));
	  margin-bottom: 5px;
  }
  .item-content {
    position: relative;
  }
  .nav.programm {
    padding-top: 0;
    position: relative;
  }
  .programm .nav-link.active,
  .programm .nav-link {
    color: #453d33;
  }

  .programm .nav-link.active {
    border-bottom: 2px solid #453d33;
  }
  #allInclusive .mask {
    display: none;
  }
  .frame-container {
    padding: 0 30px;
  }

  .menu-search-container {
    height: auto;
  }
  .buttons-mobile {
    display: block;
  }
  .logo-container {
    width: 165px;
  }

  .carousel-indicators {
    left: 15px;
    bottom: 60px;
    justify-content: center !important;
    margin: 0 !important;
  }
  .carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
  }
  .title,
  .title span {
    font-size: 32px;
    text-align: center;
  }
  .reel {
    justify-content: center;
  }
  .controls-container {
    padding: 0 15px;
    z-index: unset;
  }
  .controls-container .circle-btn {
    z-index: 6;
  }
  .arrows-container {
    width: 100%;
  }

  .container-general nav {
    padding: 10px 0;
    background: var(--neutro-1, #f5ece1);
  }

  .menu {
    min-height: auto;
    height: 100dvh;
  }

  .link-headings li {
    font-family: var(--main-font);
    font-weight: 300;
  }
  #menu .menu-container {
    padding-bottom: 40px;
  }

  .offers-container {
    display: none;
  }
}

@media (max-width: 650px) {
}

@media (max-width: 576px) {
  .exc-item {
    width: 100%;
    height: 355px;
  }
  .blog-item {
    width: 100%;
  }
  .option-item {
    width: 100%;
  }
  .time-card-container {
    gap: 10px 0;
  }
  .time-card-container .d-flex-custom{
	width: 100%;
  }
  .time-card .img-container img {
    max-width: 100%;
  }
  .time-card {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .reel-video-container video {
    height: 100%;
  }
  .fixed-mobile {
    width: 100% !important;
  }
  .news-card {
    max-width: 100%;
  }
  .review-title {
    width: 100%;
    font-size: 24px;
    text-align: center;
    line-height: 120%;
    padding-top: 20px;
  }
  .arrow-controls {
    display: none;
  }
  .reviews-mobile {
    flex-wrap: wrap;
  }
  .reviews-mobile .swiper-slide {
    min-width: 100% !important;
    height: auto !important;
    margin: 10px 0;
  }
  .history-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
    align-items: center;
  }

  .history-content h2 {
    text-align: center;
    font-size: 24px;
  }

  #eventsSlider .carousel .carousel-item img {
    min-height: 440px;
  }

  #eventsSlider .carousel .carousel-control-next img {
    width: 50px;
    height: 50px;
    margin: 0;
  }
  #eventsSlider .carousel .carousel-control-prev img {
    width: 50px;
    height: 50px;
    margin: 0;
  }
  .bg-wood {
    background: var(--Primary, #d9c8b5);
  }
  .nav.programm {
    justify-content: space-between;
  }
  .programm .nav-link {
    padding: 0;
    font-size: 11px;
  }
  .search-title {
    font-size: 20px;
  }
  .social-media {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
  .btn-mobile.map {
    padding: 23px 0;
  }
}

@media (max-width: 450px) {
}

@media (max-width: 400px) {
  .tab-container-wrapper .nav-link {
    margin: 0;
  }

  .nav-underline {
    width: 100% !important;
    justify-content: space-between;
  }
}

@media (max-width: 370px) {
  .programm .nav-link {
    padding: 0;
    font-size: 10px;
  }
}

@media (max-width: 320px) {
}

