.slick-prev,
.slick-next {
    display: none !important;
}


/* Dots */
.slick-dots {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(720px, -50%);
    display: flex !important;
    flex-direction: column;
    gap: 16px 0;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 12px;
    height: 12px;
    cursor: pointer;
    position: relative;
}

.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    content: "";
    background-color: #738BAB;
    border-radius: 12px;
}

.slick-dots li.slick-active button:before {
    background-color: #fff;
}





@media (hover: hover) and (pointer: fine) {
    .slick-dots li button:hover{
        outline: none;
    }

    .slick-dots li button:hover:before {
        opacity: 1;
    }
}





/* responsive css */
@media screen and (min-width: 1279px) and (max-width: 1550px) {
    
    /* Dots */
    .slick-dots {
        right: 50px;
        transform: translate(0, -50%);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {

    /* Dots */
    .slick-dots {
        right: 50px;
        transform: translate(0, -50%);
    }
}

@media screen and (max-width: 767px) {

    /* Dots */
    .slick-dots {
        flex-direction: row;
        gap: 0 10px;
        top: auto;
        bottom: 30px;
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .slick-dots li {
        width: 8px;
        height: 8px;
    }

    .slick-dots li button {
        width: 8px;
        height: 8px;
    }

    .slick-dots li button:before {
        width: 8px;
        height: 8px;
    }
}