@keyframes hidePreloader {
    0% {
        width: 100%;
        height: 100%;
    }

    100% {
        width: 0;
        height: 0;
    }
}

body>div.preloader {
    position: fixed;
    background: white;
    width: 100%;
    height: 100%;
    z-index: 1071;
    opacity: 0;
    transition: opacity .5s ease;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded)>div.preloader {
    opacity: 1;
}

body:not(.loaded) {
    overflow: hidden;
}

body.loaded>div.preloader {
    animation: hidePreloader .5s linear .5s forwards;
}

.bg-gradient-blue-purple {

    background: linear-gradient(135deg, #00BEF7, #633E91);
}

.carrusel {
    margin-right: -10px;
    margin-left: -10px;
    
}

.carrusel > div {
    padding: 0 10px;
}

.carousel {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.carousel-list {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    flex: 0 0 auto;
    margin: 0 10px; /* Espacio entre las imágenes */
}

.carousel-image {
    width: 100%;
    height: auto;
    background-color: #0066CC;
}



.carousel {
    display: block;
}

@media (max-width: 767px) {
  .carousel {
      display: none;
  }
}

.minimize-section {
      display: none;
}

@media (max-width: 768px) {
  .minimize-section {
      display: block;
  }
}

.numbered-list {
    list-style-type: none;
    padding-left: 0;
}

.numbered-list {
    list-style-type: none;
    padding-left: 0;
}

.numbered-list li {
    margin-bottom: 10px;
}

.list-item-container {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.number-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-left: -30px;
}

.bubble-1 {
    background-color: #00BEF7; /* Color de la burbuja 1 */
}

.bubble-2 {
    background-color: #0066CC; /* Color de la burbuja 2 */
}

.bubble-3 {
    background-color: #633E91; /* Color de la burbuja 3 */
}

.list-item-text {
    font-size: 18px;
    line-height: 1.4;
}

#carousel {
        margin-top: -140px; /* */
        position: relative;
        z-index: 2;
}

.slice {
        position: relative;
        z-index: 1;
}

.card-clickable {
        transition: all 0.3s ease;
}

.card-clickable:hover {
  transform: scale(1.2); /* Aumenta el tamaño del card al pasar el mouse sobre él */
  z-index: 1; /* Coloca el card sobre los demás */
}

.card-clickable:not(:hover) {
  transform: scale(0.8); /* Reduce el tamaño de los otros cards que no se han rozado con el mouse */
}

.gradient-button {
  background-image: linear-gradient(to right, #00BEF7, #633E91);
  background-color: #00BEF7;
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  transition: background-position 0.5s;
}

.gradient-button:hover {
  background-position: 0 0;
}

.card-wide {
    width: 150%; /* Ajusta el ancho deseado */
}




  