.image-block a {
  display: inline-block;
}

.image-block p {
  margin: 0;
}

.image-block img {
  display: block;
  width: 100%;
}

@media(width >= 1024px) {
  .section.centered-content .image-block.image-small img {
    display: block;
    max-width: 25%;
  }

  .section.seeds-page-section .image-block.image-small img {
    display: block;
    max-width: 100% !important;
  }

  .section.centered-content .image-block.image-medium img {
    display: block;
    max-width: 50%;
  }
  
  .section.centered-content .image-block.image-large img {
    display: block;
    max-width: 100%;
  }
}

.section.seeds-page-section:has(> .image-block-wrapper:first-child:nth-last-child(2)) {
  position: relative ;
  max-width: 250px;
  height: 100px;
  margin: 0 auto;
}

.theme-raisin-bran .section.seeds-page-section:has(> .image-block-wrapper:first-child:nth-last-child(2)) {
  position: relative ;
  max-width: 428px;
  height: 229px;
  margin: 0 auto;
}

 .section.seeds-page-section:has(> .image-block-wrapper:first-child:nth-last-child(2)) .image-block-wrapper picture {
  position: absolute;
  width:100%;
  height:100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  object-fit: cover;
  z-index: 3;
}

 .theme-frosted-flakes .section.seeds-page-section:has(> .image-block-wrapper:first-child:nth-last-child(2)) .image-block-wrapper picture {
  top: -51%;
 }

 .theme-raisin-bran .section.seeds-page-section:has(> .image-block-wrapper:first-child:nth-last-child(2)) .image-block-wrapper picture {
  top: 35%;
 }

.theme-frosted-flakes .section.seeds-page-section .image-block-wrapper:first-child {
  animation: show-full 4s infinite;
}

.theme-frosted-flakes .section.seeds-page-section .image-block-wrapper:nth-child(2) {
  opacity: 0;
  animation: show-peek 4s infinite;
  
}

.theme-raisin-bran .section.seeds-page-section .image-block-wrapper:nth-child(2) picture {
  display: block;
  position: absolute;
  max-width: 375px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.theme-raisin-bran .section.seeds-page-section .image-block-wrapper:nth-child(1) picture{
  display: none;
}

@media (width > 768px) {
.theme-raisin-bran .section.seeds-page-section:has(> .image-block-wrapper:first-child:nth-last-child(2)) .image-block-wrapper picture {
  top: 20%;
 }

.theme-raisin-bran .section.seeds-page-section .image-block-wrapper:nth-child(2) picture {
  display: none;
}

.theme-raisin-bran .section.seeds-page-section .image-block-wrapper:nth-child(1) picture {
  display: block;
}
}
  

@keyframes show-full {
  0%, 45% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}

@keyframes show-peek {
  0%, 45% {
    opacity: 0;
  }

  50%, 100% {
    opacity: 1;
  }
}
