.b-videoreview__head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px;
    flex-wrap: wrap;
}

.b-videoreview__head img {
    border-radius: 50%;
    margin: 10px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 10%);
    padding: 5px;
}
.b-videoreview__head-text {
    margin: 10px 30px;
}

.b-videoreview__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px; 
}


@media only screen and (max-width: 500px) {
    .b-videoreview__head {
       text-align: center;
   }
}

.b-videoreview__item svg {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 38%;
    left: 41%;
    fill: rgba(255, 0, 0, 0.8);
}
.b-videoreview__item svg:hover {
fill: rgba(255, 0, 0, 1);
transform: scale(1.1);
}

.b-videoreview__item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    width: 300px;
    margin: 12px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 10%);
}

.b-videoreview__item:hover {
    box-shadow: 0 6px 10px rgb(0 0 0 / 30%);
}

