/* SHOP */
.shop__card{
    background-color: #2B2B3A;
    border-radius: 14px;
    border: 3px solid #3c3c4f;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 15% 20%;
}

.shop__card img{
    width: 200px;
    max-width: 200px;
    margin-bottom: 25px;
}

.shop__card h3{
    font-weight: bold;
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.shop__card p{
    font-weight: 500;
    font-size: 16px;
    color: #8b8b92;
    margin-bottom: 60px;

}

.shop__card span{
    background-color: #53AC74;
    color: white;
    border-radius: 8px;
    margin-top: -20px;
    margin-bottom: 30px;
    padding: 8px 15px;
}

.shop__btn{
    padding: 23px 70px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    background-color: #161616;
    border: 2px solid #434343;
    color: white;
    transition: 0.2s;
}

.shop__btn:hover{
    background-color: #111010;
    transition: 0.2s;
}
