
.swiper-shell{
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;
    max-width: 1400px;
    display: flex;
    align-items: center;
}
.my-cards-swiper{
 
   max-width: 1300px;   
   margin-bottom: 15px;
}
@media(max-width: 1200px){
    .swiper-shell{
    max-width: 1000px; ;
}
.my-cards-swiper{
    max-width: 800px;
}}

@media (max-width: 768px){
.swiper-shell{
    max-width: 550px; ;
}
 .my-cards-swiper{
    max-width: 400px;
}}


@media (max-width: 480px){

.swiper-shell{
    max-width: 550px; ;
    height: 60%;
}
 .my-cards-swiper{
    max-width: 350px;
}}

.swiper-nav{
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: absolute;
   width: 100%;
   top: 175px;
   pointer-events: none;
   z-index: 1;
}

.swiper-right-btn,
.swiper-left-btn {
    pointer-events:auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-left-btn:hover,
.swiper-right-btn:hover{
   scale: 1.2;
    opacity: 0.7;
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.pagination-bullet {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: #6f7280;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

 .bullet-active {
    border-radius: 30%;
    height: 5px;
    width: 17px;
    background: var(--text-muted);
    opacity: 1;
    transform: scale(1.15);
}

 .pagination-bullet:hover {
    opacity: 0.8;
}
