div.image_grb {
  padding-bottom: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.image_grb {
    padding-bottom: 0;
  }
}
div.image_grb[data-side=right] img {
  left: 0;
}
div.image_grb[data-side=left] img {
  right: 0;
}
div.image_grb img {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  max-width: unset !important;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  div.image_grb img {
    position: relative;
    aspect-ratio: 16/9;
    width: 100% !important;
  }
}

@keyframes infinite-loop {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-2px);
  }
}
