
.slick-dotted.slick-slider
{
    margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  right: 50px;
  list-style: none;
  z-index: 9999;
}

.slick-dots li
{
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{

    line-height: 0;
    display: block;
    height: 10px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    padding:0;
}
.slick-dots li {
    padding: 0;
}

.slick-dots li button::before {
    content: "\f111";
    font-family: 'Font Awesome 6 Free';
    font-size: 10px;
    opacity: 1 !important;
    font-weight: 900;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.slick-dots li.slick-active button::before {
    content: '\f111' !important;
    font-family: 'Font Awesome 6 Free';
    color: var(--white) !important;
    opacity: 1 !important;
    font-weight: 900;
    background: var(--white);
}


/* Arrows */
 .slick-prev,
 .slick-next
{
    position: absolute;
    display: block;
    font-size: 0;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

 .slick-prev
{
    left: 20px;
    background: rgb(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    top: 50%;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}



 .slick-next
{
    right: 20px;
    background: rgb(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    top: 50%;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}


 .slick-prev:hover,
 .slick-next:hover {
    transition: all 0.3s ease-in-out;
}

.slick-prev:before
{
    content: "\f053";
    font-family: 'Font Awesome 6 Free';
    font-size: 16px;
    opacity: 1 !important;
    font-weight: 900;
    color: white;
        position: relative;
        left: 0;
    transition: all 0.3s ease-in;
}

.slick-next:before {
    content: "\f054";
    position: relative;
     font-family: 'Font Awesome 6 Free';
    font-size: 16px;
    opacity: 1 !important;
    font-weight: 900;
    color: white;
    display: block;
    margin: 0;
    right: 0;
    transition: all 0.3s ease-in;
}


.slick-prev:hover:before {
    left: -2px;
}


.slick-next:hover:before {
    right: -2px;
}


