﻿/***** 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;
    color: var(--black-color);
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arrows-slick a:hover{
    background:#08194a;
    color:#fff;
}

.carousel .slick-dots{
    display:none!important
}

.arrows-slick .arrow-right {
    right: 0;
}

.arrows-slick .arrow-left {
    left: 0;
}

@media screen and (max-width:640px),screen and (max-device-width:640px) {

    .arrows-slick a {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
}