/* Image selector CSS start */
.rounded-circle-img {
  height: auto;
  width: 100%;
  border-radius: 50%;
}

.rounded-circle-image-big {
  height: auto;
  width: 90%;
  border-radius: 50%;
}

.image-container img {
  transition: transform 0.3s, z-index 0.3s;
  filter: brightness(0.8);
}

.image-container:hover {
  transform: scale(1.2);
}
.image-container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1366px) {
  .rounded-circle-image-big {
    height: 11rem !important;
    width: 11rem !important;
    border-radius: 50%;
  }
  .rounded-circle-img {
    height: 5rem !important;
    width: 5rem !important;
  }
  .text-black {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (min-width: 0px) {
  .rounded-circle-img {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
  }
}

.circle-wrapper {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-circle-wrapper {
  height: 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Image selector css ends */
