.tb-slider,
.tb-slider-2 {
    border-radius: 1rem;
}

@media (max-width: 425px) {
    .tb-slider,
    .tb-slider-2 {
        max-width: 100% !important;
    }
}

.tb-slide {
    display: none !important;
}

.tb-slide.is-active {
    display: flex !important;
}

.tb-slide img {
    display: block;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    animation: tbFadeIn .45s ease;
}

@keyframes tbFadeIn {
    from {
        opacity: 0;
        transform: scale(0.985);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}