.vendors-carousel {
    margin: 20px auto;
}

.vendor-item {
    text-align: center;
    padding: 10px;
  
}

.vendor-item .creator-country{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    border: 1px solid purple;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
    font-size: 13px;
    transform: rotate(-32deg);
}
.vendor-item a{
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid purple;
    background-color: #000;
    overflow: hidden;  
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    position: relative;
}

.vendor-item:hover a{
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255,192,203,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(255,192,203,1);
    box-shadow: 0px 0px 10px 0px rgba(255,192,203,1);
}


.vendor-item .img-area {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.vendor-item h3 {
    font-size: 24px;
    color: #d1d1d1;
    min-height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 90%;
}
.vendor-item a{
    text-decoration: none;
}
.vendor-item:hover h3{
    color: pink;
}

.btn-area{
    width: 100%;
    display: flex;
    justify-content: center;
}

.vendors-carousel .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}
.vendors-carousel{
    position: relative;
}
.vendors-carousel .owl-prev span{
    position: absolute;
    top: 35%;
    left: -30px;
    font-size: 70px;
    color: pink;
}
.vendors-carousel .owl-next span{
    position: absolute;
    top: 35%;
    right: -30px;
    font-size: 70px;
    color: pink;
}
@media screen and (max-width: 800px){
    .vendors-carousel .owl-prev span{
        top: unset;
        bottom: -40px;
        left: 30px !important;
    }
    .vendors-carousel .owl-next span{
        top: unset;
        bottom: -40px;
        right: 30px !important;
    }
}
@media screen and (max-width: 600px){
    .vendor-item .img-area{
        height: 160px;
    }
    .vendor-item h3{
        font-size: 18px;
        max-width: 90%;
    }
    .vendor-item{
        padding: unset;
    }
}