.navSlick{
    position: relative;
}

.navSlick .navSlickItem{
    display: grid;
    aspect-ratio: 7 / 2;
    place-content: center;
    border-radius: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.navSlick .navSlickItem:hover{
    opacity: 0.8;
}

.navSlick .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.navSlick .owl-prev,
.navSlick .owl-next{
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #000 !important;
    top: calc(50% - 20px);
}
.navSlick .owl-prev:after,
.navSlick .owl-next:after{
    content: '▲';
    position: absolute;
    top: -7px;
    color: #fff;
    font-size: 32px;
    left: 4px;
}
.navSlick .owl-prev{
    left: 220px;
}
.navSlick .owl-prev:after{
    transform: rotate(-90deg);
}
.navSlick .owl-next{
    right: 220px;
}
.navSlick .owl-next:after{
    transform: rotate(90deg);
}