.containerTestimoni {
    position: relative;
    width: 100%;
    background-color: #1f1e1e;
    padding: 65px 5px;
}

.containerTestimoni .trusted-text {
    font-size: 14px;
    color: #ffffff;
}

.containerTestimoni .desc-text {
    font-size: 24px;
    color: #ffffff;
}

.containerTestimoni .subdesc-text {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.8;
}

.containerUsers {
    display: flex;
    justify-content: start;
    align-items: left;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: nowrap; 
}

.containerUsers .containers {
    display: flex;
    flex-direction: column; 
    align-items: center;
    position: relative;
    width: 120px;
    text-align: center;
}

.containerUsers .containers .count {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

.containerUsers .containers .title {
    font-size: 14px;
    color: #eeeeee;
    font-weight: 300;
    line-height: 150%;
    opacity: 0.7;
    margin-top: 0.2rem;
}

.containerUsers .containers:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #ffffff60;
}

.btnYellowPrimary {
    background-color: #fcd34d;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease-in-out;
}

.btnYellowPrimary:hover {
    background-color: #fbbf24;
}

.swiperTesti {
    margin-top: 5rem;
}

.containerTestimoni .desc-text {
    color: #ffffff;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 6px 0;
}

.containerTestimoni .trusted-text {
    color: #ffcf0b;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.containerTestimoni .subdesc-text {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media (max-width: 768px) {
    .containerUsers {
        justify-content: left;
    }

    .containerUsers .containers {
        width: auto;
        margin-bottom: 1rem; 
    }

    .containerUsers .containers .count {
        font-size: 20px;
    }

    .containerUsers .containers .title {
        font-size: 12px;
    }
}

.bg-black\/80 {
    background-color:#000000cc;
}

.bg-accent {
    background-color: hsl(0deg 0% 26.44%);
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.scale-95 {
    transform: scale(0.95);
}

.scale-100 {
    transform: scale(1);
}


    