.hero-section-7.rotate-images-section .section-image {
  animation: rotateClockwise 300s linear infinite;
}
.hero-section-7 .section-side-one {
  position: relative;
  max-width: 955px;
  z-index: 2;
}
.hero-section-7 .section-side-two {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: 1;
  justify-content: center;
  align-items: flex-end;
}
.hero-section-7 .headline-two {
  text-align: right;
}
.hero-section-7 .button-row {
  margin-top: 30px;
  text-align: center;
}
.hero-section-7 .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero-section-7 .image-container .section-image {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right;
}
@media screen and (max-width: 885px) {
  .hero-section-7 .headline-two {
    text-align: left;
  }
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}