.new-card-slider {
    overflow: hidden;
    padding-top: 10px;
}

.new-slides {
    display: flex;
    transition: 0.5s ease;
}

.new-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .new-slide {
        flex: 0 0 50%;
    }
}

.new-card {
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);

}

.new-dots {
    text-align: center;
    margin-top: 20px;
}

.new-dot {
    width: 10px;
    height: 10px;
    background: #3e200a;
    border-radius: 999px;
    display: inline-block;
    margin: 4px;
}

.new-dot.active {
    background: #A68A6D;
    width: 20px;
}