.tags {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  border: 2px solid #014fb5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.tags div {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  object-fit: cover;
}

.tags div img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

/* Animation de rotation infinie */
@keyframes rotate {
  0% {
    transform: scale(0%);
  }
  50%{
    transform: scale(80%);
  }
  100% {
    transform: scale(100%);
  }
}

.animated-icon {
  animation: rotate 2s ease-in-out infinite; /* Animation de 360 degrés, durée de 5 secondes et boucle infinie */
}

.ns-about-left {
  height: 100%;
}

@media (max-width: 991px) {
  .ns-about-left {
    height: 500px;
  }
}
