﻿/***** carousel *****/
.slick-arrow {
    display: none !important
}

.arrows-slick{
    text-align:center;
}

.arrows-slick a{
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    margin:5px;
    font-size:30px;
    padding-top:6px;
    color:var(--black-color)
}

.arrows-slick a:hover{
    background:var(--main-color);
    color:#fff;
}

.carousel .slick-dots{
    display:none!important
}

.slick-dots {
    list-style: none;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.slick-dots li{
    float:left;
    width:15px;
    height:15px;
    border:2px solid orange;
    border-radius:50%;
    cursor:pointer;
    margin-right:5px;
}
.slick-dots li button{
   display:none;
}
.slick-dots li.slick-active{
    background:orange;
}