:root {
            --primary-color: #27B2B0;
            --secondary-color: #fff;
        }
        body {
            font-family: Arial, sans-serif;
            color: #333;
        }
        .text-white{ 
		background: #27b2b0;
        color: #f9fafb;

}
        .text-primary {
            color: var(--primary-color);
        }
        
    .container-redes {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
         }
         
    .container-redes img {
    width: 60px;
    padding: 4px;
    cursor: pointer;
    border-radius: 100%;
    transition: all 300ms;
        }
        
    #testimonios{
    width: 100%;
    height: 100%;
    background-image: url('https://cyberfest.abibsalud.com.ar/imagen/testimonios.jpg'); /* Reemplaza con tu URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
            
        }
        
        .testimonial-item h3 {
            text-align: right;
            
            
        }
        
        .border-primary {
            border-color: var(--primary-color);
        }
        .carousel {
            position: relative;
            overflow: hidden;
            height: 400px;
        }
        .carousel-inner {
            position: relative;
            width: 300%;
            height: 100%;
            transition: transform 0.6s ease;
        }
        .carousel-item {
            position: absolute;
            width: 33.33333%;
            height: 100%;
        }

        .carousel-item:nth-child(1) { left: 0; }
        .carousel-item:nth-child(2) { left: 33.33333%; }
        .carousel-item:nth-child(3) { left: 66.66666%; }
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
        }
        .carousel-indicator.active {
            background-color: white;
        }
      
        .color-b{
			color:aliceblue;
	
                    }

        .countdown-timer {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 1rem 0;
        }
        .countdown-box {
            width: 60px;
            height: 60px;
            margin: 0 5px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .countdown-value {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .countdown-label {
            font-size: 0.6rem;
            text-transform: uppercase;
        }
        .testimonial-carousel {
            overflow: hidden;
        }
        .testimonial-inner {
            display: flex;
            transition: transform 0.3s ease;
        }
        .testimonial-item {
            flex: 0 0 100%;
            padding: 0 1rem;
        }
        @media (min-width: 640px) {
            .testimonial-item {
                flex: 0 0 50%;
            }
        }
        @media (min-width: 1024px) {
            .testimonial-item {
                flex: 0 0 25%;
            }
        }
        @media (max-width: 640px) {
            .countdown-box {
                width: 50px;
                height: 50px;
            }
            .countdown-value {
                font-size: 1.2rem;
            }
            .countdown-label {
                font-size: 0.5rem;
            }
            .carousel {
                height: 300px;
            }
        }