.nutribox {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.nutricont {
    width: 80%;
    text-align: right;
}

.nutriicon {
    width: 15%;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 80px;
}

.nutriicon span {
    width: 80px;
    height: 80px;
    background: #f3bd04;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    overflow:hidden;
}

.nutricont h3 {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 26px;
    font-weight: 700;
    margin: 0;
}
.nutriicon:before {
    content: '';
    border-right: dashed 2px #f3bd04;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
}
.nutriicon span img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media(max-width: 768px){
    
    .nutricont{
      width:72%;
  }
}