.div-example {
  background-color: blue;
}
@media (max-width: 767px) {
  .div-example {
    background-color: red;
  }
}
/* end of breakpoints */
.circular-images-title {
  text-align: center;
  margin-bottom: 10px;
}
.circular-images-subtitle {
  text-align: center;
  margin-bottom: 40px;
}
.random-circular-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.random-circular-images .circle-image {
  width: 215px;
  height: 215px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  flex: 0 0 215px;
}
.random-circular-images .circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .random-circular-images {
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .random-circular-images .circle-image {
    flex: 1 1 calc(50% - 20px);
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .random-circular-images {
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .random-circular-images .circle-image {
    flex: 1 1 calc(50% - 40px);
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
  }
}
