@charset "UTF-8";
@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.scss";
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
*,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
  font-family: "Poppins", sans-serif;
  line-height: normal;
  color: #20546f;
}

html {
  scroll-behavior: smooth;
}

.btn-def {
  display: table;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 0px;
  padding: 12px 30px;
}
.btn-def span {
  position: relative;
  color: #fff;
}
.btn-def::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  height: 100%;
  width: 120%;
  background: #fff;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.btn-def:hover::before {
  transform: translate3d(100%, 0, 0);
}

#mainNav {
  position: absolute;
  width: 100%;
  z-index: 999;
  background-color: #0e2f43;
}
#mainNav.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  background-color: #0e2f43;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
#mainNav .navbar-toggler:focus {
  box-shadow: none;
}

body.has-fixed-nav {
  padding-top: 120px;
}

.offcanvas-top {
  background: #f8f9fa;
  height: 100% !important;
}
.offcanvas-top .offcanvas-header {
  border-bottom: 1px solid #dee2e6;
}
.offcanvas-top .offcanvas-header img {
  max-width: 160px;
}
.offcanvas-top .offcanvas-body {
  padding: 30px 0;
}
.offcanvas-top .offcanvas-body .nav-link {
  color: #20546f;
  font-size: 1.3rem;
  padding: 15px 15px;
  font-weight: 700;
  border-bottom: 1px solid #0e2f43;
}
.offcanvas-top .offcanvas-body .nav-link:hover {
  color: #347ba0;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  max-width: 200px;
  height: auto;
  width: 200px;
}
.navbar-brand img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .navbar-brand img {
    width: 200px;
  }
}

.nav-link[data-bs-dismiss=offcanvas] {
  cursor: pointer;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-desktop ul {
  flex: 0 0 80%;
}
.nav-desktop .nav-item .nav-link {
  color: #fff;
  font-weight: 600;
  padding: 8px 15px;
  transition: 0.5s ease-in-out;
}
.nav-desktop .nav-item .nav-link:hover {
  color: #347ba0;
}
.nav-desktop .content-button {
  flex: 0 0 20%;
}
.nav-desktop .content-button .custom-nav-button .btn--red {
  background-color: #fff;
  color: #fff;
  margin: 0 0 0 auto;
  border: 1px solid #0e2f43;
}
.nav-desktop .content-button .custom-nav-button .btn--red::before {
  background: #0e2f43;
}
.nav-desktop .content-button .custom-nav-button .btn--red:hover span {
  color: #0e2f43;
}

.overlayVideo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlayVideo.show {
  opacity: 1;
  pointer-events: auto;
}
.overlayVideo .popup {
  background: transparent;
  padding: 1rem;
  border-radius: 8px;
  position: relative;
  max-width: 1000px;
  width: 100%;
  box-shadow: none;
}
.overlayVideo .popup .close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}
.overlayVideo .popup .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.overlayVideo .popup .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============ Banner / Hero Slider ============ */
#home.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
#home .hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* debajo del overlay y contenido */
}
#home .hero-swiper .swiper-wrapper {
  height: 100%;
}
#home .hero-swiper .swiper-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* ❗ No toques opacity aquí; Swiper fade lo maneja con estilos inline */
  /* Ken Burns en pseudo-elemento para no chocar con Swiper */
}
#home .hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: no-repeat;
  transform: scale(1.02);
  will-change: transform;
}
#home .hero-swiper {
  /* Activo: dispara la animación del pseudo-elemento */
}
#home .hero-swiper .swiper-slide.swiper-slide-active::before,
#home .hero-swiper .swiper-slide.swiper-slide-duplicate-active::before {
  animation: kb-zoom 12s ease-in-out forwards;
}
#home .hero-swiper {
  /* Paneo sutil cambiando el origin (opcional) */
}
#home .hero-swiper .swiper-slide:nth-child(2n)::before {
  transform-origin: 55% 45%;
}
#home .hero-swiper .swiper-slide:nth-child(3n)::before {
  transform-origin: 45% 55%;
}
#home .hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-bottom: 60px;
  min-height: 100vh;
}
#home.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  /* encima del slider, debajo del overlay */
}
#home {
  /* ======= contenido original (ajustado) ======= */
}
#home .content .titleBanner {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 65px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #home .content .titleBanner {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 28px;
  }
  #home .content .titleBanner br {
    display: none;
  }
}
#home .content .col-sponsor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #home .content .col-sponsor {
    flex-direction: column;
  }
}
#home .content .col-sponsor .textBox {
  flex: 0 0 70%;
}
@media screen and (max-width: 768px) {
  #home .content .col-sponsor .textBox {
    flex: 0 0 auto;
  }
}
#home .content .col-sponsor .textBox .subtitleBanner {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #home .content .col-sponsor .textBox .subtitleBanner {
    font-size: 18px;
  }
}
#home .content .col-sponsor .textBox .text {
  color: #fff;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #home .content .col-sponsor .textBox .text {
    font-size: 14px;
  }
}
#home .content .col-sponsor .logoBox {
  flex: 0 0 auto;
}
#home .content .col-sponsor .logoBox img {
  max-width: 250px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #home .content .col-sponsor .logoBox img {
    max-width: 150px;
  }
}
#home .content .colButtons {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #home .content .colButtons {
    flex-direction: column;
  }
}
#home .content .colButtons .btn-def {
  background-color: #fff;
  color: #fff;
  margin-top: 25px;
  font-size: 20px;
  padding: 12px 50px;
  font-weight: 500;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #home .content .colButtons .btn-def {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
  }
}
#home .content .colButtons .btn-def.btn--1:before {
  background-color: #0e2f43;
  border: 1px solid #0e2f43;
}
#home .content .colButtons .btn-def.btn--2:before {
  background-color: #20546f;
  border: 1px solid #20546f;
}
#home .content .colButtons .btn-def.btn--3:before {
  background-color: #347ba0;
  border: 1px solid #347ba0;
}
#home .content .colButtons .btn-def::before {
  background: #fff;
}
#home .content .colButtons .btn-def:hover span {
  color: #0e2f43;
}

/* Keyframes del zoom */
@keyframes kb-zoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.12);
  }
}
/* Respeta accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-swiper .swiper-slide {
    animation: none !important;
    transform: none !important;
  }
}
/* ==========================
   Marketplace CTA
========================== */
/* =============== Marketplace CTA (PRO) =============== */
.tcx-marketplace-cta {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  background: #f6f8fa;
}
.tcx-marketplace-cta::before, .tcx-marketplace-cta::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(52, 123, 160, 0.22), transparent 60%);
  transform: translate3d(0, 0, 0);
  filter: blur(0px);
}
.tcx-marketplace-cta::after {
  background: radial-gradient(closest-side, rgba(32, 84, 111, 0.16), transparent 60%);
  inset: -35%;
  transform: translate(25%, 10%);
}
.tcx-marketplace-cta .container {
  position: relative;
  z-index: 1;
}

/* Head */
.mp-cta__kicker {
  color: rgba(14, 47, 67, 0.75);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mp-cta__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

.mp-cta__brand {
  color: #0e2f43;
}

.mp-cta__accent {
  color: #F26925;
}

/* Animated underline (highlight line) */
.mp-cta__underline {
  width: min(520px, 92%);
  height: 10px;
  margin: 14px auto 0;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: rgba(14, 47, 67, 0.08);
}
.mp-cta__underline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(52, 123, 160, 0), rgba(52, 123, 160, 0.75), rgba(32, 84, 111, 0.75), rgba(52, 123, 160, 0));
  transform: translateX(-60%);
  animation: mpLine 2.6s cubic-bezier(0.3, 1, 0.8, 1) infinite;
}

@keyframes mpLine {
  0% {
    transform: translateX(-70%);
    opacity: 0.2;
  }
  40% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(70%);
    opacity: 0.2;
  }
}
/* Grid */
.mp-cta__grid {
  margin: 34px auto 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 992px) {
  .mp-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 1040px;
  }
}

/* Glass cards */
.mp-card {
  position: relative;
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(14, 47, 67, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.3, 1, 0.8, 1), box-shadow 0.35s cubic-bezier(0.3, 1, 0.8, 1), border-color 0.35s cubic-bezier(0.3, 1, 0.8, 1);
}
.mp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 123, 160, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}
.mp-card .mp-card__top {
  margin-bottom: 10px;
}
.mp-card .mp-card__title {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  color: #0e2f43;
  font-weight: 800;
  margin: 0 0 10px;
}
.mp-card .mp-card__title .is-emph {
  color: #347ba0;
}
.mp-card .mp-card__text {
  margin: 0;
  color: rgba(14, 47, 67, 0.78);
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 48ch;
}

/* Pills */
.mp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(14, 47, 67, 0.1);
  background: rgba(255, 255, 255, 0.6);
}

.mp-pill--creators {
  color: #0e2f43;
  border-color: rgba(14, 47, 67, 0.12);
}

.mp-pill--suppliers {
  color: #F26925;
  border-color: rgba(242, 105, 37, 0.22);
}

/* Footer */
.mp-cta__tagline {
  font-weight: 600;
  color: rgba(14, 47, 67, 0.85);
  font-size: 18px;
  letter-spacing: 0.01em;
}

.mp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mp-btn {
  font-size: 16px;
  border-radius: 12px;
  padding: 12px 22px;
  transition: 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.mp-btn--primary {
  background: #0e2f43;
  border: 1px solid #0e2f43;
}
.mp-btn--primary:hover {
  background: #20546f;
  border-color: #20546f;
  transform: translateY(-1px);
}
.mp-btn--primary:hover span {
  color: #fff !important;
}
.mp-btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(14, 47, 67, 0.18);
  color: #0e2f43;
}
.mp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(52, 123, 160, 0.35);
  transform: translateY(-1px);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mp-cta__underline::before {
    animation: none;
  }
  .mp-card,
  .mp-btn {
    transition: none;
  }
}
#about-the-summit {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding: 70px 0;
}
#about-the-summit h2 {
  color: #0e2f43;
  margin-bottom: 10px;
}
#about-the-summit h3 {
  color: #0e2f43;
  margin-bottom: 10px;
}
#about-the-summit .text {
  font-size: 16px;
  font-weight: 400;
  color: #0e2f43;
  margin-bottom: 20px;
}
#about-the-summit .text:last-child {
  margin-bottom: 0;
}
#about-the-summit .tcx-list li {
  color: #0e2f43;
}
#about-the-summit .tcx-list li strong {
  color: #20546f;
}
@media screen and (max-width: 768px) {
  #about-the-summit .img-right {
    margin-top: 50px;
  }
}

.tcx-partnership {
  background: #0e2f43;
}
.tcx-partnership .logo_partner {
  margin: 20px auto 0;
  max-width: 250px;
  display: table;
}
.tcx-partnership .tcx-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tcx-partnership .tcx-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.tcx-partnership .tcx-stat .tcx-number {
  display: block;
  font-weight: 900;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  color: #fff;
  line-height: 1.1;
}
.tcx-partnership .tcx-stat .tcx-number.is-done {
  animation: tcx-pop 0.35s ease-out 1;
}
.tcx-partnership .tcx-stat .tcx-label {
  margin-top: 0.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
@keyframes tcx-pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  }
  100% {
    transform: scale(1);
    text-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tcx-partnership .tcx-stat,
  .tcx-partnership .tcx-number {
    transition: none !important;
    animation: none !important;
  }
}

/* ===========================================
   TravelCreatorsX Sections (Scoped styles)
   =========================================== */
.tcx-sections {
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.tcx-sections .tcx-kicker {
  color: #347ba0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tcx-sections h2 {
  color: #0e2f43;
  line-height: 1.25;
}
.tcx-sections p.lead {
  color: rgba(14, 47, 67, 0.9);
  font-weight: 400;
  font-size: 16px;
}
.tcx-sections {
  /* ---- Bullets ---- */
}
.tcx-sections .tcx-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tcx-sections .tcx-bullets li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  color: rgba(14, 47, 67, 0.9);
}
.tcx-sections .tcx-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #20546f, #347ba0);
  box-shadow: 0 0 0 3px rgba(52, 123, 160, 0.15);
}
.tcx-sections {
  /* ---- Buttons ---- */
}
.tcx-sections .btn-def {
  border: 1px solid #0e2f43;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .tcx-sections .btn-def {
    text-align: center;
    font-size: 16px;
  }
}
.tcx-sections .btn-def::before {
  background-color: #0e2f43;
}
.tcx-sections .btn-def:hover span {
  color: #0e2f43;
}
.tcx-sections {
  /* ---- Images ---- */
}
.tcx-sections .tcx-figure img {
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(14, 47, 67, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.tcx-sections .tcx-figure img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 40px rgba(14, 47, 67, 0.25);
}
.tcx-sections {
  /* ---- Background alternation ---- */
}
.tcx-sections:nth-of-type(even) {
  background: #f8f9fa;
}
.tcx-sections {
  /* WOW/Animate.css smoothing (optional) */
}
.tcx-sections .wow.animate__animated {
  animation-duration: 1.1s;
  animation-timing-function: ease-out;
}
.tcx-sections {
  /* Responsive fine-tuning */
}
@media (max-width: 768px) {
  .tcx-sections .tcx-block {
    text-align: center;
  }
  .tcx-sections .tcx-block .tcx-figure {
    margin-bottom: 1.5rem;
  }
  .tcx-sections .tcx-block .tcx-bullets li {
    text-align: left;
  }
}

/* ===========================================
   Plans (Scoped styles)
   =========================================== */
.pricing-plans {
  overflow-x: clip;
}
.pricing-plans h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.pricing-plans .plan {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(14, 47, 67, 0.1);
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(14, 47, 67, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-plans .plan .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.75rem;
  flex: 1;
}
.pricing-plans .plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(14, 47, 67, 0.14);
  border-color: rgba(14, 47, 67, 0.2);
}
.pricing-plans .seg-pill {
  align-self: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(52, 123, 160, 0.12);
  color: #347ba0;
  border: 1px solid rgba(52, 123, 160, 0.25);
}
.pricing-plans .plan-title {
  margin: 0.25rem 0 0.35rem;
  color: #0e2f43;
  font-weight: 800;
  text-align: center;
}
.pricing-plans .price-block {
  color: #0e2f43;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.pricing-plans .price-block .currency {
  font-size: 1.1rem;
  vertical-align: top;
  margin-right: 0.1rem;
  opacity: 0.9;
}
.pricing-plans .price-block .amount {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}
.pricing-plans .price-block .decimals {
  font-size: 0.9rem;
  vertical-align: top;
  margin-left: 0.04rem;
  opacity: 0.9;
}
.pricing-plans .price-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: #347ba0;
  background: rgba(52, 123, 160, 0.1);
  border: 1px dashed rgba(52, 123, 160, 0.35);
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
}
.pricing-plans .soft-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 47, 67, 0.06), rgba(14, 47, 67, 0.12), rgba(14, 47, 67, 0.06));
  margin: 0.25rem 0 0.5rem;
}
.pricing-plans .ideal {
  color: rgba(14, 47, 67, 0.88);
}
.pricing-plans .features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.pricing-plans .features li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(14, 47, 67, 0.92);
}
.pricing-plans .features .dot {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #347ba0 0%, #20546f 70%);
  box-shadow: 0 0 0 3px rgba(52, 123, 160, 0.15);
}
.pricing-plans .sub-title {
  color: #0e2f43;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.pricing-plans {
  /* ---- Buttons ---- */
}
.pricing-plans .btn-def {
  border: 1px solid #0e2f43;
  border-radius: 10px;
  margin-top: auto !important;
}
@media screen and (max-width: 768px) {
  .pricing-plans .btn-def {
    text-align: center;
    font-size: 16px;
  }
}
.pricing-plans .btn-def::before {
  background-color: #0e2f43;
}
.pricing-plans .btn-def:hover span {
  color: #0e2f43;
}
.pricing-plans {
  /* Swiper */
}
.pricing-plans .plans-swiper {
  padding-bottom: 3.25rem;
  overflow: hidden !important;
  padding-inline: clamp(8px, 2vw, 16px);
}
.pricing-plans .swiper-wrapper {
  will-change: transform;
}
.pricing-plans .swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
  will-change: transform;
}
.pricing-plans {
  /* Flechas externas (hermanas del swiper) */
}
.pricing-plans .plans-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(14, 47, 67, 0.2);
  background: #fff;
  box-shadow: 0 6px 18px rgba(14, 47, 67, 0.1);
  color: #0e2f43;
  /* íconos con CSS puro */
}
.pricing-plans .plans-nav::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  margin: auto;
  transform: rotate(45deg);
}
.pricing-plans .plans-nav.prev::after {
  transform: rotate(-135deg);
}
.pricing-plans .plans-nav.next::after {
  transform: rotate(45deg);
}
.pricing-plans {
  /* offsets NEGATIVOS desde el wrapper (están “fuera”) */
}
.pricing-plans .plans-nav.prev {
  left: -55px;
}
.pricing-plans .plans-nav.next {
  right: -55px;
}
.pricing-plans {
  /* estado disabled bonito */
}
.pricing-plans .plans-nav.swiper-button-disabled {
  opacity: 0.35;
  box-shadow: none;
  cursor: default;
}
.pricing-plans {
  /* En móvil, flechas más pequeñas y menos fuera */
}
@media (max-width: 575.98px) {
  .pricing-plans .swiper-button-prev,
  .pricing-plans .swiper-button-next {
    width: 38px;
    height: 38px;
  }
  .pricing-plans .swiper-button-prev {
    left: -12px;
  }
  .pricing-plans .swiper-button-next {
    right: -12px;
  }
}
@media (min-width: 992px) {
  .pricing-plans .plan {
    min-height: 820px;
  }
}
@media (max-width: 991.98px) {
  .pricing-plans .btn-def {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .pricing-plans .seg-pill {
    font-size: 0.78rem;
  }
  .pricing-plans .plan {
    border-radius: 14px;
  }
}

/* ============ Partnership Carousel ============ */
#partnership .partnership-header .u-accent {
  color: #347ba0;
}
#partnership .partnership-wrap {
  padding: 0 55px;
  /* espacio para flechas laterales */
}
@media screen and (max-width: 768px) {
  #partnership .partnership-wrap {
    padding: 0 10px;
  }
}
#partnership .partner-swiper {
  width: 100%;
  overflow: hidden;
}
#partnership {
  /* Flechas laterales */
}
#partnership .partner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #0e2f43;
  display: grid;
  place-items: center;
  z-index: 5;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease-in-out;
}
#partnership .partner-nav span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}
#partnership .partner-nav:hover {
  transform: translateY(-50%) scale(1.05);
}
#partnership .partner-nav.partner-nav--prev {
  left: 0;
}
#partnership .partner-nav.partner-nav--next {
  right: 0;
}
@media screen and (max-width: 768px) {
  #partnership .partner-nav {
    display: none;
    /* en móvil mejor usar swipe */
  }
}
#partnership {
  /* Tarjetas */
}
#partnership .partner-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}
#partnership .partner-card .partner-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}
#partnership .partner-card .partner-social a {
  position: relative;
  z-index: 3;
}
#partnership .partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
#partnership .partner-media {
  position: relative;
  aspect-ratio: 1/1;
  /* cuadrado como tu ejemplo */
}
#partnership .partner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#partnership .partner-media .partner-badge {
  position: absolute;
  left: 0;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 10px;
  min-width: 170px;
}
#partnership .partner-media .partner-badge .partner-name {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}
#partnership .partner-media .partner-badge .partner-role {
  display: inline-block;
  margin-top: 6px;
  background: #347ba0;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.7px;
  padding: 4px 8px;
  border-radius: 4px;
}
#partnership .partner-body {
  padding: 14px 16px 16px;
}
#partnership .partner-text {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(14, 47, 67, 0.75);
  margin: 0 0 12px;
}
#partnership .partner-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
#partnership .partner-social .social-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(14, 47, 67, 0.18);
  display: grid;
  place-items: center;
  color: #0e2f43;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
}
#partnership .partner-social .social-ico:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 123, 160, 0.55);
  color: #347ba0;
}
#partnership {
  /* Ajustes responsive */
}
@media screen and (max-width: 768px) {
  #partnership .partner-text {
    font-size: 13px;
  }
}

/* =============== Press / As Seen In =============== */
#press.press .press-card {
  --radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#press.press .press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.08);
}
#press.press .press-card .press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
  margin: 4px 0 14px;
}
#press.press .press-card .press-logo img {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: filter 0.25s ease, transform 0.25s ease;
}
#press.press .press-card:hover .press-logo img {
  filter: grayscale(0);
  transform: scale(1.02);
}
#press.press .press-card .press-title {
  font-size: clamp(18px, 1.2vw, 20px);
  line-height: 1.3;
  margin: 0 0 8px;
}
#press.press .press-card .press-title a {
  color: #153b52;
  text-decoration: none;
}
#press.press .press-card .press-title a:hover {
  text-decoration: underline;
}
#press.press .press-card .press-excerpt {
  color: #47606e;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#press.press .press-card .press-meta {
  color: #7b8c96;
  font-size: 13px;
  margin-top: auto;
}
#press.press .press-card .press-meta .source {
  font-weight: 600;
  letter-spacing: 0.2px;
}
#press.press .press-card {
  /* ---- Buttons ---- */
}
#press.press .press-card .btn-def {
  border: 1px solid #0e2f43;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 10px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  #press.press .press-card .btn-def {
    text-align: center;
    font-size: 14px;
  }
}
#press.press .press-card .btn-def::before {
  background-color: #0e2f43;
}
#press.press .press-card .btn-def:hover span {
  color: #0e2f43;
}
@media (max-width: 764px) {
  #press.press .press-card .mt-auto {
    margin: auto !important;
  }
}

/* Opción: fondo sutil a la sección */
#press {
  padding: clamp(40px, 6vw, 80px) 0;
}

/* ===========================================
   Contact (Scoped styles)
   =========================================== */
.apply-form {
  background: #f8fafb;
}
.apply-form .form-card {
  max-width: 800px;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 28px rgba(14, 47, 67, 0.08);
}
.apply-form .form-label {
  font-weight: 600;
  color: #20546f;
  margin-bottom: 0.4rem;
}
.apply-form .form-control,
.apply-form .form-check-input {
  border-radius: 10px;
  border: 1px solid rgba(32, 84, 111, 0.25);
}
.apply-form .form-control:focus,
.apply-form .form-check-input:focus {
  border-color: #347ba0;
  box-shadow: 0 0 0 0.2rem rgba(52, 123, 160, 0.15);
}
.apply-form .form-check-input:checked {
  background-color: #347ba0;
  border-color: #347ba0;
}
.apply-form hr {
  opacity: 0.1;
  border-top: 1px solid rgba(32, 84, 111, 0.1);
}
.apply-form {
  /* ---- Buttons ---- */
}
.apply-form .btn-def {
  border: 1px solid #0e2f43;
  border-radius: 10px;
  margin-top: auto !important;
}
@media screen and (max-width: 768px) {
  .apply-form .btn-def {
    text-align: center;
    font-size: 16px;
  }
}
.apply-form .btn-def::before {
  background-color: #0e2f43;
}
.apply-form .btn-def:hover span {
  color: #0e2f43;
}

/* ===========================================
   Footer (Scoped styles)
   =========================================== */
.site-footer {
  background: #0e2f43;
  color: #fff;
  position: relative;
}
.site-footer .footer-title {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8f1f6;
  margin-bottom: 0.75rem;
}
.site-footer .brand img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .site-footer .brand img {
    max-width: 170px;
  }
}
.site-footer .logo-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20546f, #347ba0);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.site-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}
.site-footer .footer-nav a {
  color: #e4eef3;
  text-decoration: none;
}
.site-footer .footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer #year {
  color: #fff;
}
.site-footer .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.site-footer .social-btn i {
  font-size: 1.1rem;
  color: #fff;
}
.site-footer .social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #347ba0;
}
.site-footer .cont-newsletter a {
  color: #fff;
  text-decoration: none;
}
.site-footer .cont-newsletter strong {
  color: #fff;
}
.site-footer .newsletter .form-control {
  border-radius: 10px 0 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.site-footer .newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .newsletter .form-control:focus {
  border-color: #347ba0;
  box-shadow: 0 0 0 0.2rem rgba(52, 123, 160, 0.25);
}
.site-footer .newsletter .btn-def {
  border-radius: 0 10px 10px 0;
  border-color: #fff;
}
.site-footer .newsletter .btn-def::before {
  background-color: #fff;
}
.site-footer .newsletter .btn-def span {
  color: #0e2f43;
}
.site-footer .newsletter .btn-def:hover span {
  color: #0e2f43;
}
.site-footer .footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}
.site-footer .legal a {
  color: #e4eef3;
  text-decoration: none;
}
.site-footer .legal a:hover {
  text-decoration: underline;
  color: #fff;
}
.site-footer {
  /* Back to top */
}
.site-footer .to-top {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.site-footer .to-top svg {
  width: 18px;
  height: 18px;
}
.site-footer .to-top:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 575.98px) {
  .site-footer .newsletter .form-control {
    border-radius: 10px;
    margin-bottom: 0.5rem;
  }
  .site-footer .newsletter .btn-def {
    border-radius: 10px;
    width: 100%;
  }
  .site-footer .to-top {
    right: 12px;
    bottom: 12px;
  }
}

.socialDesktop {
  z-index: 99;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}
@media screen and (max-width: 768px) {
  .socialDesktop {
    display: none;
  }
}
.socialDesktop a {
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  border: 1px solid #25D366;
  background-color: #25D366;
  transition: 0.5s ease-in-out;
}
.socialDesktop a i {
  position: absolute;
  padding: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
}

.socialMobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .socialMobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .socialMobile a {
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    display: table;
    margin: 0 auto;
  }
  .socialMobile a i {
    margin-left: 10px;
  }
}

/* ============ Partner Profile (better proportions) ============ */
#partner-profile {
  padding: 150px 0 70px;
}
#partner-profile .partner-hero__name {
  font-size: 38px;
  font-weight: 600;
  color: #0e2f43;
  margin: 0 0 6px;
}
@media screen and (max-width: 768px) {
  #partner-profile .partner-hero__name {
    font-size: 28px;
  }
}
#partner-profile .partner-hero__tagline {
  color: rgba(14, 47, 67, 0.75);
  font-size: 15px;
  margin: 0 0 10px;
}
#partner-profile .partner-hero__photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
}
#partner-profile .partner-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}
#partner-profile .partner-hero__social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
#partner-profile .social-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(14, 47, 67, 0.18);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #0e2f43;
  transition: all 0.5s ease-in-out;
}
#partner-profile .social-ico:hover {
  transform: translateY(-2px);
  color: #347ba0;
  border-color: rgba(52, 123, 160, 0.55);
}
#partner-profile .partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#partner-profile .partner-chips .chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(52, 123, 160, 0.1);
  color: #0e2f43;
}
#partner-profile .partner-chips .chip.chip--muted {
  background: rgba(14, 47, 67, 0.08);
}
#partner-profile .card-lite, #partner-profile .eng-card {
  background: #fff;
  border: 1px solid rgba(14, 47, 67, 0.1);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}
#partner-profile .eng-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 992px) {
  #partner-profile .eng-grid {
    grid-template-columns: 1fr;
  }
}
#partner-profile .eng-card__title {
  font-weight: 600;
  color: #0e2f43;
  font-size: 16px;
  margin: 0 0 10px;
}
#partner-profile .eng-card__meta {
  font-size: 13px;
  color: rgba(14, 47, 67, 0.8);
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
#partner-profile .eng-card__list {
  padding-left: 18px;
  margin: 0 0 10px;
}
#partner-profile .eng-card__list li {
  margin-bottom: 8px;
  color: rgba(14, 47, 67, 0.8);
  line-height: 1.6;
}
#partner-profile .eng-card__why {
  margin: 0;
  font-size: 13px;
  color: rgba(14, 47, 67, 0.85);
}
#partner-profile .partner-side {
  position: sticky;
  top: 110px;
}
@media screen and (max-width: 768px) {
  #partner-profile .partner-side {
    position: static;
    top: auto;
  }
}
#partner-profile .side-facts {
  display: grid;
  gap: 10px;
}
#partner-profile .side-facts__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
}
#partner-profile .side-facts__row .label {
  font-size: 12px;
  color: rgba(14, 47, 67, 0.6);
}
#partner-profile .side-facts__row .value {
  font-size: 12px;
  color: rgba(14, 47, 67, 0.85);
}
#partner-profile .tcx-acc .accordion-button {
  font-weight: 600;
  color: #0e2f43;
}

@media screen and (max-width: 768px) {
  .grecaptcha-badge {
    display: none;
  }
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup */
.popup {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.iframe-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.bcs-section {
  background: #f1f1f1;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}
.bcs-section__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.bcs-section__viewport {
  flex: 1;
  overflow: hidden;
}
.bcs-section__track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s cubic-bezier(0.3, 1, 0.8, 1);
  will-change: transform;
}
.bcs-section__card {
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #454545;
}
.bcs-section__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
}
.bcs-section__card:hover::after {
  background: rgba(0, 0, 0, 0.25);
}
.bcs-section__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
.bcs-section__card:hover img {
  transform: scale(1.04);
}
.bcs-section__arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0e2f43;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.bcs-section__arrow svg {
  width: 20px;
  height: 20px;
}
.bcs-section__arrow:hover {
  background: #347ba0;
}
.bcs-section__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .bcs-section__arrow {
    width: 34px;
    height: 34px;
  }
  .bcs-section__arrow svg {
    width: 16px;
    height: 16px;
  }
}

.bcs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bcs-lightbox.open {
  display: flex;
}
.bcs-lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcs-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  user-select: none;
  transition: opacity 0.3s ease;
}
.bcs-lightbox__img.fade {
  opacity: 0;
}
.bcs-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #20546f;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: 2;
}
.bcs-lightbox__close:hover {
  background: #347ba0;
}
.bcs-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.bcs-lightbox__arrow svg {
  width: 20px;
  height: 20px;
}
.bcs-lightbox__arrow:hover {
  background: #347ba0;
  border-color: #347ba0;
}
.bcs-lightbox__arrow--prev {
  left: -60px;
}
.bcs-lightbox__arrow--next {
  right: -60px;
}
@media (max-width: 575.98px) {
  .bcs-lightbox__arrow--prev {
    left: -8px;
  }
  .bcs-lightbox__arrow--next {
    right: -8px;
  }
}
.bcs-lightbox__counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */
