.main-content img {
	width: 45%;
}

.image-block2 img{
	height: 25%;
	width: auto;
}

.image-block2 {
	text-align: center;
}

.lights {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 40px;
}
.lights li {
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}
.lights li::before {
  content: close-quote;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  transform: rotate(-10deg);
  background: red;
  border-radius: 50%;
  text-align: center;
  list-style: none;
  box-shadow: 1px 1px 0 #999;
}

.lights li:nth-child(3)::before {
	background: green;
}

.lights li:nth-child(2)::before {
	background: yellow;
}