@media screen and (min-width: 768px) {
  section.block.block-image-et-image {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  section.block.block-image-et-image .card .container {
    flex-direction: column;
    width: 100%;
  }
}
section.block.block-image-et-image .container {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  section.block.block-image-et-image .container {
    flex-direction: column;
  }
}
section.block.block-image-et-image .container .image-container {
  width: var(--col-6);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section.block.block-image-et-image .container .image-container {
    flex-direction: column;
    width: 100%;
  }
}
section.block.block-image-et-image .container .image-container .image {
  width: 80%;
  height: 80%;
  object-fit: scale-down;
  object-position: center;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  section.block.block-image-et-image .container .image-container .image.image-mobile-title {
    display: none;
  }
}
section.block.block-image-et-image .container .image-container .image .simpleParallax, section.block.block-image-et-image .container .image-container .image img, section.block.block-image-et-image .container .image-container .image picture {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}