@import url("../fonts/font-awesome/css/font-awesome.css");
@import url("variables.css");
/* REMINDER: if I change anything on root I must to change it on variables.css too */
/*HEADER************/
body {
  width: 100vw !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
html {
  width: 100vw !important;
}
.scroll-animate-left {
  opacity: 0;
  transform: translateX(-600px);
  transition: all 1s ease-out;
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* NAVBAR******************************* */
/* Sidebar Styling */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  padding: 20px;
  background-color: var(--trd-color);
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  flex-direction: column;
  transition:
    background-color 0.7s ease,
    transform 0.7s ease;
  z-index: 1000;
  overflow: auto;
}

.sidebar.open {
  background-color: var(--accent-color);
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  color: black;
  cursor: pointer;
}

.vertical-text a {
  text-decoration: none;
  transform: rotate(-90deg);
  width: max-content;
  display: flex;
  color: black;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color 100ms ease;
  /* flex-wrap: nowrap; */
}
.vertical-text {
  transform: translateX(-30px);
}
.vertical-text a:hover {
  color: var(--sec-color);
}

.sidebar.open .hamburger,
.sidebar.open .vertical-text a {
  color: white;
}
.sidebar.open .bi-geo-alt-fill {
  fill: #ffffff; /* color rojo */
}

/* .map-icon {
  transform: translateX(-50%);
} */

.map-icon img {
  width: 30px;
  height: 30px;
}

/* Hidden menu */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-90%);
  padding: 30px 40px;
  padding-left: 100px;
  padding-top: 0;
  height: 100%;
  background-color: var(--accent-color);
  transition: transform 0.6s ease;
  z-index: 900;
}

.menu.open {
  transform: translateX(0);
}

.menu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.menu ul li {
  padding: 20px 10px;
  border-bottom: 1px solid white;
  transition: all 0.3s ease;
}

.menu ul li:not(:last-child):hover {
  background-color: var(--fth-color);
  color: var(--accent-color);
}

.menu ul li:not(:last-child):hover a {
  color: var(--accent-color);
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.dropdown .submenu {
  display: none;
  padding-left: 15px;
}

.dropdown .submenu.open {
  display: block; /* Submenús aparecen cuando están abiertos */
}

.subindex-number {
  font-size: 10px;
  font-weight: 100;
  align-self: center;
}

.nav-logo {
  display: none;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .sidebar {
    width: 70px;
  }
  .nav-logo {
    display: block;
  }
  .map-icon,
  .vertical-text {
    display: none;
  }
  .vertical-text a {
    transform: rotate(0deg);
  }
  .menu {
    transform: translate(-100%);
    padding: 30px;
    padding-top: 80px;
  }
  .sidebar.open {
    background-color: var(--trd-color);
  }
  .sidebar.open .hamburger {
    color: black;
  }
}
/* NAVBAR******************************* */

/* HERO SECTION**********************************  */
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Images Slideshow */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.bg-image.active {
  opacity: 1;
}

/* Hero Content */
.hero-content {
  text-align: center;
  z-index: 10;
  color: white;
}

.logo h1 {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.logo p {
  font-size: 20px;
  letter-spacing: 8px;
  margin-top: 0;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #c0392b;
}

/* Services Bar */
.services-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--trd-color);
  padding: 15px 0;
  overflow: hidden;
  z-index: 15;
  border-bottom: 1px solid var(--sec-color);
}

.services-track {
  display: flex;
  width: max-content;
  animation: scroll-left 80s linear infinite;
}

.service-item a {
  padding: 0 120px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sec-color);
  white-space: nowrap;
  letter-spacing: 4px;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 50px;
    letter-spacing: 8px;
  }

  .logo p {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .service-item {
    font-size: 12px;
    padding: 0 20px;
  }
}
/* HERO SECTION**********************************  */

.list-items1 {
  padding: 0;
  width: 80%;
}

.list-items1 li {
  list-style: none;
  padding: 0;
  padding: 20px 5px;
  border-bottom: 1px solid black;
}

.list-items1 li a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-items1 li span {
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 2.9px;
  color: rgb(31, 31, 31);
  transition: 180ms ease-in-out;
}

.list-items1 li img {
  width: 15px;
  transform: rotate(-45deg);
  transition: 180ms ease-in-out;
}

.list-items1 li:hover img {
  transform: rotate(0);
}

.list-items1 li:hover span {
  color: var(--sec-color);
}

.general-box {
  position: absolute;
  padding: 30px 21px 30px 23px;
  top: 35px;
  left: 35px;
  width: 40%;
}
.general-box h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 2.8px;
}
.general-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 1.4px;
  margin-top: 20px;
}
.general-box.box1 {
  background-color: #c7d5d5;
  left: 100px;
}
.general-box.box2 {
  background-color: var(--sec-color);
}
.general-box.box3 {
  background-color: #0b0b0b;
}

#inner-hero p {
  font-size: 36px;
  font-weight: 300;
  line-height: 54.18px;
  letter-spacing: 0.72px;
  color: #212121;
}
#inner-hero h4 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #000000;
}

#inner-hero {
  max-height: 105vh;
  overflow: hidden;
}

.inner-logo {
  position: absolute;
  top: 30px;
  right: 30px;
}

.service-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 60px 40px;
  transition: background-color 100ms ease-in-out;
}
.service-box:hover {
  background-color: var(--fth-color);
}

.service-box p {
  font-size: 12px;
  font-weight: 300;
  line-height: 16.26px;
  letter-spacing: 0.66px;
  color: #212121;
}
.service-box h4 {
  font-family: var(--subtitle-font), Sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.48px;
  color: #212121;
}

.blog-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 105vh;
  display: flex;
  align-items: end;
}

.cus-nav-container {
  margin: 0 auto;
  margin-top: -10px;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cus-logo {
  width: 400px;
  z-index: 1000;
}

.cus-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: black;
  z-index: 1000;
}

.cus-nav-items {
  list-style: none;
  display: flex;
  gap: 2rem;
  z-index: 10;
  padding-top: 20px;
}

.cus-nav-items li {
  position: relative;
}

.cus-nav-items > li > a {
  text-decoration: none;
  color: rgb(31, 31, 31);
  padding: 0.5rem 0;
  display: block;
  font-size: 12px;
  font-weight: 300;
}

.cus-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444444c6;
  backdrop-filter: blur(10px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  font-weight: 200 !important;
}

.cus-dropdown a {
  padding: 0.35rem 1rem;
  color: white;
  text-decoration: none;
  transition: all 200ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cus-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.551);
  color: black;
}

.cus-nav-items li:hover .cus-dropdown {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Styles --- */
@media (max-width: 997px) {
  .cus-nav-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .cus-menu-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    margin-top: 0.5rem;
  }

  .cus-nav-items {
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .cus-nav-items.cus-open {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
  }

  .cus-nav-items li {
    width: 100%;
  }

  .cus-dropdown {
    position: static;
    background-color: #ffffff;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .cus-dropdown a {
    color: black;
    border-color: rgba(0, 0, 0, 0.186);
  }

  .cus-nav-items li.cus-open .cus-dropdown {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
  .cus-logo:after {
    width: 0px !important;
    height: 0px;
  }
}

.navbar {
  background-color: transparent;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  color: #ffffff;
}
.navbar-brand img {
  width: 350px !important;
}

.navbar-brand span {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
}

.nav-link {
  color: #ffffff !important;
  margin: 0 10px;
  font-size: 14px !important;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b30086 !important;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  border-radius: 2px !important;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  transform: translateY(0);
}

@media (min-width: 992px) {
  /* Hover dropdown only on large screens */
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  nav.navbar.navbar-expand-lg {
    background-color: #181818 !important;
  }
}
/* END HEADER*********** */

section {
  padding: 80px 10px;
}

.cus-logo {
  position: relative;
}
.cus-logo:after {
  content: "";
  position: absolute;
  bottom: 0rem;
  top: -10px;
  right: 0;
  width: 1px;
  height: 105px;
  background: rgb(3, 3, 3);
}

footer {
  background: var(--trd-color) !important;
}

.contactForm-box {
  background-color: white;
  border: 1px solid rgb(75, 75, 75);
  padding: 4rem 2rem;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
} */

#hero .container-fluid {
  z-index: 2;
}

/* .col-lg-5.animated-section img {
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
}

.col-lg-5.animated-section img.animated {
  opacity: 1;
  transform: scale(1);
}
.therapy-section .col-lg-5 img {
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  transform: scale(0.95);
}

.therapy-section .col-lg-5 img.animated {
  opacity: 1;
  transform: scale(1);
} */

.therapy-section .custom-animation {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.therapy-section .testimonial-box {
  animation: floatBox 4s ease-in-out infinite alternate;
}

.therapy-section img {
  transition:
    transform 1s ease,
    opacity 1s ease;
  opacity: 0;
  transform: scale(0.95);
}

.therapy-section img.animated {
  opacity: 1;
  transform: scale(1);
}

/* Keyframes (compartidos) */
@keyframes floatBox {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

#hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  position: relative;
  width: 100%;
  height: 85vh;
  /* top: -40px !important; */
  margin-top: -120px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero {
  background-image: url(z-images/img/88.jpg);
}

#hero.inner {
  height: 70vh;
}

.item1 {
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

.position-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100% !important;
  min-height: 500px;
}
.position-bg-blog {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 70vh;
  top: 0;
  margin-top: -120px;
  padding-top: 120px;
}

.cus-d-flex {
  display: flex;
  align-items: stretch;
}

/* END HEADER*********** */
.main-btns-container {
  margin-bottom: 30px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.logos-container2 {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.logos-container a {
  transition: all 120ms ease-in-out;
}
.logos-container a:hover {
  transform: scale(1.1);
}
.form-margin {
  margin-top: -450px !important;
}
#section1 {
  background-color: white;
  background: linear-gradient(
    0deg,
    rgba(253, 253, 253, 1) 0%,
    rgba(217, 217, 205, 0.8) 50%,
    rgba(252, 252, 252, 1) 100%
  );
}

.bg-image1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 50vw;
  height: 100%;
  background: url(z-images/animations/bg.svg);
}

.custom-play-icon {
  border: 2px solid black;
  border-radius: 50%;
  padding: 1.34rem 1.5rem;
  margin-right: 0.3rem;
}

.main-btns-container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.service-text-wrapper {
  color: white;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute-text {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.podcast-link a {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 17px;
  transition: all 300ms ease-in-out;
}
.podcast-link a:hover {
  color: var(--trd-color);
}
.podcast-link a:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -40px;
  background: url(assets/img/play-icon-teal.svg) center/contain no-repeat;
  width: 28px;
  height: 28px;
}

#section2-2 {
  margin-top: -150px;
}
#section2-2 .row {
  border-radius: 10px;
}
#section2-2 img,
#section2-2 #jarallax-container-1 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#section2-2 .text-container {
  padding-inline: 2rem;
}

#section3 {
  background-color: var(--accent-color);
}

#section3 .row {
  /* border: 1px solid rgba(255, 255, 255, 0.349); */
  background-color: rgba(255, 255, 255, 0.171);
}

#section3 .row.team {
  /* border: 1px solid rgba(255, 255, 255, 0.349); */
  background-color: rgba(0, 0, 0, 0.425);
}
#section3 .dr-gaddy-info {
  padding-inline: 2rem;
}
#section3 .team-info {
  padding-inline: 2rem;
}

.project-name {
  color: white !important;
  font-family: var(--title-font);
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 300;
}

footer {
  background: url(./z-images/bg6.jpg);
  /* background-repeat: no-repeat;
    background-size: cover; */
}

.testimonial-carousel {
  background: linear-gradient(to bottom, #ff1d77, #2e87c8);
  padding: 60px 30px;
  color: #4b006e;
  text-align: center;
  font-family: Georgia, serif;
  border-radius: 12px;
}

.testimonial-carousel blockquote {
  max-width: 800px;
  margin: 0 auto !important;
  text-align: left !important;
  padding-inline: 1rem;
}

.quote {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #4b006e;
}

.author {
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #4b006e;
}

.bubble {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  transition: transform 0.8s ease;
  z-index: 1000;
}

.bubble-news {
  position: absolute;
  bottom: -20px !important;
  left: 20px;
  width: 50%;
  transition: transform 1.8s ease;
  z-index: 1000;
}

.bubble2 {
  position: absolute;
  bottom: -80px;
  left: 20px;
  width: 900px;
  transition: transform 0.8s ease;
  z-index: 1000;
}

.scroll-up {
  transform: translateY(-80px);
}

.scroll-down {
  transform: translateY(80px);
}

/* GENERAL ANIMATIONS********************************** */
.custom-animation {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.custom-animation.animate {
  opacity: 1;
  transform: translateY(0);
}
/* GENERAL ANIMATIONS********************************** */

.overlay-bg.custom {
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 50%,
    black 100%
  );
}

.procedure-item img {
  height: 30px;
  width: 30px;
  margin: 0 8px;
  margin-right: 10px;
  margin-bottom: 15px;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce-side;
}

.procedure-item {
  margin-top: 40px;
}
.procedure-item a {
  font-size: 25px;
}
.procedure-item a:hover {
  color: #747474;
}

@keyframes bounce-side {
  0% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }

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

/* SERVICES************* */
.custom-service-item {
  position: relative;
  overflow: hidden;
  margin-inline: 2.5px;
  transition: all 400ms ease-in-out;
}

.custom-service-item .overlay-bg {
  opacity: 0.7;
  transition: all 700ms ease;
}

.custom-service-item:hover .overlay-bg {
  opacity: 1;
}

.testimonial {
  padding-inline: 2rem;
}

.custom-service-item img {
  transition: all 700ms ease-in-out;
}

.custom-services-item h3.service-title {
  /* margin-bottom: 50px; */
  font-weight: 400 !important;
}

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

.nav-pills .nav-link.active {
  background-color: transparent;
  border: 1px solid #d8b454;
}

/* SECTIONS******************************************** */

.description-container {
  background-color: #d1d1d11c;
  padding: 2rem;
  border-radius: 5px;
}
.description-container2 {
  border: 1px solid rgba(255, 255, 255, 0.288);
  padding: 3rem;
  border-radius: 5px;
}

.hero-mobile {
  display: none;
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px 50px;
  max-width: 1200px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.popup-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.popup-left {
  width: 50%;
}

.popup-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f1f1f1;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
  color: black;
}

.popup-right {
  flex: 1;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 54px;
  font-weight: 100;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-left {
  display: flex;
  flex-direction: column;
}

/* CAROUSEL*********************************************** */
.swiper {
  width: 100vw;
  height: 70vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  display: flex;
  width: 100%;
  height: 70vh;
}

.slide-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.slide-text {
  flex: 1;
  background-color: #f9f9f9;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-text h4 {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.slide-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.slide-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
}

.slide-text strong {
  font-weight: bold;
}

.slide-text button {
  padding: 12px 24px;
  background-color: #1c2a22;
  color: white;
  border: none;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
}
.swiper-button-next {
  right: 20px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
  }

  .slide-image,
  .slide-text {
    flex: none;
    width: 100%;
    height: 50vh;
  }

  .slide-text {
    padding: 20px;
    height: auto;
  }
}
/* CAROUSEL*********************************************** */

/* TESTIMONIALS*********************************************** */
.therapy-section {
  background-color: #ffffff;
  position: relative;
}

.letter-spacing {
  letter-spacing: 2px;
}

.testimonial-box {
  /* background-color: rgb(41, 23, 23) !important; */
  z-index: 2;
}

.carousel-item p {
  color: #313131;
  font-family: "Mabry Pro", Sans-serif;
  font-size: 36px;
  font-weight: 300;
  font-style: normal;
  line-height: 54.18px;
  letter-spacing: 0.72px;
}

.deco-img {
  bottom: -40px;
  left: -40px;
  width: 100px;
  z-index: 0;
}
/* TESTIMONIALS*********************************************** */

/* BLOGS***************** */
.zoom-effect {
  transition: transform 0.5s ease;
}

.blog-card:hover .zoom-effect {
  transform: scale(1.05);
}

.link-hover {
  color: #333;
  position: relative;
  padding-bottom: 2px;
}

.blog-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  border: 1px solid black;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* BLOGS***************** */
.mobile-dark {
  color: rgb(255, 255, 255) !important;
}

/* Contenedor de la paginación */
.blog-pagination {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 40px 0;
  margin-top: 20px;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

/* Botones de paginación */
.pagination-list li {
  margin: 0;
}

.pagination-list button {
  min-width: 24px;
  height: 24px;
  padding: 5px 7px;
  border: none;
  background-color: #f0f0f0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-list button:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

/* Página activa */
.pagination-list button.active {
  background-color: #d9534f; /* Rojo como en tu diseño */
  color: white;
  cursor: default;
}

.pagination-list button.active:hover {
  transform: none;
}

/* Botones prev/next */
.pagination-list button.prev-btn,
.pagination-list button.next-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 18px;
  font-weight: bold;
}

.pagination-list button.prev-btn:hover,
.pagination-list button.next-btn:hover {
  background-color: #f8f8f8;
}

/* Botones deshabilitados */
.pagination-list button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-list button:disabled:hover {
  background-color: #f0f0f0;
  transform: none;
}

/* Puntos suspensivos */
.pagination-list .dots {
  padding: 0 8px;
  color: #666;
  font-weight: bold;
  display: flex;
  align-items: center;
}

/* Ocultar páginas de blog */
.blog-page {
  display: none;
}

.blog-page.active {
  display: flex;
}
/* BREAKPOINTS************************************************* */

/* (default from bootstrap) */
@media (max-width: 1500px) {
  .cus-logo {
    width: 350px;
  }
  .cus-nav-items {
    list-style: none;
    display: flex;
    gap: 1rem;
    z-index: 10;
  }
  .cus-logo:after {
    bottom: 0rem;
    top: -14.5px;
  }
}
/* (default from bootstrap) */
@media (max-width: 1400px) {
  .cus-nav-items {
    list-style: none;
    display: flex;
    gap: 1rem;
    z-index: 10;
  }
  .cus-logo {
    width: 250px;
  }
  .cus-logo:after {
    bottom: 0rem;
    top: -26px;
  }
}

/* (default from bootstrap) */

@media (max-width: 1200px) {
  .form-margin {
    margin-top: -250px !important;
  }
  .general-box {
    width: 80%;
  }
}

/* (default from bootstrap) */

@media (max-width: 992px) {
  .swiper {
    width: 100vw;
    height: 100vh;
  }
  .mobile-d-none {
    display: none;
  }
  #section2-2 img,
  #section2-2 #jarallax-container-1 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .main-btns-container2 {
    flex-direction: column;
    gap: 0;
  }
  .top-header .logo {
    margin-top: 10px;
  }
  .top-header {
    position: relative !important;
  }
  header {
    top: auto;
  }
  .hero-mobile.index {
    margin-top: 80px;
  }
  .hero-mobile {
    display: block;
    height: auto;
  }
  .bg-video {
    height: 100%;
  }

  #hero {
    display: none;
  }
  .popup-content {
    flex-direction: column;
    gap: 20px;
  }
  .popup-left {
    width: 100%;
  }
  .deco-img {
    display: none;
  }
  .testimonial-box {
    margin-right: 0px !important;
  }
  .form-margin {
    margin-top: -250px !important;
  }
  .cus-logo {
    margin-top: 20px;
  }
  .cus-nav-items {
    padding-top: 10px;
  }

  .general-box {
    width: 70%;
    left: 85px;
  }
  .general-box.box1 {
    background-color: #c7d5d5;
  }

  .blog-cover {
    height: 70vh;
  }
}

/* (default from bootstrap) */

@media (max-width: 768px) {
  .contact-border {
    border-right: none;
    border-bottom: 1px solid var(--accent-color);
  }
  .form-margin {
    margin-top: 0px !important;
  }
  .main-btns-container {
    flex-direction: column;
  }
  .mobile-dark {
    color: black !important;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    flex-direction: row;
  }
  .general-box {
    width: 100% !important;
    left: 0 !important;
  }
}

/* (default from bootstrap) */
@media (max-width: 576px) {
  header .logo {
    width: 210px;
    margin-top: 20px;
  }
  header {
    align-items: center;
  }
  .main-btns-container.btns1 {
    display: flex;
    flex-direction: column;
  }
  .cus-logo img {
    width: 200px !important;
  }
  .cus-menu-toggle {
    top: 10px;
  }
  .swiper {
    width: 100vw;
    height: 120vh;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .cus-menu-toggle {
    top: 20px;
  }
  .cus-logo {
    width: 200px;
  }
  .general-box {
    top: 0 !important;
  }
}
/* BREAKPOINTS************************************************* */
