p {
    color: #000;
}

ol li {
    color: #000;
}

/* .slide-btn {
    text-align: center;
    box-sizing: border-box;
    height: 40vh;
    background-color: yellow;
    border: 1px solid #000;
    cursor: pointer;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    font-size: 30px;
    min-height: 120px;
    transition: 0.5s all;
} */
/* 
.slick-active-first .slide-btn {
    background-color: red;
}

.slick-active-last .slide-btn {
    background-color: red;
} */

.slider-dots-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.slider-dots button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 0;
    background-color: #ffe8d1;
    padding: 0;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
}
@keyframes dotBtnZoom {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    60% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}
.slider-dots li.slick-active button {
    width: 40px;
    height: 40px;
    background-color: #ffe8d1;
    animation: dotBtnZoom 0.45s cubic-bezier(.34,1.56,.64,1) forwards;
}
.slider-dots li.slick-active button:hover {
    transform: scale(1);
}



.slider-dots-box .slick-active button:after {
    content: none;
    display: none;
}

.slider-dots-box .slick-active button:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.circle-bg {
    fill: rgba(255, 255, 255, 0);
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 2;
    stroke-linecap: butt;
}

.circle-go {
    fill: rgba(255, 255, 255, 0);
    stroke: #fd7204;
    stroke-width: 2;
    stroke-linecap: round;
    animation: progress 22s;
    stroke-dasharray: 360px;
    stroke-dashoffset: 360;
}

.circle-tx {
    fill: #fd7204;
    stroke-width: 1;
    font: bold 16px 'Arial';
    text-anchor: middle;
    transform: scale(0.3);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1),
                opacity 0.25s ease;
    transform-box: fill-box;
}
.slider-dots li.slick-active .circle-tx {
    animation: dotZoom 0.45s cubic-bezier(.34,1.56,.64,1) forwards;
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.08s;
}


@keyframes progress {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 0;
    }
}
@keyframes dotZoom {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    60% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* Remove default list bullets / ::marker */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 40px;
}

.slider-dots li:not(.slick-active) button {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}
.slider-dots,
.slider-dots li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.slider-dots li::marker {
    content: none !important;
}