* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(#ECEFEE, #CED6FB); 
}
a {
    text-decoration: none;
}
.cards-wripper {
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}
.card-link {
   
   user-select: none;
    display: block;
      padding: 20px;
    background-color: #fff;
     border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);   
    border: 2px solid transparent;
    transition: border 0.3s, box-shadow 0.3s;
   
}
.card-link:active {
    cursor: grabbing;
}
.card-item p {
    text-transform: capitalize;  
    width: fit-content;
    padding: 4px 14px;
    border-radius: 50px;
    margin: 15px 0;
    font-size: 18px;
}
.card-item h2 {
    font-size: 22px;
    color: black;
    margin: 20px 0 20px;
}
.card-item img {
 width: 100%;
 object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}
.card-link:hover {
    border: 2px solid #5372f0;
}
.card-link:hover i {
    background-color: #5372f0;
    color: #fff;
    outline:none
}
.card-item i {
    font-size: 20px;
    color: #5372f0;
    transform: rotate(-38deg);
    transition: .3s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #5372f0;
    padding: 5px;
    margin-bottom: 15px;
}
.designer {
     background-color: #ee82ee61;
         color: #b22485;
}
.developer {
    background-color: #00bfff61;
    color: #0077be;
}
.editor {
    background-color: #ff7f5061;
    color: #c74d3b;
}
.gamer {
    background-color: #32cd3261;
    color: #228b22;
}
.marketer {
    background-color: #ffa50061;
    color: #ff8c00;
}
.swiper-pagination-bullet {
    background: #5372f0;
    width: 12px;
    height: 12px;
    opacity: .5;
}
.swiper-pagination-bullet-active {
    background: #5372f0;
    opacity: 1;
}

/* responsive */
@media (max-width: 768px) {
  .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}