
.box-shadow {
  position: relative;
  border-radius: 50%;
  background-color: #a06e42;
  width: 300px;
    height: 300px;
}
.box-shadow>span{
  position: relative;
  overflow: hidden;
  height: 100%;
  transform: translate3d(0px, 0px, 0);
}
.box-shadow>span img {
	position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  border: none;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
}