.block-shares-flex{
    margin-top: 16px;
    display: flex;
    gap: 16px;

}

.block-shares-box{
    background: rgba(0, 0, 0, 0.2);
    width: calc(33.3333% - 8px);
    border-radius: 40px;
    min-height: 146px;
    display: flex;
    justify-content: space-between;
    padding: 24px 42px 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.block-shares-box h3{
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
}
.block-shares-box .arrow-top-right{
    position: absolute;
    bottom: 24px;
    right: 32px;
    transition: .3s;
}
.block-shares-box .arrow-top-right i {
  transition: .3s;
}
.block-shares-box .arrow-move-right{
    content: url("arrow-move-right.svg");
    transform: rotate(45deg);
}
.block-shares-box:hover .arrow-top-right{
  background: rgba(191, 144, 118, 1);
}
.block-shares-box:hover .arrow-top-right i {
  filter: brightness(0) saturate(100%) invert(1);
}

@media (max-width: 1199px){
    .block-shares-flex {
        margin-top: 2px;
    }
    .block-shares-box {
        min-height: 164px;
        padding: 20px 30px 20px 24px;
    }
}

@media (max-width: 1020px){
   .block-shares-flex{
       display: none;
   }
}