JSFiddle - React, Tailwind, and code Playground

HTML

<div class="bl__from">
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2020/06/10/09/25/anemone-5281964_960_720.jpg" />
  </div>
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2020/06/30/08/53/ladybug-5355655_960_720.jpg" />
  </div>
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2020/06/30/22/46/butterfly-5357836_960_720.jpg" />
  </div>
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2019/09/23/16/39/square-4499056_960_720.jpg" />
  </div>
</div>

CSS

.bl__from {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.from__img {
  width: 150px;
  height: 150px;
  margin: 0 10px 20px;
  border-radius: 50%;
  position: relative;
  box-shadow: inset 10px 10px 10px rgb(0 0 0 / 50%);
}

.from__img::before,
.from__img::after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  right: -5px;
  left: -5px;
  border: 3px solid;
  border-radius: 50%;
}

.from__img::before {
  border-color: orange transparent transparent transparent;
  transform: rotate(-30deg);
}

.from__img::after {
  border-color: #fff transparent transparent transparent;
  transform: rotate(15deg);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 50%;
}