* {
  font-family: "Poppins", sans-serif;
  color: #391e24;
}

a {
  text-decoration: none;
}

html, body {
  overflow-x: hidden !important;
  background-color: #fff8f2;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li a {
  text-decoration: none;
}

.border-3rem {
  border-radius: 3rem !important;
}

.steps {
  margin: 0 auto;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  position: relative;
}
.steps p {
  font-size: 20px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.w-responsive-60 {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .w-responsive-60 {
    width: 100%;
  }
}

.text-pink {
  color: #f06faa;
}

.tertiary-button, .yellow-button, .secondary-button, .filled-button {
  display: block;
  border-radius: 2rem;
  padding: 6px 24px;
  border: none;
  font-weight: bold;
}

.filled-button {
  background-color: #f06faa;
}

.secondary-button {
  background-color: #74cbf2;
}

.yellow-button {
  background-color: #fdb515;
}

.tertiary-button {
  background-color: #fff8f2;
}

.outline-button {
  display: block;
  background-color: #fff8f2;
  border-radius: 2rem;
  padding: 6px 24px;
  border: 1px solid #f06faa;
  font-weight: bold;
}

nav {
  padding: 16px;
  height: 100px;
  background-color: #fff8f2;
  position: relative;
  display: flex;
}
nav a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
nav a img {
  display: block;
  height: 100%;
  transition: all 0.3s ease;
}
nav a.nav-active img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
nav .menu {
  transition: all 0.3s ease;
  display: flex;
}
nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
nav li {
  padding: 0;
  margin: 0;
}
nav li a {
  font-weight: bold;
  text-decoration: none;
  color: #391e24;
  transition: all 0.3s ease;
}
nav li a:hover {
  color: #391e24;
}
nav li a.active {
  color: #f06faa;
  text-decoration: underline;
}
nav li a.nav-active {
  color: #f06faa;
  font-weight: 900;
  position: relative;
}
nav li a.nav-active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f06faa;
  border-radius: 2px;
}
nav .cricri-language-selector {
  width: 100px;
}

@media (max-width: 992px) {
  nav {
    flex-wrap: wrap;
    padding: 8px;
  }
  nav a > img {
    height: 75%;
  }
  nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    width: 100%;
    background: #fff8f2;
    z-index: 1000;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  nav .menu.open {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  nav .menu-toggle {
    display: block;
  }
  nav li {
    border: 1px solid #d9d9d9;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px;
  }
  nav li:last-child {
    border: 25px;
  }
}
.welcome {
  padding-top: 64px;
  background: url("../img/photos/home-1.jpg") no-repeat center center;
  background-size: cover;
}
.welcome--wave {
  width: 100%;
}
.welcome--content {
  background-color: #fff8f2;
  padding: 64px;
  border-radius: 25px;
  margin: 0 auto;
  width: 60%;
}
.welcome--content--title {
  font-size: 48px;
  text-align: center;
  font-weight: 750;
  margin-bottom: 32px;
}
.welcome--content--title span {
  color: #f06faa;
}
.welcome--content--description {
  margin-bottom: 32px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #391e24;
}

@media (max-width: 1200px) {
  .welcome--content {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .welcome--content {
    padding: 32px;
  }
  .welcome--content--title {
    font-size: 32px;
  }
  .welcome--content--description {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .welcome--content {
    width: 90%;
    padding: 16px;
  }
  .welcome--content--description {
    font-size: 14px;
  }
}
.programs--content {
  position: relative;
  margin: 0 auto;
  width: 75%;
}
.programs--title {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
}
.programs--description {
  display: inline-block;
  font-size: 24px;
}
.programs--hearth {
  position: absolute;
  width: 80px;
  bottom: 0;
  left: -80px;
}
.programs--image {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 16px;
}
.programs--star {
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 50px;
}
.programs--ondulada {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 60px;
}

@media (max-width: 768px) {
  .programs--content {
    width: 90%;
  }
  .programs--title {
    font-size: 32px;
  }
  .programs--star {
    position: absolute;
    bottom: 0px;
    left: -80px;
    width: 50px;
  }
}
.badge-green, .badge-yellow, .badge-blue, .badge-pink {
  background-color: #ffffff;
  color: #391e24;
  padding: 8px 24px;
  border-radius: 2rem;
  border: 2px solid;
  font-size: 32px;
}

@media (max-width: 768px) {
  .badge-green, .badge-yellow, .badge-blue, .badge-pink {
    font-size: 24px;
  }
}
.badge-pink {
  border-color: #f06faa;
}

.badge-blue {
  border-color: #74cbf2;
}

.badge-yellow {
  border-color: #fdb515;
}

.badge-green {
  border-color: #429246;
}

.gallery {
  position: relative;
}
.gallery--title {
  text-align: center;
  display: block;
  position: relative;
  width: auto;
}
.gallery--content img {
  position: absolute;
  width: 35px;
  top: -30px;
  right: -50px;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: #1a1a1a;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}
.gallery-close:hover {
  color: #f06faa;
}

.gallery-main {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  flex-shrink: 0;
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.gallery-image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 1000;
}
.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #f06faa;
}
.gallery-nav.gallery-prev {
  left: 20px;
}
.gallery-nav.gallery-next {
  right: 20px;
}

.gallery-thumbnails {
  height: 15vh;
  min-height: 15vh;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
  flex-shrink: 0;
}

.gallery-thumb-strip {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  gap: 10px;
}
.gallery-thumb-strip::-webkit-scrollbar {
  height: 6px;
}
.gallery-thumb-strip::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}
.gallery-thumb-strip::-webkit-scrollbar-thumb {
  background: #f06faa;
  border-radius: 3px;
}

.gallery-thumb {
  min-width: calc(15vh - 20px);
  height: calc(15vh - 20px);
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.gallery-thumb:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
}
.gallery-thumb.active {
  border-color: #f06faa;
  transform: scale(1.1);
}

.gallery-thumb-nav {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.gallery-thumb-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #f06faa;
}

.gallery-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 15px;
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 15px;
  border-radius: 15px;
}

.gallery-view-modes {
  position: absolute;
  top: 20px;
  right: 60px;
  display: flex;
  gap: 10px;
}

.gallery-view-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 16px;
}
.gallery-view-btn:hover, .gallery-view-btn.active {
  background: #f06faa;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
  height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.gallery-grid .gallery-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-grid .gallery-grid-item:hover {
  transform: scale(1.05);
}
.gallery-grid .gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 5px;
    padding: 10px;
    height: 85vh;
  }
}
@media (max-width: 768px) {
  .gallery-modal-content {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .gallery-image-container {
    padding: 10px;
  }
  .gallery-nav {
    font-size: 20px;
    padding: 10px 15px;
  }
  .gallery-nav.gallery-prev {
    left: 10px;
  }
  .gallery-nav.gallery-next {
    right: 10px;
  }
  .gallery-thumbnails {
    height: 15vh;
    min-height: 15vh;
  }
  .gallery-thumb {
    min-width: calc(15vh - 20px);
    height: calc(15vh - 20px);
  }
  .gallery-view-modes {
    top: 10px;
    right: 50px;
  }
  .gallery-close {
    top: 10px;
    right: 10px;
    font-size: 30px;
  }
  .gallery-counter {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
  }
  .gallery-caption {
    bottom: 10px;
    left: 10px;
    font-size: 14px;
  }
}
.time {
  position: relative;
  background-color: #daf1fd;
}
.time--card {
  position: relative;
  z-index: 3;
  background-color: #ffffff;
  padding: 64px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.background-strong-pink, .background-strong-green, .background-strong-yellow, .background-strong-blue, .background-blue, .background-green, .background-yellow, .background-pink {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 16px;
}

.background-pink {
  background-color: #f6b0cf;
}

.background-yellow {
  background-color: #ffdc88;
}

.background-green {
  background-color: #cfeadf;
}

.background-blue {
  background-color: #daf1fd;
}

.background-strong-blue {
  background-color: #74cbf2;
}

.background-strong-yellow {
  background-color: #fdb515;
}

.background-strong-green {
  background-color: #429246 !important;
}

.background-strong-blue {
  background-color: #74cbf2;
}

.background-strong-pink {
  background-color: #f06faa;
}

.team {
  position: relative;
}
.team--iris {
  position: absolute;
  right: -270px;
  top: -400px;
  z-index: 2;
  max-width: 100%;
}
.team--profile {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  object-position: top;
}
.team--description {
  width: 75%;
  font-size: 26px;
  margin: 0 auto;
  margin-bottom: 36px;
}

.team-colors {
  position: relative;
  margin-top: 150px;
}
.team-colors--title {
  margin-bottom: 160px;
}
.team-colors--card {
  position: relative;
  padding: 64px;
  text-align: center;
  display: block;
  border-radius: 32px;
  min-height: 100%;
  max-height: 100%;
}
.team-colors--card--title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 80px;
  margin-bottom: 16px;
}
.team-colors--card img {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 992px) {
  .team-colors .row {
    gap: 90px;
  }
  .team-colors--card {
    padding: 32px;
  }
  .team-colors--card img {
    width: 180px;
    height: 180px;
    top: -85px;
  }
}
@media (max-width: 768px) {
  .team--iris {
    display: none;
  }
  .team-colors {
    margin-top: 100px;
  }
}
.locations {
  position: relative;
}
.locations--ondulada-1 {
  position: absolute;
  right: 50px;
  top: 0;
  z-index: 2;
  width: 45px;
}
.locations--estrella {
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 2;
  width: 45px;
}
.locations--card {
  padding: 64px;
  text-align: center;
  display: block;
  min-height: 600px;
}
.locations--card--title--name {
  font-weight: bold;
  font-size: 24px;
}
.locations--card--title--text {
  font-size: 20px;
}
.locations--card--number {
  font-size: 24px;
  font-weight: bold;
}
.locations--card p {
  margin: 0;
}

@media (max-width: 1200px) {
  .locations--card {
    min-height: 800px;
  }
}
@media (max-width: 992px) {
  .locations--card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .locations--ondulada-1 {
    right: 25px;
    top: -75px;
  }
  .locations--card {
    min-height: 0;
  }
}
.testimonials {
  background: #fff8f2;
}
.testimonials--quote {
  font-size: 48px;
  color: #391e24;
  line-height: 1.3;
  max-width: 1100px;
  margin: 0 auto 16px auto;
}
.testimonials--author {
  color: #f06faa;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.testimonials--stars img {
  width: 48px;
  height: 48px;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23391e24'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23391e24'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .testimonials--quote {
    font-size: 24px;
  }
}
.apply {
  background-color: #429246;
}
.apply--title {
  font-size: 48px;
  font-weight: bold;
}
.apply--description {
  font-size: 20px;
}
.apply--content {
  width: 65%;
  margin: 128px auto 0 auto;
}
.apply--card {
  background-color: #ffffff;
  border-radius: 32px;
  color: #391e24;
  margin-bottom: 128px;
}
.apply--card--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}
.apply--card--content {
  padding: 64px;
}
.apply--card--title {
  font-size: 48px;
  font-weight: bold;
}
.apply--card--description {
  font-size: 24px;
}

@media (max-width: 768px) {
  .apply--title {
    font-size: 40px;
  }
  .apply--description {
    font-size: 24px;
  }
  .apply--content {
    width: 100%;
    margin: 128px 0 0 0;
  }
  .apply--card--image {
    border-top-right-radius: 0;
    border-bottom-right-radius: 32px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 32px;
  }
  .apply--card--content {
    padding: 32px;
  }
  .row {
    --bs-gutter-x: 0;
  }
}
footer h5 {
  font-size: 24px;
}
footer img {
  width: 400px;
}
footer a {
  color: #391e24;
}
footer a:hover {
  color: #391e24;
}

@media (max-width: 768px) {
  footer img {
    width: 250px;
  }
}
.programs-main {
  z-index: 2;
}
.programs-main img {
  border-radius: 2rem;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.programs-main--content {
  width: 80%;
}
.programs-main--title {
  font-size: 48px;
  font-weight: bold;
}
.programs-main--title span {
  color: #f06faa;
}
.programs-main--description {
  margin: 32px 0;
  font-size: 16px;
}
.programs-main a {
  color: #f06faa;
  font-weight: bold;
  text-decoration: none;
}
.programs-main--programs--image {
  height: 700px !important;
}

.program-types {
  position: relative;
  margin-top: 200px;
}
.program-types--arcoiris {
  z-index: 1;
  position: absolute;
  left: -220px;
  top: -500px;
  width: 25%;
}
.program-types--corazones {
  width: 70px;
  position: absolute;
  right: 50px;
  top: -70px;
}
.program-types--flowers {
  width: 100px;
  position: absolute;
  right: -100px;
  top: -70px;
}
.program-types--line-green {
  position: absolute;
  right: -100px;
  top: 50%;
  width: 70px;
}
.program-types--line-blue {
  position: absolute;
  left: -100px;
  top: 50%;
  width: 70px;
}
.program-types--pop {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 50px;
}
.program-types--star {
  position: absolute;
  left: -70px;
  bottom: -50px;
  width: 60px;
}
.program-types--content {
  z-index: 3;
}
.program-types--card {
  z-index: 2;
  position: relative;
  margin-bottom: 100px;
}
.program-types--card--age {
  font-size: 18px;
}
.program-types--card--description {
  font-size: 20px;
}
.program-types--card--image {
  height: 100%;
  object-fit: cover;
}
.program-types--ondulada {
  position: absolute;
  left: -80px;
  top: 20px;
  width: 60px;
}

.admission {
  background-color: #74cbf2;
  border-radius: 0px;
}
.admission--card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 64px;
}

@media (max-width: 768px) {
  .programs-main img {
    width: 100%;
  }
  .programs-main--title {
    font-size: 35px;
  }
  .program-types {
    margin-top: 50px;
  }
  .program-types--arcoiris {
    left: -150px;
    width: 50%;
  }
  .program-types--card {
    margin-bottom: 50px;
    text-align: center;
  }
  .program-types--ondulada {
    right: 0px;
    top: -250px;
    width: 40px;
  }
}
@media (max-width: 576px) {
  .programs-main--programs--image {
    height: 300px !important;
  }
  .program-types--arcoiris {
    left: -100px;
    top: -200px;
    width: 50%;
  }
}
.welcome-centers {
  background: url("../img/photos/centers-main.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.welcome-centers--content {
  background-color: #fff8f2;
  padding: 64px;
  border-radius: 2rem;
  margin: 0 auto;
  margin: 128px 0;
}
.welcome-centers--content h1 span {
  color: #74cbf2;
}
.welcome-centers--arcoiris {
  position: absolute;
  right: -110px;
  bottom: 10px;
  width: 230px;
  z-index: -1;
}

.centers--link {
  color: #1d1d1d;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}
.centers--link:hover {
  color: #1d1d1d;
}
.centers--link::before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #1d1d1d;
  bottom: -5px;
  left: 0;
  width: 100%;
}
.centers--image {
  width: 100%;
  max-height: 500px;
  min-height: 500px;
  object-fit: cover;
}
.centers--image-below {
  max-height: 300px;
  min-height: 300px;
}

@media (max-width: 992px) {
  .centers--image {
    max-height: 300px;
    min-height: 300px;
  }
  .centers--image-below {
    max-height: 300px;
    min-height: 300px;
  }
}
.schedule-main {
  background-color: #fff8f2;
  position: relative;
  padding: 4rem 0;
  z-index: 0;
}
.schedule-main--title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #391e24;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .schedule-main--title {
    font-size: 2.5rem;
  }
}
.schedule-main--description {
  font-size: 1.2rem;
  color: #391e24;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.schedule-main--hearts {
  position: absolute;
  top: 2rem;
  right: 200px;
  z-index: -1;
  width: 70px;
}
.schedule-main--rainbow {
  position: absolute;
  bottom: -150px;
  left: -130px;
  width: 250px;
  z-index: -1;
}
.schedule-main--flowers {
  position: absolute;
  bottom: -70px;
  right: 100px;
  z-index: -1;
  width: 100px;
}
.schedule-main--wave {
  position: relative;
  z-index: 2;
  width: 100%;
}

.schedule-form-title {
  position: relative;
  z-index: 1;
}
.schedule-form-title h2 {
  width: 50%;
}
.schedule-form-title p {
  width: 50%;
}

.schedule-form {
  background-color: #fff8f2;
  border-radius: 2rem;
  padding: 3rem;
}
.schedule-form h4 {
  font-weight: bold;
  color: #f06faa;
}
.schedule-form--item input[type=text], .schedule-form--item input[type=email], .schedule-form--item textarea {
  border: none;
  height: 45px;
  border-radius: 10px;
  background-color: #ffffff;
}
.schedule-form--item textarea {
  height: 100px;
}
.schedule-form--item select {
  border: none;
  height: 45px;
  border-radius: 10px;
  background-color: #ffffff;
}
.schedule-form--item select option {
  background-color: #ffffff;
}

@media (max-width: 992px) {
  .schedule-form-title h2 {
    width: 100%;
  }
  .schedule-form-title p {
    width: 100%;
  }
}
.accreditations--img {
  width: 100px;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border-radius: 50%;
}

.splide__slide {
  flex: 0 0 5%;
}

.splide__slide img {
  width: auto;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 1024px) {
  .splide__slide {
    flex: 0 0 25%;
  }
  .splide__slide img {
    width: 100%;
    height: 175px;
  }
}
.faqs {
  margin: 150px 0 150px 0;
  position: relative;
}
.faqs--corazones {
  position: absolute;
  width: 70px;
  left: 100px;
  top: 0;
}
.faqs--ondulada {
  position: absolute;
  width: 70px;
  right: 100px;
  bottom: -90px;
}

.page-loading {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.page-loaded {
  opacity: 1;
}

.loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out;
}

.loading-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #333;
  text-align: center;
}

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