

.image-one .image-container {
  margin: 0 auto;
  display: flex;
}

.image-one .image-element {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-one .image-container img,
.image-one .image-container video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.image-one .image-container video {
  display: block;
}

/* Loader styles */
.image-one .loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
