.section {
  display: flex;
  width: 100%;
  background-color: rgb(2, 2, 2);
  /* padding-bottom: 40px; */
  overflow: hidden;
  max-width: 100vw;

  justify-content: center;
  align-items: center;
}

.section {
  overflow-x: hidden;
  overflow-y: visible;
}

.text-wrapper {
  flex: 0 0 70%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
      flex: 1;
    min-width: 0;
}

.image-container {
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /*margin-bottom: 40px;*/
  background-color: rgb(2, 2, 2);
}

.image-container img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.15) translate(-10px, -10px);
}

.text-wrapper,
.image-container {
  min-width: 0;
}

/* Foto weg bij mobile */
@media (max-width: 1001px) {
  .image-container{
    display: none;
  }
}
