/* SHOP */
.header__button{
    background-color: #151521;
    color: #8B8B92;
    padding: 25px 55px;
    margin-top: 40px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: .1s;
    cursor: pointer;
}

.header__button:hover{
    opacity: 0.9;
    transition: .1s;
}

.last__buyers{
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
}

.last__buyers__title{
    color: #2f2f3d;
    margin-bottom: 60px;
    font-weight: 600;
}

hr{
    border-top: 0.8px solid;
    border-color: #222231;
}

.heads__section{
    margin-top: -30px;
    display: inline-flex;
}

.last__head{
    margin: 0 18px;
}

.last__head img{
    border-radius: 12px;
    opacity: 1;
    transition: .3s;
}

.last__head img:hover{
    opacity: 0.7;
    transition: .3s;
}

.card__price{
    color: #8B8B92;
    font-weight: 500;
    margin-bottom: 10px;
}

.card__price span{
    color: white;
}

.card--shop{
    padding: 80px;
}

/* TARGET */
.target{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 0 40px;
}

.target h4{
    color: #8b8b92;
    margin-bottom: 15px;
    font-weight: 500;
}

.target__background{
    background-color: #151521;
    height: 18px;
    width: 50%;
    border-radius: 12px;
}

.target__line{
    background-color: #8383D2;
    height: 18px;
    border-radius: 12px;
    font-size: 10px;
    color: #151521;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 900px) {
    hr{
        border-top: none;
        border-color: transparent;
    }

    .last__buyers__title{
        text-align: left;
    }

    .heads__section{
        margin-top: -20px;
        width: 100%;
        display: inline-flex;
        flex-wrap: wrap;
    }

    .last__head{
        margin: 10px 22px 10px 0;
    }

    .last__head img{
        width: 50px;
    }

    /* TARGET */
    .target{
        justify-content: flex-start;
        align-items: flex-start;
    }

    .target__background{
        width: 100%;
    }

}