.whatis {
  margin-top: 60px;
  margin-bottom: 60px;
}

.whatis .wrapper {
  display: flex;
  justify-content: space-around;
}

.whatis .img-container {
  /* max-width: 600px;
  ; */
  background-image: url('../img/stationery-2.jpg');
  width: 50%;
  height: 380px;
  min-width: 300px;
  min-height: 300px;
  background-size: contain;
  background-position-x: right;
  background-position-y: top;
  background-repeat: no-repeat;
  margin: 20px 50px auto  auto;
  /*
  margin: auto 20px auto  auto; */
}

.whatis .wrapper .text-wrap{
  min-width: 50%;
  display: flex;
}

.whatis .wrapper .text-wrap .text{
  max-width: 420px;
  margin-right: auto;
  padding-top: 50px;
}

.whatis .text__toggle {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.whatis .text__compact {
  height: 520px;
  overflow: hidden;
  position: relative;
  transition: all 0.15s ease-in-out;
}

.whatis .text__compact.view-all {
  height: auto;
}

.whatis .text__compact::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 255) 100%);
}

.whatis .text__compact.view-all::after {
  display: none;
}

.whatis .text__toggle:hover {
  text-decoration: none;
}

@media (max-width: 750px) {
  .whatis .img-container {
    display: none;
  }
  .whatis .wrapper .text-wrap .text {
    text-align: center;
  }
}
