.columns-section-4.rotate-images-section .section-image-1 {
  animation: rotateClockwise 300s linear infinite;
}
.columns-section-4.rotate-images-section .section-image-2 {
  animation: rotateCounterClockwise 300s linear infinite;
}
.columns-section-4 .section-side-one {
  flex: 1;
}
.columns-section-4 .section-side-two {
  flex: 1;
  justify-content: center;
}
.columns-section-4 .image-container {
  position: relative;
  overflow: hidden;
}
.columns-section-4 .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columns-section-4 .image-container .section-image-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
}
.columns-section-4.text-left-section .section-side-one {
  order: 2;
}
.columns-section-4.text-left-section .section-side-two {
  order: 1;
}
.columns-section-4.text-left-section .image-container {
  position: relative;
  overflow: hidden;
}
.columns-section-4.text-left-section .image-container .section-image-2 {
  right: auto;
  left: 0;
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}