.artist-cards {
    margin-top: 28vh;
    margin-bottom: 28vh;
}
.artist-cont {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
  }
.artist-border {
    height: 469px;
    width: 390px;
    background: transparent;
    border-radius: 10px;
    transition: border 1s;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
    margin: 0;
    padding: 0;
    justify-content: space-evenly;
}

.artist-card {
    height: 479px;
    width: 400px;
    background: grey;
    border-radius: 10px;
    transition: background 0.8s;
    overflow: hidden;
    background: black;
    display: block;
    position: relative;
}
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background: rgb(158, 118, 118); */
    transition: background 4s;
}
.artist-card:hover {
    background-position: left center !important;
    background-size: 600px !important;
}

.artist-card:hover h2,
.artist-card:hover .fa-brands {
  opacity: 1;
}

.artist-name {
    font-family: inherit;
    font-weight: 900;
    color: white;
    margin: 20px;
    opacity: 0;
    transition: opacity 1s;
}
.artist-name a{
    font-weight: 600;
}
.artist-name a{
    font-size: 16px;
}

.fa-brands {
    opacity: 0;
    transition: opacity 1s;
}

.artist-socials {
    position: absolute;
    fill: #fff;
    color: #fff;
    height: 130px;
    top: 315px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    /* transition: background 0.8s; */
}

.card-wrapper {
    margin: 0 32px 18px;
    padding: 20px 10px;
    overflow: hidden;
}

.artist-container {
    max-width: 1400px;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #e2a305;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-button {
    color: #e2a305;
}

@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }
}

.artist-social-icon-link {
    text-decoration: none;
    fill: #e2a305;
    color: #e2a305;
}

.artist-social-icon-link:hover {
    text-decoration: none;
    fill: #ffffff;
    color: #ffffff;
}

.view-artist {
    text-decoration: none;
    color: #e2a305
}
.view-artist:hover{
    text-decoration: none;
    color: white;
}