@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: 250px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: -50px;
    color: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-left: -30px;
}

.bubble-1 {
    background-color: #00BEF7;
}

.bubble-2 {
    background-color: #0066CC;
}

.bubble-3 {
    background-color: #633E91;
}

.number2-bubble2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: -50px;
    color: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-left: -30px;
}

.bubble-4 {
    background-color: #00BEF7;
}

.bubble-5 {
    background-color: #0066CC; 
}

.bubble-6 {
    background-color: #633E91; 
}

.list-item-text {
    font-size: 18px;
    line-height: 1.4;
}


.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 */
}




  