/*///////////////////////// GENERALES /////////////////////////*/
* {
  scroll-behavior: smooth;
}

/* Fonts */
@font-face {
  font-family: "Arpona";
  src: url("../fonts/Arpona-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Arpona";
  src: url("../fonts/Arpona-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Arpona";
  src: url("../fonts/Arpona-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: "Manrope", sans-serif;
  color: #434746;
  background-color: white;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wrapper {
  overflow: hidden;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 600;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}
.lh-100{
  line-height: 1;
}

.primary {
  color: #ffcf00;
}

.primary-bg {
  background-color: #ffcf00;
}

.gray {
  color: #787978;
}

.light-gray {
  color: #f9fafa;
}

.bg-light-gray {
  background-color: #F9FAFA !important;
}

.no-wrap {
  white-space: nowrap;
}

.rotate {
  transform: scaleX(-1);
}

.italic {
  font-style: italic;
}

.arpona {
  font-family: "Arpona";
}

.manrope {
  font-family: "Manrope", sans-serif;
}

.padding-left {
  padding-left: 300px !important;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 0px;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #434746;
  transition: all 0.3s;
  text-decoration: none !important;
  text-transform: uppercase;
  display: flex;
  width: fit-content;
}

.btn-sm {
  font-size: 15px;
  padding: 5px 15px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active,
.show > .btn.dropdown-toggle {
  box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.12);
}

.btn span,
.text-button span {
  margin-left: 5px;
  transition: all 0.3s;
}

.btn:hover span,
.text-button:hover span {
  transform: translateX(5px);
}

.btn-primary {
  border: 2px solid #fcd400;
  color: #434746;
  background-color: #fcd400;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: #f7ce06;
  color: #434746;
  border: 2px solid #f7ce06;
}

.btn-secondary {
  border: 2px solid #ffffffc9;
  color: #fff;
  background-color: #ffffff3a;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background: #ffffffd6;
  color: #434746;
  border: 2px solid #fff;
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wsp-float img {
  width: 34px;
  height: 34px;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}

/*///////////////////////// HEADER /////////////////////////*/
.navbar {
  z-index: 10;
  width: 300px;
  height: 100%;
  position: fixed !important;
  padding: 2rem;
  background-color: #434746;
  top: 0;
  flex-direction: column !important;
  align-items: baseline;
  z-index: 100;
}

.navbar-nav {
  display: flex;
  flex-direction: column !important;
}

.nav-link {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff !important;
  margin: 0.2rem 0rem !important;
  position: relative;
  padding: 0.4rem 0 !important;
  display: flex !important;
  align-items: center;
}

.nav-link::after {
  content: "";
  background-color: #ebc600;
  height: 3px;
  width: 25px;
  border-radius: 25px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: auto;
  bottom: 2px;
  transform: translateX(-100%);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateX(0);
}
.nav-link-n{
  font-size: 15px;
}
.nav-link-n::after {
  content: none;
}

.header-logo {
  width: 100%;
  height: auto;
}

.navbar-collapse {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center !important;
}

.contact-header .social-media a {
  background-color: #f9fafa41;
  border: 0;
}

.contact-header .social-media a img {
  filter: none;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-media a {
  display: block;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid #ffffff25;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-media a img {
  height: 19px;
  width: 19px;
  object-fit: contain;
  filter: brightness(100) grayscale(1);
}

.social-media a:hover {
  background-color: #ffffff25;
}

.bsnav-sticky.bsnav-sticky-fade.sticked {
  position: fixed;
  opacity: 1 !important;
  visibility: visible !important;
}

.navbar-toggler {
  right: 0;
  padding: 0;
}

.bsnav-sticky.bsnav-sticky-fade.navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::before {
  background-color: #ffcf00 !important;
  transition: 0.3s;
}

/* Bs nav para el menú mobile */
.bsnav-mobile .navbar {
  left: 0 !important;
  transform: translate3d(-300px, 0, 0) !important;
  z-index: 10;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar {
  background: #3b3d3c !important;
  padding: 0px 0 15px;
  width: 260px;
}

/*//////////////////////// HOME ////////////////////////////*/
.main-section {
  height: 100vh;
  position: relative;
  line-height: 1;
  overflow: hidden;
}

.main-txt {
  width: 90%;
  max-width: 900px;
  position: absolute;
  z-index: 5;
  left: calc(0px + 300px);
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-title {
  font-size: 50px;
  line-height: 1;
}

.main-title .main-title-lg {
  font-size: 55px;
}

.text-shadow {
  text-shadow: 1px 3px 6px rgba(0, 0, 0, 0.28);
}

.main-section .carousel {
  height: 100vh;
}
.carousel-indicators{
  left: 300px;
}

.main-section .carousel-inner {
  height: 100%;
}

.main-section .carousel-item,
.main-section .carousel-item.active {
  height: 100%;
}

.main-section .carousel-item img,
.main-section .carousel-item.active img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.main-section .carousel-caption {
  bottom: 0;
  z-index: 5;
  position: absolute;
  top: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  width: 100%;
  left: 0;
  right: 0;
  transition: 0.3s;
  padding-left: 300px;
  padding-bottom: 8rem;
}

.underline {
  text-decoration: underline;
}

.text-under {
  /*text-decoration: underline #ffcf00;*/
  position: relative;
}

.text-under::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 8px;
  background: #ffcf00;
  z-index: -1;
}

.text-under-sm::before {
  content: "";
  position: absolute;
  bottom: 8px;
  height: 6px;
}

/*///////////////////////// animation zoom /////////////////////////*/
.animaZoom {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.infinite-zoom {
  -webkit-animation: zoomSlow 35s infinite linear;
  -moz-animation: zoomSlow 35s infinite linear;
  animation: zoomSlow 35s infinite linear;
}

@-webkit-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.deco-title{
  position: relative;
}
.deco-title:after{
    background-color: #d9d9d9;
    bottom: -12px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    width: 70px;
    border-radius: 50px;
}
/*/////////////////////////////////////// INTERNAS ////////////////////////////////////////*/
.section-header {
  min-height: 240px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-header-experiencias {
  background-image: url(../images/bg-experiencias.jpg);
}

.section-header-seguridad {
  background-image: url(../images/bg-seguridad.jpg);
}

.section-header-visitantes {
  background-image: url(../images/bg-visitantes.jpg);
}

.section-header-faqs {
  background-image: url(../images/bg-faqs.jpg);
}
.section-header-calendar {
  background-image: url(../images/bg-calendar.jpg);
}

/* Experiencias */
.txt-block {
  padding: 6rem 0;
  background-color: #f9fafa;
}

.deco-right {
  background-image: url(../images/deco-iso.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top right;
}

.info-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}

.info-container img {
  width: 75px;
  height: 75px;
}

.route {
  padding: 11rem 0;
  background: url(../images/bg-recorrido.svg) #f9fafa;
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.route-items-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
}

.route-item {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 250px;
  position: relative;
  z-index: 1;
}

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

.route-item img {
  width: 78px;
  height: 78px;
  transition: 0.3s;
}

.route-items-container::after {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #f9fafada;
  position: absolute;
  left: 0;
  right: 0;
  top: 2.4rem;
  margin: auto;
  z-index: 0;
}

.txt-deco {
  background: url(../images/deco-left.svg) #f9fafa;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 300px bottom;
  padding: 10rem 0;
}

.next-visit {
  background-color: #f6f6f6;
  padding: 2rem 1.4rem;
  border-left: 8px solid #ebc600;
}

.gallery {
  padding: 2rem 0 1rem 0;
}

#galleryCarousel .f-carousel__slide {
  width: 45%;
  padding: 0.4rem;
  position: relative;
}

#galleryCarousel .f-carousel__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 35px;
}

.gallery-deco-left {
  width: 150px;
  height: 150px;
  background-color: #fcd400;
  position: absolute;
  left: -75px;
  z-index: 5;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  top: 0;
  bottom: 0;
  margin: auto;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.8rem;
}

.counter-text {
  margin-bottom: 0.4rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/* Visitantes */
.actions-container {
  position: relative;
  height: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
}

.actions-container-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 1rem;
}

.actions-show {
  text-align: center;
  transform: translateY(50px);
  transition: 0.5s;
}

.actions-hide-content {
  text-align: center;
  color: white;
  width: 80%;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  transform: translateY(350px);
}

.actions-container:hover .actions-hide-content {
  transform: translateY(0px);
}

.actions-container:hover .actions-show {
  transform: translateY(0px);
}

.actions-container:hover .actions-container-bg {
  transform: scale(1.1);
}

.actions-container-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
    transition: 0.8s;
}

.testimonials {
    padding: 12rem 0 6rem 0;
    background: #ffcf00;
    position: relative; 
}

.testimonials::before {
    content: "";
    width: 65%;
    height: 88%;
    background-color: white;
    position: absolute;
    right: 0;
    bottom: 0;
}
#testimonialsCarousel {
  width: 1200px;
}

#testimonialsCarousel .f-carousel__slide {
  width: 40%;
  padding: 0.4rem;
  position: relative;
}

.testimonial-container {
  background-color: #F8F7FA;
  padding: 1.2rem;
         min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: baseline;
}

.testimonial-stars {
  height: 18px;
  width: auto;
  margin: .8rem 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 66px;
  height: 66px;
}

.about-deco-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: auto;
}

/* Seguridad */
.txt-block ul {
  padding-left: 0;
}

.txt-block ul li {
  margin-bottom: 0.8rem;
  list-style: none;
  padding-left: 1.2rem;
}

.txt-block ul li::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  color: #ffcf00;
  position: absolute;
  left: 0.8rem;
}

.accordion-divider {
  width: 100%;
  height: 1px;
  background-color: #43474629;
}

.accordion .card {
  border-radius: 0px !important;
  border: 0;
  margin-bottom: 0;
  background-color: transparent;
  transition: 0.3s;
}

.accordion .card-header {
  background-color: transparent;
  padding: 0;
  border: 0;
}

.accordion .card-header .btn {
  text-transform: none;
  font-size: 20px;
  font-weight: 600;
  font-family: "Arpona";
  text-transform: uppercase;
  padding: 1.2rem 3.2rem 1.2rem 0.2rem;
  width: 100%;
  color: #434746;
  transition: 0.3s;
  justify-content: start;
  color: #434746;
}

.accordion .card-header .btn.collapsed {
  color: #434746;
}

.accordion .btn:focus {
  box-shadow: none;
}

.accordion .card-body {
  padding-top: 0;
  background-color: #f9fafa;
}

.accordion button::after {
  content: "\e931";
  font-family: "Material Symbols Outlined";
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  transition: 0.3s;
  color: #ffcf00;
}

.accordion button.collapsed::after {
  content: "\e145";
  font-family: "Material Symbols Outlined";
  color: #000000;
}

/* Preguntas frecuentes */
.txt-normal {
  text-transform: none !important;
}

.location {
    background:    url("../images/bg-como-llegar.svg") #fff;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 12rem 0 4rem 0;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  background:
    url("../images/deco-footer-left.svg"),
    url("../images/deco-footer-right.svg") #3b3d3c;
  background-size: contain;
  background-repeat: no-repeat;
  background-position:
    300px,
    bottom right;
  color: rgba(255, 255, 255, 0.855);
  padding: 4rem 0 0 0;
  position: relative;
  z-index: 1;
  border-top: 10px solid #ffcf00;
}

.footer-logo {
  max-width: 320px;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  list-style: none;
  margin: 8px 0px;
}

footer ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.855);
  transition: 0.3s;
}

footer ul li a:hover,
footer a:hover {
  color: #ffcf00;
}

footer ul li p,
footer ul li a {
  display: flex;
  align-items: start;
}

.copy-end {
  background-color: #343434;
  margin-top: 4rem;
}

.copy-end p {
  font-size: 14px;
  color: #959595;
}

.copy-end img {
  max-width: 20px;
}

.relative {
  position: relative;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #ff959f;
}

.invalid-feedback {
  color: #ff959f;
}

#response {
  background: #2ec770;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 25px 10px;
  position: absolute;
  top: 0px;
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #ffffffc7 url(../images/loading.gif) center no-repeat;
}

.loading {
  display: none;
}

/*////////////////////// RESPONSIVE //////////////////*/
@media (max-width: 1440px) {
  #galleryCarousel .f-carousel__nav {
    padding-right: 15px;
  }

  .header-logo {
    width: 90%;
    height: auto;
  }

  .nav-link {
    font-size: 16px;
    margin: 0px !important;
  }
}

@media (max-width: 1360px) {
  #galleryCarousel .f-carousel__nav {
    padding-right: 15px;
  }
  .container{
    max-width: 930px !important;
  }
}

@media (max-width: 1240px) {
  .main-txt {
    max-width: 700px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .main-txt {
    max-width: 600px;
  }

  .main h1 {
    font-size: 50px;
  }

  .route {
    padding: 11rem 0;
    background: url(../images/bg-recorrido.svg) #f9fafa;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .route-items-container {
    flex-direction: column;
    lign-items: baseline;
    gap: 2rem;
  }

  .route-item {
    flex-direction: row;
    max-width: 100%;
    text-align: left;
  }

  .route-items-container::after {
    content: "";
    width: 1px;
    height: 90%;
    left: 2.5rem;
    right: auto;
    top: 2.4rem;
  }

  #galleryCarousel .f-carousel__slide img {
    height: 320px;
  }

    .testimonials::before {
    content: "";
    width: 99%;
    height: 88%;
    background-color: white;
    position: absolute;
    right: 0;
    bottom: 0;
}
}

@media (max-width: 768px) {
  .padding-left {
    padding-left: 0 !important;
  }

  .navbar {
    width: 100%;
    height: auto;
    position: fixed !important;
    padding: 1rem;
    top: 0;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }

  .header-logo {
    width: auto;
    height: 72px;
  }

  .main-txt {
    left: 0;
  }

  .section-header {
    padding: 12rem 0 6rem 0;
  }

  .txt-block {
    padding: 4rem 0;
  }

  .contact-header {
    margin-top: 10rem;
  }

  .txt-deco {
    background: url(../images/deco-left.svg) #f9fafa;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding: 8rem 0;
  }

  #galleryCarousel .f-carousel__slide {
    width: 60%;
  }

}

@media (max-width: 525px) {
  .main-txt {
  top: -75px;
  }
  .main-section {
    padding: 4rem 0 2rem 0;
  }

  .main-title {
    font-size: 32px;
  }

  .main-title .main-title-lg {
    font-size: 34px;
  }
  .text-under::before {
    bottom: 9px;
  }

  #galleryCarousel .f-carousel__slide {
    width: 90%;
  }

  .gallery-deco-left {
    width: 120px;
    height: 120px;
    left: 0;
  }

  #testimonialsCarousel {
    width: 100%;
}

  #testimonialsCarousel .f-carousel__slide {
    width: 90%;
    padding: 0.4rem;
    position: relative;
}
}

@media (max-width: 375px) {
  .header-logo {
    height: 60px;
  }
}

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

.grecaptcha-badge {
  opacity: 0 !important;
}
