.g6-image-component {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 2560px;
  max-height: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1220px) {
  .g6-image-component {
    align-items: flex-start;
    overflow: hidden;
  }
}
.g6-image-component .image-container {
  height: auto;
  min-height: unset;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1220px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  justify-content: center;
}
@media (max-width: 1220px) {
  .g6-image-component .image-container {
    width: calc(100vw - 40px);
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .g6-image-component .image-container {
    border-radius: 12px;
  }
}
.g6-image-component .image-container img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  z-index: 0;
}
.g6-image-component .image-container img.aspect-4-3 {
  aspect-ratio: 1.33333333;
  object-fit: cover;
}
.g6-image-component .image-container img.aspect-16-9 {
  aspect-ratio: 1.77777778;
  object-fit: contain;
}
@media (max-width: 1220px) {
  .g6-image-component .image-container img.desktopImg {
    display: none;
  }
}
.g6-image-component .image-container img.padAndMobileImg {
  display: none;
}
@media (max-width: 1220px) {
  .g6-image-component .image-container img.padAndMobileImg {
    display: block;
  }
}
.g6-image-component.full-screen .image-container {
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
}
.g6-image-component.enable-zoom-in-motion {
  max-height: unset;
}
.g6-image-component.enable-zoom-in-motion .image-container {
  height: calc(100vw * 0.5625) !important;
  max-height: max-content;
  min-height: min-content;
  align-items: flex-start;
}
@media (max-width: 1220px) {
  .g6-image-component.enable-zoom-in-motion .image-container {
    height: calc(((100vw - 40px) * 0.5625) * 1.5) !important;
  }
}
