.theme-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  position: relative;
  position: relative;
  z-index: 5;
}

.theme-img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

figure {
  margin: 0;
}

/* Two Images */
.theme-img.two-images img {
  aspect-ratio: 1/1;
}

.theme-img.two-images {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding-right: 0;
}

.theme-img.two-images img:nth-of-type(2) {
  grid-area: 1/1/3/3;
}

.theme-img.two-images img:nth-of-type(1) {
  grid-area: 2/2/4/4;
  z-index: 1;
  border: solid 12px #fff;
}

/* Circle Images */
.theme-img.circle-combo:nth-last-child(1):after {
  content: "";
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 0;
  z-index: 0;
  background: none;
}

.theme-img.circle-combo:nth-last-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  width: 350px;
  border-radius: 50%;
  margin: 0 auto;
}

.theme-img.circle-combo:nth-last-child(2) {
  position: absolute;
  bottom: -15px;
  left: calc(50% - 195px);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 144px;
  width: 144px;
  background-color: #e0e0e0;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.theme-img.circle-combo img {
  border: solid #F4F2F0 12px;
  border-radius: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.theme-img.circle-combo:nth-last-child(2) img {
  border: solid #F4F2F0 6px;
}

/* WIDE DESKTOP */
@media (min-width: 992px) {
  .theme-img.circle-combo:nth-last-child(1) {
    height: 450px;
    width: 450px;
  }
  .theme-img.circle-combo:nth-last-child(2) {
    bottom: -15px;
    left: -50px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
  }
}
@media (min-width: 1100px) {
  .theme-img.circle-combo:nth-last-child(1) {
    height: 520px;
    width: 520px;
  }
  .theme-img.circle-combo:nth-last-child(2) {
    bottom: -15px;
    left: -50px;
    height: 210px;
    width: 210px;
    border-radius: 50%;
  }
}
/* WIDE DESKTOP */
/* Animation */
.theme-img.circle-combo:nth-last-child(1):after {
  animation: hoverUpDown 4s ease-in-out infinite;
}

@keyframes hoverUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.theme-img.circle-combo:nth-last-child(2) {
  animation: hoverUpDown-small 5s ease-in-out infinite;
}

@keyframes hoverUpDown-small {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}/*# sourceMappingURL=theme-images.min.css.map */